WooCommerce Stripe Payment Gateway - Version 4.1.1

Version Description

  • 2018-04-17 =
  • Tweak - Use payment_complete method when charge is succeeded or captured so other WC related tasks gets triggered.
  • Tweak - Styling for the credit card logos.
  • Add - Subscription change payment method support for SEPA.
  • Add - Credit card branding detection on credit card field.
  • Fix - When checkout form fields fails second time, page refreshes instead of using AJAX.
  • Fix - Potential issue when WC is not activated.

See changelog for all versions.

=

Download this release

Release Info

Developer royho
Plugin Icon 128x128 WooCommerce Stripe Payment Gateway
Version 4.1.1
Comparing to
See all releases

Code changes from version 4.1.0 to 4.1.1

Files changed (42) hide show
  1. assets/css/stripe-styles.css +50 -8
  2. assets/images/alipay.svg +1 -1
  3. assets/images/amex.svg +14 -0
  4. assets/images/bancontact.svg +1 -1
  5. assets/images/bitcoin.svg +1 -1
  6. assets/images/credit-card.svg +1 -0
  7. assets/images/diners.svg +15 -0
  8. assets/images/discover.svg +14 -0
  9. assets/images/eps.svg +1 -1
  10. assets/images/giropay.svg +1 -1
  11. assets/images/ideal.svg +1 -1
  12. assets/images/jcb.svg +29 -0
  13. assets/images/maestro.svg +29 -0
  14. assets/images/mastercard.svg +31 -0
  15. assets/images/multibanco.svg +1 -1
  16. assets/images/p24.svg +1 -1
  17. assets/images/sepa.svg +1 -1
  18. assets/images/sofort.svg +1 -1
  19. assets/images/visa.svg +17 -0
  20. assets/images/wechat.svg +1 -1
  21. assets/js/stripe.js +44 -8
  22. assets/js/stripe.min.js +1 -1
  23. changelog.txt +8 -0
  24. includes/abstracts/abstract-wc-stripe-payment-gateway.php +6 -6
  25. includes/admin/class-wc-stripe-admin-notices.php +81 -39
  26. includes/class-wc-gateway-stripe.php +13 -9
  27. includes/class-wc-stripe-logger.php +4 -0
  28. includes/class-wc-stripe-webhook-handler.php +16 -12
  29. includes/compat/class-wc-stripe-sepa-subs-compat.php +28 -0
  30. includes/payment-methods/class-wc-gateway-stripe-alipay.php +5 -4
  31. includes/payment-methods/class-wc-gateway-stripe-bancontact.php +5 -4
  32. includes/payment-methods/class-wc-gateway-stripe-bitcoin.php +5 -4
  33. includes/payment-methods/class-wc-gateway-stripe-eps.php +5 -4
  34. includes/payment-methods/class-wc-gateway-stripe-giropay.php +5 -4
  35. includes/payment-methods/class-wc-gateway-stripe-ideal.php +5 -4
  36. includes/payment-methods/class-wc-gateway-stripe-multibanco.php +5 -4
  37. includes/payment-methods/class-wc-gateway-stripe-p24.php +5 -4
  38. includes/payment-methods/class-wc-gateway-stripe-sepa.php +6 -9
  39. includes/payment-methods/class-wc-gateway-stripe-sofort.php +5 -4
  40. languages/woocommerce-gateway-stripe.pot +116 -114
  41. readme.txt +8 -46
  42. woocommerce-gateway-stripe.php +12 -36
assets/css/stripe-styles.css CHANGED
@@ -8,11 +8,53 @@ form#order_review #payment_method_stripe_sepa { margin: 25px 0 25px 25px; }
8
  form#order_review .payment_methods label { margin-left: 10px; }
9
  form#order_review li { clear: right; }
10
  form#order_review #wc-stripe_sepa-form { padding: 10px; }
11
- #payment .payment_methods li img.stripe-icon { float: right; max-width: 52px; padding-left: 3px; }
12
- #payment .payment_methods li img.stripe-bancontact-icon { max-height: 65px; }
13
- #payment .payment_methods li img.stripe-ideal-icon { max-height: 35px; }
14
- #payment .payment_methods li img.stripe-p24-icon { max-width: 65px; }
15
- #payment .payment_methods li img.stripe-sofort-icon { max-width: 65px; }
16
- #payment .payment_methods li img.stripe-multibanco-icon { max-height: 30px; }
17
- #payment .payment_methods li img.stripe-eps-icon { max-height: 30px; }
18
- #payment .payment_methods li img.stripe-bitcoin-icon { max-width: 65px; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  form#order_review .payment_methods label { margin-left: 10px; }
9
  form#order_review li { clear: right; }
10
  form#order_review #wc-stripe_sepa-form { padding: 10px; }
11
+ .woocommerce-checkout #payment ul.payment_methods li img.stripe-icon,
12
+ #add_payment_method #payment ul.payment_methods li img.stripe-icon { float: right; max-width: 40px; padding-left: 3px; margin: 0; }
13
+
14
+ .woocommerce-checkout #payment ul.payment_methods li img.stripe-bancontact-icon,
15
+ #add_payment_method #payment ul.payment_methods li img.stripe-bancontact-icon { max-height: 65px; }
16
+
17
+ .woocommerce-checkout #payment ul.payment_methods li img.stripe-ideal-icon,
18
+ #add_payment_method #payment ul.payment_methods li img.stripe-ideal-icon { max-height: 35px; }
19
+
20
+ .woocommerce-checkout #payment ul.payment_methods li img.stripe-p24-icon,
21
+ #add_payment_method #payment ul.payment_methods li img.stripe-p24-icon { max-width: 65px; }
22
+
23
+ .woocommerce-checkout #payment ul.payment_methods li img.stripe-sofort-icon,
24
+ #add_payment_method #payment ul.payment_methods li img.stripe-sofort-icon { max-width: 65px; }
25
+
26
+ .woocommerce-checkout #payment ul.payment_methods li img.stripe-multibanco-icon,
27
+ #add_payment_method #payment ul.payment_methods li img.stripe-multibanco-icon { max-height: 30px; }
28
+
29
+ .woocommerce-checkout #payment ul.payment_methods li img.stripe-eps-icon,
30
+ #add_payment_method #payment ul.payment_methods li img.stripe-eps-icon { max-height: 30px; }
31
+
32
+ .woocommerce-checkout #payment ul.payment_methods li img.stripe-bitcoin-icon,
33
+ #add_payment_method #payment ul.payment_methods li img.stripe-bitcoin-icon { max-width: 65px; }
34
+
35
+ .woocommerce-checkout #payment ul.payment_methods li .stripe-credit-card-brand,
36
+ #add_payment_method #payment ul.payment_methods li .stripe-credit-card-brand { position: absolute; top: 10px; right: 10px; background: no-repeat url( '../images/credit-card.svg' ); display: block; width: 30px; height: 24px; }
37
+
38
+ .woocommerce-checkout #payment ul.payment_methods li .stripe-visa-brand,
39
+ #add_payment_method #payment ul.payment_methods li .stripe-visa-brand { position: absolute; top: 10px; right: 10px; background: no-repeat url( '../images/visa.svg' ); display: block; width: 30px; height: 24px; }
40
+
41
+ .woocommerce-checkout #payment ul.payment_methods li .stripe-amex-brand,
42
+ #add_payment_method #payment ul.payment_methods li .stripe-amex-brand { position: absolute; top: 10px; right: 10px; background: no-repeat url( '../images/amex.svg' ); display: block; width: 30px; height: 24px; }
43
+
44
+ .woocommerce-checkout #payment ul.payment_methods li .stripe-diners-brand,
45
+ #add_payment_method #payment ul.payment_methods li .stripe-diners-brand { position: absolute; top: 10px; right: 10px; background: no-repeat url( '../images/diners.svg' ); display: block; width: 30px; height: 24px; }
46
+
47
+ .woocommerce-checkout #payment ul.payment_methods li .stripe-discover-brand,
48
+ #add_payment_method #payment ul.payment_methods li .stripe-discover-brand { position: absolute; top: 10px; right: 10px; background: no-repeat url( '../images/discover.svg' ); display: block; width: 30px; height: 24px; }
49
+
50
+ .woocommerce-checkout #payment ul.payment_methods li .stripe-jcb-brand,
51
+ #add_payment_method #payment ul.payment_methods li .stripe-jcb-brand { position: absolute; top: 10px; right: 10px; background: no-repeat url( '../images/jcb.svg' ); display: block; width: 30px; height: 24px; }
52
+
53
+ .woocommerce-checkout #payment ul.payment_methods li .stripe-maestro-brand,
54
+ #add_payment_method #payment ul.payment_methods li .stripe-maestro-brand { position: absolute; top: 10px; right: 10px; background: no-repeat url( '../images/maestro.svg' ); display: block; width: 30px; height: 24px; }
55
+
56
+ .woocommerce-checkout #payment ul.payment_methods li .stripe-mastercard-brand,
57
+ #add_payment_method #payment ul.payment_methods li .stripe-mastercard-brand { position: absolute; top: 10px; right: 10px; background: no-repeat url( '../images/mastercard.svg' ); display: block; width: 30px; height: 24px; }
58
+
59
+ .woocommerce-checkout #payment ul.payment_methods .stripe-card-group,
60
+ #add_payment_method #payment ul.payment_methods .stripe-card-group { position: relative; }
assets/images/alipay.svg CHANGED
@@ -1 +1 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 374.01"><defs><style>.cls-1{fill:#ec6c00;}.cls-2{fill:#003f96;}</style></defs><title>alipay</title><path class="cls-1" d="M325.82,287.4l-7.34,1.4-7.33,2.79-5.59,4.2a10.21,10.21,0,0,0-2.09,5.58l1.74,4.54c1.4,2.1,4.54,2.1,4.54,2.1l5.94-1.75,2.1-3.84-1.4-7.68,3.84-2.1,5.59-.7,6.63,1.75,3.49,3.84,1.4,3.84.7,3.15v5.58l-12.22,4.19-11.88,3.85-5.23,2.44-4.19,3.14a16.37,16.37,0,0,0-3.15,4.54l-1.05,6.29c0,6.28,4.89,10.48,4.89,10.48,4.54,4.19,11.88,4.19,11.88,4.19l8.73-1.4,2.79-1.05,9.43-6.29a9.73,9.73,0,0,0,4.19,5.94c2.79,2.45,8,2.45,8,2.45l5.24-.7,5.24-1.75v-3.49h-4.19l-3.15-1.05-2.79-2.09L349.56,336l.7-29.34-1.74-9.43-5.24-5.93-7.34-3.15-10.12-.7ZM338,315l-.35,20.61-5.94,4.88-5.93,2.1h-2.45a10.25,10.25,0,0,1-7-2.45c-2.79-2.44-2.79-7.33-2.79-7.33a13.21,13.21,0,0,1,1.74-6.29l5.24-4.88,7.68-3.5L338,315Zm23-25.84h29.33v4.19l-4.54.7s-2.79.7-2.79,1.74l.35,1.05,16.06,34.92,15.37-34.22-2.8-2.79L406.14,293v-3.84h23.74V293L425,294.74a13.64,13.64,0,0,0-4.88,5.24l-13.62,29.68-16.77,32.83-6.28,7.33-5.24,3.49L373,374s-4.54,0-7.68-2.44a6.27,6.27,0,0,1-2.79-4.89l1.39-4.54a7.72,7.72,0,0,1,4.89-2.1l3.49.7,2.45,1.75,3.84,4.89,8-8s6.64-10.13,4.19-18.16l-19.21-41.9L367,295.09l-5.93-2.1v-3.84m-99.88-1.4-8.38,2.1-8.38,5.93h-.7v-6.63l-1.05-.7-21.65,1.4v3.84l4.19.7,3.15,1.05,2.44,2.44,1,3.49v62.16l-.7,3.49-2.79,2.1-3.49.7h-3.85V374h36v-4.19l-9.43-1.4-2.44-2.09-1.4-3.5V345.37h.7l6.29,2.45,9.43,1.39h1l10.48-2.09,9.43-6.64,7-9.42,2.45-12.93-2.1-12.22a32.94,32.94,0,0,0-6.28-9.78,27.47,27.47,0,0,0-8.38-6.28L263,287.75Zm-.35,8.72h.35c8.38.7,13.27,7.34,13.27,7.34,4.19,5.58,3.84,14,3.84,14a25.61,25.61,0,0,1-4.53,14.31c-4.55,6.64-12.58,7.69-12.58,7.69-7.68.69-17.46-4.54-17.46-4.54V300.67a42.55,42.55,0,0,1,17.11-4.2ZM95,262.26,64.61,332.8l-2.8,4.89-4.19,3.49-4.19,1.75-4.19.35v4.19H84.16v-4.19l-9.08-1.4c-4.54-1.4-4.54-3.84-4.54-3.84l.35-2.44,6.29-17.47h32.47l7.69,19.21.35,1.4v1.4c0,1.39-3.15,1.74-3.15,1.74l-8.38,1.4v4.19h38.42v-4.19l-3.85-.35-4.19-1.4-3.14-3.14A6.74,6.74,0,0,1,131,334.9l-30.73-72.64Zm-1.75,18.51h.35l13.62,32.48H79.62Zm101.27,0a8,8,0,0,1-5.58-2.45,7.81,7.81,0,0,1-2.45-5.58,9.26,9.26,0,0,1,2.45-5.59,8.9,8.9,0,0,1,5.58-2.44,9.9,9.9,0,0,1,6.29,2.44l2.09,5.24-2.09,5.93a9.53,9.53,0,0,1-6.29,2.45M206,289.5V337l1,3.49,2.8,1.75,5.94,1.4v3.84H184.74v-3.84l5.58-.7,2.8-1.75,1-3.49v-36l-1-3.84-2.8-2.44-3.49-1.05-4.19-.7v-3.84l22.7-1.4.7,1.05m-40.16-33.87L143.18,257l-1.4.35v3.49h1.4l3.49.7,4.19,1.4,2.8,2.79,1,4.19v67.75l-1,3.49-2.8,1.75-5.93.7v3.84h31.42v-3.84l-3.14-.35-2.79-1-2.8-1.74-.69-3.5V256.67l-1.05-1m424.29,34.22,21.65-1.4,1,1.05v8h.35l3.84-3.49,4.54-3.14a22.8,22.8,0,0,1,5.59-2.45l7.33-.7,10.83,2.8,6.64,7.33,3.84-3.49,4.89-3.15a23.68,23.68,0,0,1,5.58-2.79l7.69-.7s8.38,0,12.92,4.89c0,0,4.89,4.89,4.89,14.67V337l.69,3.49,2.45,2.1,3.14.7,3.49.35v3.84H670.14v-3.84l5.59-.7,2.79-1.75.7-3.49v-30s0-6.29-2.79-9.78a11.86,11.86,0,0,0-7.68-3.14l-6.29.7-5.24,2.44-3.14,2.79-1.75,2.8V337l.7,3.49,2.8,2.1,2.79.7,3.14.35v3.84H631v-3.84l5.24-.7,2.79-1.75.7-3.49v-30s0-6.29-2.79-9.78a10.83,10.83,0,0,0-7.68-3.14l-5.94.7-5.24,2.44L615,301l-2.1,2.45V337l.7,3.49,2.79,1.75,2.8,1,3.14.35v3.84H591.22v-3.84l5.94-.7,2.79-1.75.7-3.49V301.37l-1-3.49-2.44-2.44L594,294.39l-3.85-.7v-3.84M464.46,320.58s0,11.87,5.93,18.86c0,0,5.59,7.33,15,7.33l11.52-3.14,8.73-8.73,4.19,2.79A37.3,37.3,0,0,1,498,349.21a36.08,36.08,0,0,1-16.06,4.2s-14.67,0-23.4-8.73a35.36,35.36,0,0,1-8.73-23.75,35,35,0,0,1,2.44-11.87,35.81,35.81,0,0,1,6.64-10.48,38.47,38.47,0,0,1,10.47-7A40.08,40.08,0,0,1,483,288.8s10.13,0,16.77,4.19c0,0,6.28,4.89,6.28,11.88l-1.74,5.58-5.24,2.1-6.64-1.75S490,309.4,490,307l1.05-5.59,1.05-4.54-3.85-2.44-5.58-.7-6.29,1.05-5.94,4.89L466.2,308a43.84,43.84,0,0,0-1.74,12.57m84.85-31.78a39.82,39.82,0,0,0-24.44,9.08c-9.08,9.08-9.08,23.4-9.08,23.4a37.05,37.05,0,0,0,2.45,13.62l7.33,10.47a38.66,38.66,0,0,0,10.82,6.29L549,353.75h.35l14.31-2.44A34.13,34.13,0,0,0,574.46,344l7-10.48,2.1-12.92a33.44,33.44,0,0,0-9.43-23.05C564.68,288.8,550,288.8,550,288.8h-.71Zm-.21,4.89h.56l9.08,2.09,5.94,6.29,3.14,8.73,1,10.13c0,12.92-4.89,20.6-4.89,20.6a19,19,0,0,1-14.31,7.68h-.35l-8.73-2.44-5.94-6.29-3.49-9.08a61.31,61.31,0,0,1-1-11.17l.7-9.43,3.14-8.38a26.07,26.07,0,0,1,6.64-6.63,20.6,20.6,0,0,1,8.51-2.1ZM430.93,349.21a5.24,5.24,0,0,0,5.24-5.58s0-5.24-5.24-5.24c0,0-5.59,0-5.59,5.24,0,0,0,5.58,5.59,5.58"/><path d="M700.53,0V2.44h5.93V18.16h2.1V2.44h5.93V0Zm16.41,0V18.16h2.44v-15l5.24,15h2.1L731.6,3.49V18.16h2.45V0h-3.14l-5.24,15.37L720.43,0Z"/><path class="cls-2" d="M585.63,0l-9.08.7S567.12,2.79,567.12,7V21l-40.85,1.4V14.67H507.41s-18.86,1.39-18.86,7v51h78.57v34.92H513v14h54.12v80l40.16-4.19V121.53H664.9v-14H607.28V72.64H675v-7h1.75s5.24,0,8.38-8.38l3.14-23.05S688,17.46,670.14,17.46l-62.86,2.1V0Zm62.16,32.13a5.58,5.58,0,0,1,5.94,5.59L650.94,59H526.27V36l40.85-1v.35l40.16-1.75Z"/><path class="cls-1" d="M341.53,107.56l12.92,15,15,13.28s4.19,4.19,8.38,0l14.67-13.28,12.92-15s4.54-3.84,0-8.73L392.52,84.16,377.85,71.24s-4.19-4.19-8.38,0L354.8,84.16,341.53,98.83s-3.84,4.89,0,8.73m335.25,46.09a5.68,5.68,0,0,0,0-6.63l-10.13-11.18-11.17-9.77a4.72,4.72,0,0,0-6.64,0l-11.17,9.77L627.89,147s-2.8,3.49,0,6.63l9.78,11.18,11.17,9.78s3.49,3.49,6.64,0l11.17-9.78,10.13-11.18"/><path class="cls-2" d="M77.88,90.8H197.66a166.4,166.4,0,0,1-12.23,30.73s-15,29.33-38.06,51.33c0,0-43.3,40.51-71.24,40.51,0,0-20.6,0-33.87-7.68,0,0-16.42-10.13-16.42-31.08,0,0,0-27.59,42.26-35.62,0,0-27.24-1.75-41.56,12.57,0,0-13.27,12.57-13.27,34.57,0,0,0,21,19.21,33.53A78.57,78.57,0,0,0,74,230.83l5.59.35s47.5-2.44,91.5-39.11c0,0,37.71-31.43,56.57-76.48a187.78,187.78,0,0,0,9.08-27.94l2.09-10.82v.35h-64.6V46.45h81.37V32.83H174.26V1.05H153l-9.08.7S134.45,3.84,134.45,8v24.8H55.88V46.45h78.57V77.18H77.88V90.8M346.42,0l-.7,6.64-4.54,16.41A94.53,94.53,0,0,1,329,43v157.5l-40.16-4.89v-125s-15,7.68-27.94,12.57l-5.23-8.38A238.27,238.27,0,0,0,282.86,52s26.89-26.89,26.89-45c0,0,0-4.2,9.43-6.29l9.08-.7h18.16"/><path class="cls-2" d="M335.25,60.41h75.43V205.69l40.16.7v-146h21v-14h-21V0H429.19l-9.08.7S410.68,2.79,410.68,7V46.45H335.25v14"/><path class="cls-1" d="M152.61,144.92s-51-22.35-82.42-23.39c0,0-25.84-1.4-47.14,13.62,0,0-22.35,15.71-23,39.11,0,0,0,27.24,21.65,42.6,0,0,19.91,14.32,52,14.32h3.15l-5.24-.35s-23.4,0-39.81-11.52c0,0-18.16-12.92-18.16-34.23,0,0,0-23,16.06-34.92,0,0,13.62-9.77,35.62-10.12l31.08,3.49,24.1,9.43,57.62,29.33s39.46,20.6,77.18,33.18c0,0,131.3,43.65,425,15L696,227.34s5.58-2.45,10.12-9.78c0,0,3.85-5.94,30-29.33,0,0,18.85-17.12,12.57-22.7l-9.08,1.39s-96,21.66-242.36,27.59c0,0-164.48,6.64-245.84-16.76,0,0-56.23-16.06-98.83-32.83"/></svg>
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 374.01" preserveAspectRatio="xMidYMid meet"><defs><style>.cls-1{fill:#ec6c00;}.cls-2{fill:#003f96;}</style></defs><title>alipay</title><path class="cls-1" d="M325.82,287.4l-7.34,1.4-7.33,2.79-5.59,4.2a10.21,10.21,0,0,0-2.09,5.58l1.74,4.54c1.4,2.1,4.54,2.1,4.54,2.1l5.94-1.75,2.1-3.84-1.4-7.68,3.84-2.1,5.59-.7,6.63,1.75,3.49,3.84,1.4,3.84.7,3.15v5.58l-12.22,4.19-11.88,3.85-5.23,2.44-4.19,3.14a16.37,16.37,0,0,0-3.15,4.54l-1.05,6.29c0,6.28,4.89,10.48,4.89,10.48,4.54,4.19,11.88,4.19,11.88,4.19l8.73-1.4,2.79-1.05,9.43-6.29a9.73,9.73,0,0,0,4.19,5.94c2.79,2.45,8,2.45,8,2.45l5.24-.7,5.24-1.75v-3.49h-4.19l-3.15-1.05-2.79-2.09L349.56,336l.7-29.34-1.74-9.43-5.24-5.93-7.34-3.15-10.12-.7ZM338,315l-.35,20.61-5.94,4.88-5.93,2.1h-2.45a10.25,10.25,0,0,1-7-2.45c-2.79-2.44-2.79-7.33-2.79-7.33a13.21,13.21,0,0,1,1.74-6.29l5.24-4.88,7.68-3.5L338,315Zm23-25.84h29.33v4.19l-4.54.7s-2.79.7-2.79,1.74l.35,1.05,16.06,34.92,15.37-34.22-2.8-2.79L406.14,293v-3.84h23.74V293L425,294.74a13.64,13.64,0,0,0-4.88,5.24l-13.62,29.68-16.77,32.83-6.28,7.33-5.24,3.49L373,374s-4.54,0-7.68-2.44a6.27,6.27,0,0,1-2.79-4.89l1.39-4.54a7.72,7.72,0,0,1,4.89-2.1l3.49.7,2.45,1.75,3.84,4.89,8-8s6.64-10.13,4.19-18.16l-19.21-41.9L367,295.09l-5.93-2.1v-3.84m-99.88-1.4-8.38,2.1-8.38,5.93h-.7v-6.63l-1.05-.7-21.65,1.4v3.84l4.19.7,3.15,1.05,2.44,2.44,1,3.49v62.16l-.7,3.49-2.79,2.1-3.49.7h-3.85V374h36v-4.19l-9.43-1.4-2.44-2.09-1.4-3.5V345.37h.7l6.29,2.45,9.43,1.39h1l10.48-2.09,9.43-6.64,7-9.42,2.45-12.93-2.1-12.22a32.94,32.94,0,0,0-6.28-9.78,27.47,27.47,0,0,0-8.38-6.28L263,287.75Zm-.35,8.72h.35c8.38.7,13.27,7.34,13.27,7.34,4.19,5.58,3.84,14,3.84,14a25.61,25.61,0,0,1-4.53,14.31c-4.55,6.64-12.58,7.69-12.58,7.69-7.68.69-17.46-4.54-17.46-4.54V300.67a42.55,42.55,0,0,1,17.11-4.2ZM95,262.26,64.61,332.8l-2.8,4.89-4.19,3.49-4.19,1.75-4.19.35v4.19H84.16v-4.19l-9.08-1.4c-4.54-1.4-4.54-3.84-4.54-3.84l.35-2.44,6.29-17.47h32.47l7.69,19.21.35,1.4v1.4c0,1.39-3.15,1.74-3.15,1.74l-8.38,1.4v4.19h38.42v-4.19l-3.85-.35-4.19-1.4-3.14-3.14A6.74,6.74,0,0,1,131,334.9l-30.73-72.64Zm-1.75,18.51h.35l13.62,32.48H79.62Zm101.27,0a8,8,0,0,1-5.58-2.45,7.81,7.81,0,0,1-2.45-5.58,9.26,9.26,0,0,1,2.45-5.59,8.9,8.9,0,0,1,5.58-2.44,9.9,9.9,0,0,1,6.29,2.44l2.09,5.24-2.09,5.93a9.53,9.53,0,0,1-6.29,2.45M206,289.5V337l1,3.49,2.8,1.75,5.94,1.4v3.84H184.74v-3.84l5.58-.7,2.8-1.75,1-3.49v-36l-1-3.84-2.8-2.44-3.49-1.05-4.19-.7v-3.84l22.7-1.4.7,1.05m-40.16-33.87L143.18,257l-1.4.35v3.49h1.4l3.49.7,4.19,1.4,2.8,2.79,1,4.19v67.75l-1,3.49-2.8,1.75-5.93.7v3.84h31.42v-3.84l-3.14-.35-2.79-1-2.8-1.74-.69-3.5V256.67l-1.05-1m424.29,34.22,21.65-1.4,1,1.05v8h.35l3.84-3.49,4.54-3.14a22.8,22.8,0,0,1,5.59-2.45l7.33-.7,10.83,2.8,6.64,7.33,3.84-3.49,4.89-3.15a23.68,23.68,0,0,1,5.58-2.79l7.69-.7s8.38,0,12.92,4.89c0,0,4.89,4.89,4.89,14.67V337l.69,3.49,2.45,2.1,3.14.7,3.49.35v3.84H670.14v-3.84l5.59-.7,2.79-1.75.7-3.49v-30s0-6.29-2.79-9.78a11.86,11.86,0,0,0-7.68-3.14l-6.29.7-5.24,2.44-3.14,2.79-1.75,2.8V337l.7,3.49,2.8,2.1,2.79.7,3.14.35v3.84H631v-3.84l5.24-.7,2.79-1.75.7-3.49v-30s0-6.29-2.79-9.78a10.83,10.83,0,0,0-7.68-3.14l-5.94.7-5.24,2.44L615,301l-2.1,2.45V337l.7,3.49,2.79,1.75,2.8,1,3.14.35v3.84H591.22v-3.84l5.94-.7,2.79-1.75.7-3.49V301.37l-1-3.49-2.44-2.44L594,294.39l-3.85-.7v-3.84M464.46,320.58s0,11.87,5.93,18.86c0,0,5.59,7.33,15,7.33l11.52-3.14,8.73-8.73,4.19,2.79A37.3,37.3,0,0,1,498,349.21a36.08,36.08,0,0,1-16.06,4.2s-14.67,0-23.4-8.73a35.36,35.36,0,0,1-8.73-23.75,35,35,0,0,1,2.44-11.87,35.81,35.81,0,0,1,6.64-10.48,38.47,38.47,0,0,1,10.47-7A40.08,40.08,0,0,1,483,288.8s10.13,0,16.77,4.19c0,0,6.28,4.89,6.28,11.88l-1.74,5.58-5.24,2.1-6.64-1.75S490,309.4,490,307l1.05-5.59,1.05-4.54-3.85-2.44-5.58-.7-6.29,1.05-5.94,4.89L466.2,308a43.84,43.84,0,0,0-1.74,12.57m84.85-31.78a39.82,39.82,0,0,0-24.44,9.08c-9.08,9.08-9.08,23.4-9.08,23.4a37.05,37.05,0,0,0,2.45,13.62l7.33,10.47a38.66,38.66,0,0,0,10.82,6.29L549,353.75h.35l14.31-2.44A34.13,34.13,0,0,0,574.46,344l7-10.48,2.1-12.92a33.44,33.44,0,0,0-9.43-23.05C564.68,288.8,550,288.8,550,288.8h-.71Zm-.21,4.89h.56l9.08,2.09,5.94,6.29,3.14,8.73,1,10.13c0,12.92-4.89,20.6-4.89,20.6a19,19,0,0,1-14.31,7.68h-.35l-8.73-2.44-5.94-6.29-3.49-9.08a61.31,61.31,0,0,1-1-11.17l.7-9.43,3.14-8.38a26.07,26.07,0,0,1,6.64-6.63,20.6,20.6,0,0,1,8.51-2.1ZM430.93,349.21a5.24,5.24,0,0,0,5.24-5.58s0-5.24-5.24-5.24c0,0-5.59,0-5.59,5.24,0,0,0,5.58,5.59,5.58"/><path d="M700.53,0V2.44h5.93V18.16h2.1V2.44h5.93V0Zm16.41,0V18.16h2.44v-15l5.24,15h2.1L731.6,3.49V18.16h2.45V0h-3.14l-5.24,15.37L720.43,0Z"/><path class="cls-2" d="M585.63,0l-9.08.7S567.12,2.79,567.12,7V21l-40.85,1.4V14.67H507.41s-18.86,1.39-18.86,7v51h78.57v34.92H513v14h54.12v80l40.16-4.19V121.53H664.9v-14H607.28V72.64H675v-7h1.75s5.24,0,8.38-8.38l3.14-23.05S688,17.46,670.14,17.46l-62.86,2.1V0Zm62.16,32.13a5.58,5.58,0,0,1,5.94,5.59L650.94,59H526.27V36l40.85-1v.35l40.16-1.75Z"/><path class="cls-1" d="M341.53,107.56l12.92,15,15,13.28s4.19,4.19,8.38,0l14.67-13.28,12.92-15s4.54-3.84,0-8.73L392.52,84.16,377.85,71.24s-4.19-4.19-8.38,0L354.8,84.16,341.53,98.83s-3.84,4.89,0,8.73m335.25,46.09a5.68,5.68,0,0,0,0-6.63l-10.13-11.18-11.17-9.77a4.72,4.72,0,0,0-6.64,0l-11.17,9.77L627.89,147s-2.8,3.49,0,6.63l9.78,11.18,11.17,9.78s3.49,3.49,6.64,0l11.17-9.78,10.13-11.18"/><path class="cls-2" d="M77.88,90.8H197.66a166.4,166.4,0,0,1-12.23,30.73s-15,29.33-38.06,51.33c0,0-43.3,40.51-71.24,40.51,0,0-20.6,0-33.87-7.68,0,0-16.42-10.13-16.42-31.08,0,0,0-27.59,42.26-35.62,0,0-27.24-1.75-41.56,12.57,0,0-13.27,12.57-13.27,34.57,0,0,0,21,19.21,33.53A78.57,78.57,0,0,0,74,230.83l5.59.35s47.5-2.44,91.5-39.11c0,0,37.71-31.43,56.57-76.48a187.78,187.78,0,0,0,9.08-27.94l2.09-10.82v.35h-64.6V46.45h81.37V32.83H174.26V1.05H153l-9.08.7S134.45,3.84,134.45,8v24.8H55.88V46.45h78.57V77.18H77.88V90.8M346.42,0l-.7,6.64-4.54,16.41A94.53,94.53,0,0,1,329,43v157.5l-40.16-4.89v-125s-15,7.68-27.94,12.57l-5.23-8.38A238.27,238.27,0,0,0,282.86,52s26.89-26.89,26.89-45c0,0,0-4.2,9.43-6.29l9.08-.7h18.16"/><path class="cls-2" d="M335.25,60.41h75.43V205.69l40.16.7v-146h21v-14h-21V0H429.19l-9.08.7S410.68,2.79,410.68,7V46.45H335.25v14"/><path class="cls-1" d="M152.61,144.92s-51-22.35-82.42-23.39c0,0-25.84-1.4-47.14,13.62,0,0-22.35,15.71-23,39.11,0,0,0,27.24,21.65,42.6,0,0,19.91,14.32,52,14.32h3.15l-5.24-.35s-23.4,0-39.81-11.52c0,0-18.16-12.92-18.16-34.23,0,0,0-23,16.06-34.92,0,0,13.62-9.77,35.62-10.12l31.08,3.49,24.1,9.43,57.62,29.33s39.46,20.6,77.18,33.18c0,0,131.3,43.65,425,15L696,227.34s5.58-2.45,10.12-9.78c0,0,3.85-5.94,30-29.33,0,0,18.85-17.12,12.57-22.7l-9.08,1.39s-96,21.66-242.36,27.59c0,0-164.48,6.64-245.84-16.76,0,0-56.23-16.06-98.83-32.83"/></svg>
assets/images/amex.svg ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg viewBox="0 0 752 471" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" preserveAspectRatio="xMidYMid meet">
3
+ <!-- Generator: Sketch 3.3.1 (12005) - http://www.bohemiancoding.com/sketch -->
4
+ <title>Slice 1</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <defs></defs>
7
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
8
+ <g id="amex" sketch:type="MSLayerGroup">
9
+ <rect id="Rectangle-1" fill="#2557D6" sketch:type="MSShapeGroup" x="1" y="0" width="750" height="471" rx="40"></rect>
10
+ <path d="M1.002688,221.18508 L37.026849,221.18508 L45.149579,201.67506 L63.334596,201.67506 L71.436042,221.18508 L142.31637,221.18508 L142.31637,206.26909 L148.64322,221.24866 L185.43894,221.24866 L191.76579,206.04654 L191.76579,221.18508 L367.91701,221.18508 L367.83451,189.15941 L371.2427,189.15941 C373.62924,189.24161 374.3263,189.46144 374.3263,193.38516 L374.3263,221.18508 L465.43232,221.18508 L465.43232,213.72973 C472.78082,217.6508 484.21064,221.18508 499.25086,221.18508 L537.57908,221.18508 L545.78163,201.67506 L563.96664,201.67506 L571.98828,221.18508 L645.84844,221.18508 L645.84844,202.65269 L657.0335,221.18508 L716.22061,221.18508 L716.22061,98.67789 L657.64543,98.67789 L657.64543,113.14614 L649.44288,98.67789 L589.33787,98.67789 L589.33787,113.14614 L581.80579,98.67789 L500.61839,98.67789 C487.02818,98.67789 475.08221,100.5669 465.43232,105.83121 L465.43232,98.67789 L409.40596,98.67789 L409.40596,105.83121 C403.26536,100.40529 394.89786,98.67789 385.59383,98.67789 L180.90796,98.67789 L167.17407,130.3194 L153.07037,98.67789 L88.59937,98.67789 L88.59937,113.14614 L81.516924,98.67789 L26.533518,98.67789 L0.999997,156.92445 L0.999997,221.18508 L1.002597,221.18508 L1.002688,221.18508 Z M228.39922,203.51436 L206.78472,203.51436 L206.70492,134.72064 L176.13228,203.51436 L157.62,203.51436 L126.96754,134.6597 L126.96754,203.51436 L84.084427,203.51436 L75.982981,183.92222 L32.083524,183.92222 L23.8996,203.51436 L1.000047,203.51436 L38.756241,115.67692 L70.08183,115.67692 L105.94103,198.84086 L105.94103,115.67692 L140.35289,115.67692 L167.94569,175.26406 L193.29297,115.67692 L228.39657,115.67692 L228.39657,203.51436 L228.39957,203.51436 L228.39922,203.51436 Z M68.777214,165.69287 L54.346265,130.67606 L39.997794,165.69287 L68.777214,165.69287 L68.777214,165.69287 Z M314.41947,203.51436 L243.98611,203.51436 L243.98611,115.67692 L314.41947,115.67692 L314.41947,133.96821 L265.07116,133.96821 L265.07116,149.8009 L313.23551,149.8009 L313.23551,167.80606 L265.07116,167.80606 L265.07116,185.34759 L314.41947,185.34759 L314.41947,203.51436 L314.41947,203.51436 Z M413.67528,139.33321 C413.67528,153.33782 404.28877,160.57326 398.81863,162.74575 C403.43206,164.49434 407.37237,167.58351 409.24808,170.14281 C412.22525,174.51164 412.73875,178.41416 412.73875,186.25897 L412.73875,203.51436 L391.47278,203.51436 L391.39298,192.43732 C391.39298,187.1518 391.90115,179.55074 388.0646,175.32499 C384.98366,172.23581 380.28774,171.56552 372.69714,171.56552 L350.06363,171.56552 L350.06363,203.51436 L328.98125,203.51436 L328.98125,115.67692 L377.47552,115.67692 C388.25084,115.67692 396.18999,115.9604 403.00639,119.88413 C409.67644,123.80786 413.67529,129.53581 413.67529,139.33321 L413.67528,139.33321 Z M387.02277,152.37632 C384.1254,154.12756 380.69859,154.18584 376.59333,154.18584 L350.97998,154.18584 L350.97998,134.67583 L376.94186,134.67583 C380.61611,134.67583 384.44999,134.8401 386.94029,136.26016 C389.67536,137.53981 391.36749,140.26337 391.36749,144.02548 C391.36749,147.86443 389.75784,150.95361 387.02277,152.37632 L387.02277,152.37632 Z M447.48908,203.51436 L425.97569,203.51436 L425.97569,115.67692 L447.48908,115.67692 L447.48908,203.51436 L447.48908,203.51436 Z M697.22856,203.51436 L667.35032,203.51436 L627.38585,137.58727 L627.38585,203.51436 L584.44687,203.51436 L576.24166,183.92222 L532.44331,183.92222 L524.48287,203.51436 L499.81137,203.51436 C489.56284,203.51436 476.58722,201.25709 469.23872,193.79909 C461.82903,186.3411 457.97386,176.23903 457.97386,160.26593 C457.97386,147.23895 460.27791,135.33 469.33983,125.91941 C476.15621,118.90916 486.83044,115.67692 501.35982,115.67692 L521.77174,115.67692 L521.77174,134.49809 L501.78818,134.49809 C494.0938,134.49809 489.74909,135.63733 485.564,139.70147 C481.96957,143.4 479.50322,150.39171 479.50322,159.59829 C479.50322,169.00887 481.38158,175.79393 485.30061,180.22633 C488.5465,183.70232 494.445,184.75677 499.99495,184.75677 L509.46393,184.75677 L539.17987,115.67957 L570.77152,115.67957 L606.46843,198.76138 L606.46843,115.67957 L638.5709,115.67957 L675.6327,176.85368 L675.6327,115.67957 L697.22856,115.67957 L697.22856,203.51436 L697.22856,203.51436 Z M569.07051,165.69287 L554.47993,130.67606 L539.96916,165.69287 L569.07051,165.69287 L569.07051,165.69287 Z" id="Path" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
11
+ <path d="M750.95644,343.76716 C745.83485,351.22516 735.85504,355.00582 722.34464,355.00582 L681.62723,355.00582 L681.62723,336.1661 L722.17969,336.1661 C726.20248,336.1661 729.01736,335.63887 730.71215,333.99096 C732.18079,332.63183 733.2051,330.65804 733.2051,328.26036 C733.2051,325.70107 732.18079,323.66899 730.62967,322.45028 C729.09984,321.10969 726.87294,320.50033 723.20135,320.50033 C703.40402,319.83005 678.70592,321.10969 678.70592,293.30714 C678.70592,280.56363 686.83131,267.14983 708.95664,267.14983 L750.95379,267.14983 L750.95379,249.66925 L711.93382,249.66925 C700.15812,249.66925 691.60438,252.47759 685.54626,256.84375 L685.54626,249.66925 L627.83044,249.66925 C618.60091,249.66925 607.76706,251.94771 602.64279,256.84375 L602.64279,249.66925 L499.57751,249.66925 L499.57751,256.84375 C491.37496,250.95154 477.53466,249.66925 471.14663,249.66925 L403.16366,249.66925 L403.16366,256.84375 C396.67452,250.58593 382.24357,249.66925 373.44772,249.66925 L297.3633,249.66925 L279.95252,268.43213 L263.64586,249.66925 L149.99149,249.66925 L149.99149,372.26121 L261.50676,372.26121 L279.447,353.20159 L296.34697,372.26121 L365.08554,372.32211 L365.08554,343.48364 L371.84339,343.48364 C380.96384,343.62405 391.72054,343.25845 401.21079,339.17311 L401.21079,372.25852 L457.90762,372.25852 L457.90762,340.30704 L460.64268,340.30704 C464.13336,340.30704 464.47657,340.45011 464.47657,343.92344 L464.47657,372.25587 L636.71144,372.25587 C647.64639,372.25587 659.07621,369.46873 665.40571,364.41107 L665.40571,372.25587 L720.03792,372.25587 C731.40656,372.25587 742.50913,370.66889 750.95644,366.60475 L750.95644,343.76712 L750.95644,343.76716 Z M409.45301,296.61266 C409.45301,321.01872 391.16689,326.05784 372.7371,326.05784 L346.42935,326.05784 L346.42935,355.52685 L305.44855,355.52685 L279.48667,326.44199 L252.5058,355.52685 L168.9904,355.52685 L168.9904,267.66822 L253.79086,267.66822 L279.73144,296.46694 L306.55002,267.66822 L373.92106,267.66822 C390.6534,267.66822 409.45301,272.28078 409.45301,296.61266 L409.45301,296.61266 Z M241.82781,337.04655 L189.9892,337.04655 L189.9892,319.56596 L236.27785,319.56596 L236.27785,301.64028 L189.9892,301.64028 L189.9892,285.66718 L242.84947,285.66718 L265.91132,311.27077 L241.82781,337.04655 L241.82781,337.04655 Z M325.3545,347.10668 L292.9833,311.3189 L325.3545,276.6677 L325.3545,347.10668 L325.3545,347.10668 Z M373.2272,308.04117 L345.98027,308.04117 L345.98027,285.66718 L373.47197,285.66718 C381.08388,285.66718 386.36777,288.75636 386.36777,296.43956 C386.36777,304.03796 381.32865,308.04117 373.2272,308.04117 L373.2272,308.04117 Z M515.97053,267.66822 L586.34004,267.66822 L586.34004,285.83764 L536.96778,285.83764 L536.96778,301.81074 L585.1348,301.81074 L585.1348,319.73642 L536.96778,319.73642 L536.96778,337.21701 L586.34004,337.29641 L586.34004,355.52678 L515.97053,355.52678 L515.97053,267.66815 L515.97053,267.66822 Z M488.91724,314.6973 C493.61049,316.42205 497.44703,319.51387 499.24559,322.07317 C502.22276,326.36251 502.65378,330.36571 502.73891,338.10985 L502.73891,355.52685 L481.5714,355.52685 L481.5714,344.53458 C481.5714,339.24908 482.08223,331.42282 478.1632,327.33748 C475.08226,324.19002 470.38635,323.4376 462.69463,323.4376 L440.16223,323.4376 L440.16223,355.52685 L418.97609,355.52685 L418.97609,267.66822 L467.65393,267.66822 C478.32816,267.66822 486.10236,268.13716 493.02251,271.81449 C499.6766,275.8177 503.86168,281.30191 503.86168,291.3245 C503.85868,305.34765 494.46719,312.50362 488.91724,314.6973 L488.91724,314.6973 Z M476.99899,303.59022 C474.17879,305.25668 470.69077,305.39975 466.58817,305.39975 L440.97483,305.39975 L440.97483,285.66718 L466.9367,285.66718 C470.69077,285.66718 474.4475,285.74658 476.99899,287.25416 C479.7314,288.67687 481.36499,291.39779 481.36499,295.15725 C481.36499,298.91672 479.7314,301.94496 476.99899,303.59022 L476.99899,303.59022 Z M667.33539,309.1866 C671.44067,313.41766 673.64095,318.7588 673.64095,327.80112 C673.64095,346.70178 661.78278,355.5242 640.51948,355.5242 L599.45353,355.5242 L599.45353,336.68449 L640.35453,336.68449 C644.35337,336.68449 647.18954,336.15726 648.9668,334.50934 C650.41681,333.15021 651.45709,331.17643 651.45709,328.77875 C651.45709,326.21944 650.33167,324.18738 648.88433,322.96866 C647.27201,321.62807 645.04778,321.01872 641.37619,321.01872 C621.65868,320.34843 596.9659,321.62807 596.9659,293.82551 C596.9659,281.08201 605.00615,267.66822 627.11019,267.66822 L669.37872,267.66822 L669.37872,286.36752 L630.70196,286.36752 C626.86809,286.36752 624.37512,286.51059 622.25464,287.9545 C619.94527,289.37721 619.08856,291.48876 619.08856,294.2759 C619.08856,297.59028 621.04941,299.8449 623.702,300.81987 C625.92624,301.59084 628.31543,301.81603 631.9072,301.81603 L643.25722,302.12071 C654.703,302.39889 662.55967,304.37003 667.33539,309.1866 L667.33539,309.1866 Z M751,285.66718 L712.57335,285.66718 C708.7368,285.66718 706.18797,285.81025 704.04088,287.25416 C701.81665,288.67687 700.95995,290.78843 700.95995,293.57558 C700.95995,296.88994 702.83831,299.14456 705.57071,300.11953 C707.79495,300.8905 710.18415,301.1157 713.6961,301.1157 L725.12327,301.42038 C736.65419,301.70387 744.35123,303.67765 749.04448,308.49157 C749.89852,309.16186 750.41202,309.91428 751,310.6667 L751,285.66718 L751,285.66718 Z" id="path13" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
12
+ </g>
13
+ </g>
14
+ </svg>
assets/images/bancontact.svg CHANGED
@@ -1 +1 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 530.13"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#005498;}.cls-3{fill:#ffd800;}.cls-4{fill:none;}</style></defs><title>bancontact</title><path class="cls-1" d="M750,484.59a45.64,45.64,0,0,1-45.54,45.54H45.77A45.64,45.64,0,0,1,.23,484.59v-439A45.64,45.64,0,0,1,45.77,0H704.46A45.64,45.64,0,0,1,750,45.54V484.59Z"/><path class="cls-2" d="M602.58,148.11H422.49l-18.4,20.7-59.33,66.93h0l-18.4,20.7H148.8l17.94-20.93,8.51-9.89,17.94-20.93H111.55c-15,0-27.14,12.65-27.14,27.83h0V291.4c0,15.41,12.19,27.83,27.14,27.83H424.79c14.95,0,35.42-9.2,45.31-20.7l47.38-53.82Z"/><path class="cls-3" d="M638.68,85.33c15,0,27.14,12.65,27.14,27.83V171.8c0,15.41-12.19,27.83-27.14,27.83H557.27l18.17-20.7h0l9-10.35,18.17-20.7H422.49L326.59,256H147.88L276,111.09l4.83-5.52c10.12-11.27,30.59-20.7,45.54-20.7H638.68Z"/><path class="cls-2" d="M665.82,442.5V434c0-1.15-.69-1.84-2.3-1.84H658c-1.61,0-2.76-.23-3-.92-.46-.69-.46-2.07-.46-4.37v-32.2h9a2.36,2.36,0,0,0,2.3-2.3v-9a2.36,2.36,0,0,0-2.3-2.3h-9V369.37a1.94,1.94,0,0,0-.46-1.38,3.27,3.27,0,0,0-1.38-.46h-.23l-13.34,2.3a11.21,11.21,0,0,0-1.61.69,2,2,0,0,0-.69,1.38v9h-9a2.36,2.36,0,0,0-2.3,2.3v7.36a1.39,1.39,0,0,0,.69,1.38,3.71,3.71,0,0,0,1.61.92l9,1.38v32.2a37,37,0,0,0,1.15,9.66,15.28,15.28,0,0,0,3.45,5.75,12.22,12.22,0,0,0,5.75,2.76,42,42,0,0,0,8,.69,26.41,26.41,0,0,0,4.37-.23c1.15-.23,2.76-.46,4.37-.69a1.69,1.69,0,0,0,1.84-1.84M618,441.35v-9.89a1.39,1.39,0,0,0-.69-1.38,3.27,3.27,0,0,0-1.38-.46h-.23a56.63,56.63,0,0,1-6,.46,69.5,69.5,0,0,1-7.59.23,8.4,8.4,0,0,1-3.45-.69,8.75,8.75,0,0,1-3-2.07,8.85,8.85,0,0,1-1.84-3.91,23.15,23.15,0,0,1-.69-6.21v-9.2a23.15,23.15,0,0,1,.69-6.21,12.39,12.39,0,0,1,1.84-3.91,8.75,8.75,0,0,1,3-2.07,9.23,9.23,0,0,1,3.45-.69,69.5,69.5,0,0,1,7.59.23c1.84.23,3.91.23,6,.46h.23a1.94,1.94,0,0,0,1.38-.46,1.39,1.39,0,0,0,.69-1.38v-9.89a2.2,2.2,0,0,0-.46-1.61,6.74,6.74,0,0,0-1.84-.92c-1.61-.46-3.45-.69-6-1.15a50.09,50.09,0,0,0-8.74-.46c-7.82,0-14,2.3-18.86,7.13-4.6,4.83-7.13,11.73-7.13,20.93v9.2c0,9,2.3,16.1,7.13,20.93,4.6,4.83,11,7.13,18.86,7.13,3.22,0,6.21-.23,8.74-.46a55.86,55.86,0,0,0,6-1.15,3.46,3.46,0,0,0,1.84-.92c.46-.23.46-.92.46-1.61m-72-11.73a24.52,24.52,0,0,1-4.37,1.61,17.51,17.51,0,0,1-4.83.69c-2.3,0-4.14-.23-5.29-.92s-1.61-2.07-1.61-4.6v-.92a13.92,13.92,0,0,1,.46-3.45A6,6,0,0,1,532,419.5a6,6,0,0,1,3-1.38,24.4,24.4,0,0,1,4.83-.46H546v12Zm17.48-26.91a26.89,26.89,0,0,0-1.84-10.35,19.21,19.21,0,0,0-5.06-6.9,18.84,18.84,0,0,0-8.05-3.91,39.72,39.72,0,0,0-10.81-1.38,82.63,82.63,0,0,0-10.81.69,47.92,47.92,0,0,0-8.28,1.61c-1.38.46-2.07,1.15-2.07,2.53v9a3.32,3.32,0,0,0,.46,1.61,3.27,3.27,0,0,0,1.38.46h.46c.92,0,2.07-.23,3.22-.23,1.38,0,2.76-.23,4.37-.23s3.45-.23,5.29-.23H537a11,11,0,0,1,6,1.38c1.38.92,2.3,3,2.3,6.21v3.91h-6c-9.43,0-16.56,1.38-20.7,4.37-4.37,3-6.44,7.82-6.44,14.26v.92c0,3.68.46,6.67,1.61,9a16.81,16.81,0,0,0,4.37,6,18.78,18.78,0,0,0,6,3.22,24.27,24.27,0,0,0,7.13.92,23.57,23.57,0,0,0,8.51-1.38,33.56,33.56,0,0,0,6.9-3.68v1.84a2.36,2.36,0,0,0,2.3,2.3h12.42a2.36,2.36,0,0,0,2.3-2.3V402.71ZM504.37,442.5V434c0-1.15-.69-1.84-2.3-1.84h-5.52c-1.61,0-2.76-.23-3-.92-.46-.69-.46-2.07-.46-4.37v-32.2h9a2.36,2.36,0,0,0,2.3-2.3v-9a2.36,2.36,0,0,0-2.3-2.3h-9V369.37a1.94,1.94,0,0,0-.46-1.38,3.27,3.27,0,0,0-1.38-.46H491l-13.34,2.3a11.21,11.21,0,0,0-1.61.69,2,2,0,0,0-.69,1.38v9h-9.2a2.36,2.36,0,0,0-2.3,2.3v7.36a1.39,1.39,0,0,0,.69,1.38,3.71,3.71,0,0,0,1.61.92l9,1.38v32.2a37,37,0,0,0,1.15,9.66,15.28,15.28,0,0,0,3.45,5.75,12.22,12.22,0,0,0,5.75,2.76,42,42,0,0,0,8.05.69,26.41,26.41,0,0,0,4.37-.23c1.15-.23,2.76-.46,4.37-.69,1.38,0,2.07-.69,2.07-1.84m-48.3-.23v-36.8a46.55,46.55,0,0,0-.92-9.89,22.48,22.48,0,0,0-3-8.05,13.39,13.39,0,0,0-6-5.29,20.38,20.38,0,0,0-9.89-2.07,30.1,30.1,0,0,0-9.43,1.38,32.28,32.28,0,0,0-8.74,4.6v-2.76a2.36,2.36,0,0,0-2.3-2.3H403.4a2.36,2.36,0,0,0-2.3,2.3v58.88a2.36,2.36,0,0,0,2.3,2.3h13.34a2.36,2.36,0,0,0,2.3-2.3V398.8a58.81,58.81,0,0,1,5.52-2.53,13.11,13.11,0,0,1,5.06-.92,20.63,20.63,0,0,1,4.14.46,4.83,4.83,0,0,1,2.53,1.61,6.71,6.71,0,0,1,1.15,3.22,30.87,30.87,0,0,1,.23,4.83v36.8a2.36,2.36,0,0,0,2.3,2.3h13.34a2.09,2.09,0,0,0,1.61-.69,1.82,1.82,0,0,0,1.15-1.61m-83.71-25.53c0,9-3.22,13.57-9.89,13.57-3.22,0-5.75-1.15-7.36-3.45s-2.53-5.75-2.53-10.12v-7.82c0-4.6.92-7.82,2.53-10.12s4.14-3.45,7.36-3.45c6.44,0,9.89,4.6,9.89,13.57Zm17.93-7.82a38.4,38.4,0,0,0-1.84-12,25.06,25.06,0,0,0-5.29-9,23.19,23.19,0,0,0-8.74-5.75,35.56,35.56,0,0,0-23.91,0,23.19,23.19,0,0,0-8.74,5.75,25.06,25.06,0,0,0-5.29,9,38.4,38.4,0,0,0-1.84,12v7.82a38.4,38.4,0,0,0,1.84,12,25.06,25.06,0,0,0,5.29,9,23.19,23.19,0,0,0,8.74,5.75,35.56,35.56,0,0,0,23.91,0,23.19,23.19,0,0,0,8.74-5.75,25.06,25.06,0,0,0,5.29-9,38.4,38.4,0,0,0,1.84-12Zm-61.4,32.43v-9.89a1.39,1.39,0,0,0-.69-1.38,3.32,3.32,0,0,0-1.61-.46h-.23a56.63,56.63,0,0,1-6,.46,69.5,69.5,0,0,1-7.59.23,8.4,8.4,0,0,1-3.45-.69,8.75,8.75,0,0,1-3-2.07,8.85,8.85,0,0,1-1.84-3.91,23.15,23.15,0,0,1-.69-6.21v-9.2a23.15,23.15,0,0,1,.69-6.21,12.39,12.39,0,0,1,1.84-3.91,8.75,8.75,0,0,1,3-2.07,9.23,9.23,0,0,1,3.45-.69,69.5,69.5,0,0,1,7.59.23c1.84.23,3.91.23,6,.46h.23a3.32,3.32,0,0,0,1.61-.46,1.39,1.39,0,0,0,.69-1.38v-9.89a2.2,2.2,0,0,0-.46-1.61,6.74,6.74,0,0,0-1.84-.92c-1.61-.46-3.45-.69-6-1.15a50.09,50.09,0,0,0-8.74-.46c-7.82,0-14,2.3-18.86,7.13-4.6,4.83-7.13,11.73-7.13,20.93v9.2c0,9,2.3,16.1,7.13,20.93,4.6,4.83,11,7.13,18.86,7.13,3.22,0,6.21-.23,8.74-.46,2.53-.46,4.37-.69,6-1.15a3.46,3.46,0,0,0,1.84-.92,2.68,2.68,0,0,0,.46-1.61m-54.51.92v-36.8a46.55,46.55,0,0,0-.92-9.89,22.48,22.48,0,0,0-3-8.05,13.39,13.39,0,0,0-6-5.29,20.38,20.38,0,0,0-9.89-2.07,30.1,30.1,0,0,0-9.43,1.38,32.28,32.28,0,0,0-8.74,4.6v-2.76a2.36,2.36,0,0,0-2.3-2.3H221.71a2.36,2.36,0,0,0-2.3,2.3v58.88a2.36,2.36,0,0,0,2.3,2.3h13.34a2.36,2.36,0,0,0,2.3-2.3V398.8a58.81,58.81,0,0,1,5.52-2.53,13.11,13.11,0,0,1,5.06-.92,20.63,20.63,0,0,1,4.14.46,4.83,4.83,0,0,1,2.53,1.61,6.71,6.71,0,0,1,1.15,3.22,30.87,30.87,0,0,1,.23,4.83v36.8a2.36,2.36,0,0,0,2.3,2.3h13.34a2.09,2.09,0,0,0,1.61-.69,1.82,1.82,0,0,0,1.15-1.61m-85.56-12.65a24.52,24.52,0,0,1-4.37,1.61,17.51,17.51,0,0,1-4.83.69c-2.3,0-4.14-.23-5.29-.92s-1.61-2.07-1.61-4.6v-.92a13.92,13.92,0,0,1,.46-3.45,6,6,0,0,1,1.61-2.53,6,6,0,0,1,3-1.38,24.4,24.4,0,0,1,4.83-.46h6.21Zm17.71-26.91a26.89,26.89,0,0,0-1.84-10.35,19.21,19.21,0,0,0-5.06-6.9,18.84,18.84,0,0,0-8-3.91,39.72,39.72,0,0,0-10.81-1.38,82.63,82.63,0,0,0-10.81.69,47.92,47.92,0,0,0-8.28,1.61c-1.38.46-2.07,1.15-2.07,2.53v9a3.32,3.32,0,0,0,.46,1.61,3.27,3.27,0,0,0,1.38.46h.46c.92,0,2.07-.23,3.22-.23,1.38,0,2.76-.23,4.6-.23,1.61,0,3.45-.23,5.29-.23h5.29a11,11,0,0,1,6,1.38c1.38.92,2.3,3,2.3,6.21v3.91h-6c-9.43,0-16.56,1.38-20.7,4.37-4.37,3-6.44,7.82-6.44,14.26v.92c0,3.68.46,6.67,1.61,9a16.81,16.81,0,0,0,4.37,6,18.78,18.78,0,0,0,6,3.22,24.27,24.27,0,0,0,7.13.92,23.57,23.57,0,0,0,8.51-1.38,33.56,33.56,0,0,0,6.9-3.68v1.84a2.36,2.36,0,0,0,2.3,2.3h12.42a2.36,2.36,0,0,0,2.3-2.3V402.71Zm-79.12,17.48a8.78,8.78,0,0,1-3.21,7.13c-2.07,1.61-6.21,2.53-11.73,2.53h-9.2v-20.7h12.42c4.37,0,7.59.92,9.2,3a11.14,11.14,0,0,1,2.52,6.9ZM127,387.3a17.75,17.75,0,0,1-.46,3.45,5.92,5.92,0,0,1-1.83,2.76,12.19,12.19,0,0,1-3.45,1.84,18,18,0,0,1-5.52.69H103.27V377h8.51c5.75,0,9.66.69,12,2.07a7.28,7.28,0,0,1,3.44,6.67L127,387.3ZM145.81,419a17.24,17.24,0,0,0-2.76-9.89,17.48,17.48,0,0,0-7.13-6.44,15.59,15.59,0,0,0,6.9-6.44,20.17,20.17,0,0,0,2.53-9.66v-2.07a23,23,0,0,0-2.53-11,19.28,19.28,0,0,0-7.13-7.13,34.57,34.57,0,0,0-11-3.91,89.53,89.53,0,0,0-14.26-1.15h-5.52c-1.84,0-3.68.23-5.52.23a34.45,34.45,0,0,0-5.06.46c-1.61.23-2.76.23-3.68.46-2.07.46-3.68.92-4.6,2.07-.92.92-1.38,2.76-1.38,5.29v67.38c0,2.53.46,4.14,1.38,5.29a9.53,9.53,0,0,0,4.6,2.07,20.26,20.26,0,0,0,3.91.46c1.61.23,3.22.23,5.06.46a44.32,44.32,0,0,0,5.52.23h5.75a82.93,82.93,0,0,0,13.57-1.15,33.12,33.12,0,0,0,11-3.91,21.8,21.8,0,0,0,7.59-7.59,24.51,24.51,0,0,0,2.76-12.19V419Z"/><rect class="cls-4" width="749.77" height="530.13"/></svg>
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 530.13" preserveAspectRatio="xMidYMid meet"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#005498;}.cls-3{fill:#ffd800;}.cls-4{fill:none;}</style></defs><title>bancontact</title><path class="cls-1" d="M750,484.59a45.64,45.64,0,0,1-45.54,45.54H45.77A45.64,45.64,0,0,1,.23,484.59v-439A45.64,45.64,0,0,1,45.77,0H704.46A45.64,45.64,0,0,1,750,45.54V484.59Z"/><path class="cls-2" d="M602.58,148.11H422.49l-18.4,20.7-59.33,66.93h0l-18.4,20.7H148.8l17.94-20.93,8.51-9.89,17.94-20.93H111.55c-15,0-27.14,12.65-27.14,27.83h0V291.4c0,15.41,12.19,27.83,27.14,27.83H424.79c14.95,0,35.42-9.2,45.31-20.7l47.38-53.82Z"/><path class="cls-3" d="M638.68,85.33c15,0,27.14,12.65,27.14,27.83V171.8c0,15.41-12.19,27.83-27.14,27.83H557.27l18.17-20.7h0l9-10.35,18.17-20.7H422.49L326.59,256H147.88L276,111.09l4.83-5.52c10.12-11.27,30.59-20.7,45.54-20.7H638.68Z"/><path class="cls-2" d="M665.82,442.5V434c0-1.15-.69-1.84-2.3-1.84H658c-1.61,0-2.76-.23-3-.92-.46-.69-.46-2.07-.46-4.37v-32.2h9a2.36,2.36,0,0,0,2.3-2.3v-9a2.36,2.36,0,0,0-2.3-2.3h-9V369.37a1.94,1.94,0,0,0-.46-1.38,3.27,3.27,0,0,0-1.38-.46h-.23l-13.34,2.3a11.21,11.21,0,0,0-1.61.69,2,2,0,0,0-.69,1.38v9h-9a2.36,2.36,0,0,0-2.3,2.3v7.36a1.39,1.39,0,0,0,.69,1.38,3.71,3.71,0,0,0,1.61.92l9,1.38v32.2a37,37,0,0,0,1.15,9.66,15.28,15.28,0,0,0,3.45,5.75,12.22,12.22,0,0,0,5.75,2.76,42,42,0,0,0,8,.69,26.41,26.41,0,0,0,4.37-.23c1.15-.23,2.76-.46,4.37-.69a1.69,1.69,0,0,0,1.84-1.84M618,441.35v-9.89a1.39,1.39,0,0,0-.69-1.38,3.27,3.27,0,0,0-1.38-.46h-.23a56.63,56.63,0,0,1-6,.46,69.5,69.5,0,0,1-7.59.23,8.4,8.4,0,0,1-3.45-.69,8.75,8.75,0,0,1-3-2.07,8.85,8.85,0,0,1-1.84-3.91,23.15,23.15,0,0,1-.69-6.21v-9.2a23.15,23.15,0,0,1,.69-6.21,12.39,12.39,0,0,1,1.84-3.91,8.75,8.75,0,0,1,3-2.07,9.23,9.23,0,0,1,3.45-.69,69.5,69.5,0,0,1,7.59.23c1.84.23,3.91.23,6,.46h.23a1.94,1.94,0,0,0,1.38-.46,1.39,1.39,0,0,0,.69-1.38v-9.89a2.2,2.2,0,0,0-.46-1.61,6.74,6.74,0,0,0-1.84-.92c-1.61-.46-3.45-.69-6-1.15a50.09,50.09,0,0,0-8.74-.46c-7.82,0-14,2.3-18.86,7.13-4.6,4.83-7.13,11.73-7.13,20.93v9.2c0,9,2.3,16.1,7.13,20.93,4.6,4.83,11,7.13,18.86,7.13,3.22,0,6.21-.23,8.74-.46a55.86,55.86,0,0,0,6-1.15,3.46,3.46,0,0,0,1.84-.92c.46-.23.46-.92.46-1.61m-72-11.73a24.52,24.52,0,0,1-4.37,1.61,17.51,17.51,0,0,1-4.83.69c-2.3,0-4.14-.23-5.29-.92s-1.61-2.07-1.61-4.6v-.92a13.92,13.92,0,0,1,.46-3.45A6,6,0,0,1,532,419.5a6,6,0,0,1,3-1.38,24.4,24.4,0,0,1,4.83-.46H546v12Zm17.48-26.91a26.89,26.89,0,0,0-1.84-10.35,19.21,19.21,0,0,0-5.06-6.9,18.84,18.84,0,0,0-8.05-3.91,39.72,39.72,0,0,0-10.81-1.38,82.63,82.63,0,0,0-10.81.69,47.92,47.92,0,0,0-8.28,1.61c-1.38.46-2.07,1.15-2.07,2.53v9a3.32,3.32,0,0,0,.46,1.61,3.27,3.27,0,0,0,1.38.46h.46c.92,0,2.07-.23,3.22-.23,1.38,0,2.76-.23,4.37-.23s3.45-.23,5.29-.23H537a11,11,0,0,1,6,1.38c1.38.92,2.3,3,2.3,6.21v3.91h-6c-9.43,0-16.56,1.38-20.7,4.37-4.37,3-6.44,7.82-6.44,14.26v.92c0,3.68.46,6.67,1.61,9a16.81,16.81,0,0,0,4.37,6,18.78,18.78,0,0,0,6,3.22,24.27,24.27,0,0,0,7.13.92,23.57,23.57,0,0,0,8.51-1.38,33.56,33.56,0,0,0,6.9-3.68v1.84a2.36,2.36,0,0,0,2.3,2.3h12.42a2.36,2.36,0,0,0,2.3-2.3V402.71ZM504.37,442.5V434c0-1.15-.69-1.84-2.3-1.84h-5.52c-1.61,0-2.76-.23-3-.92-.46-.69-.46-2.07-.46-4.37v-32.2h9a2.36,2.36,0,0,0,2.3-2.3v-9a2.36,2.36,0,0,0-2.3-2.3h-9V369.37a1.94,1.94,0,0,0-.46-1.38,3.27,3.27,0,0,0-1.38-.46H491l-13.34,2.3a11.21,11.21,0,0,0-1.61.69,2,2,0,0,0-.69,1.38v9h-9.2a2.36,2.36,0,0,0-2.3,2.3v7.36a1.39,1.39,0,0,0,.69,1.38,3.71,3.71,0,0,0,1.61.92l9,1.38v32.2a37,37,0,0,0,1.15,9.66,15.28,15.28,0,0,0,3.45,5.75,12.22,12.22,0,0,0,5.75,2.76,42,42,0,0,0,8.05.69,26.41,26.41,0,0,0,4.37-.23c1.15-.23,2.76-.46,4.37-.69,1.38,0,2.07-.69,2.07-1.84m-48.3-.23v-36.8a46.55,46.55,0,0,0-.92-9.89,22.48,22.48,0,0,0-3-8.05,13.39,13.39,0,0,0-6-5.29,20.38,20.38,0,0,0-9.89-2.07,30.1,30.1,0,0,0-9.43,1.38,32.28,32.28,0,0,0-8.74,4.6v-2.76a2.36,2.36,0,0,0-2.3-2.3H403.4a2.36,2.36,0,0,0-2.3,2.3v58.88a2.36,2.36,0,0,0,2.3,2.3h13.34a2.36,2.36,0,0,0,2.3-2.3V398.8a58.81,58.81,0,0,1,5.52-2.53,13.11,13.11,0,0,1,5.06-.92,20.63,20.63,0,0,1,4.14.46,4.83,4.83,0,0,1,2.53,1.61,6.71,6.71,0,0,1,1.15,3.22,30.87,30.87,0,0,1,.23,4.83v36.8a2.36,2.36,0,0,0,2.3,2.3h13.34a2.09,2.09,0,0,0,1.61-.69,1.82,1.82,0,0,0,1.15-1.61m-83.71-25.53c0,9-3.22,13.57-9.89,13.57-3.22,0-5.75-1.15-7.36-3.45s-2.53-5.75-2.53-10.12v-7.82c0-4.6.92-7.82,2.53-10.12s4.14-3.45,7.36-3.45c6.44,0,9.89,4.6,9.89,13.57Zm17.93-7.82a38.4,38.4,0,0,0-1.84-12,25.06,25.06,0,0,0-5.29-9,23.19,23.19,0,0,0-8.74-5.75,35.56,35.56,0,0,0-23.91,0,23.19,23.19,0,0,0-8.74,5.75,25.06,25.06,0,0,0-5.29,9,38.4,38.4,0,0,0-1.84,12v7.82a38.4,38.4,0,0,0,1.84,12,25.06,25.06,0,0,0,5.29,9,23.19,23.19,0,0,0,8.74,5.75,35.56,35.56,0,0,0,23.91,0,23.19,23.19,0,0,0,8.74-5.75,25.06,25.06,0,0,0,5.29-9,38.4,38.4,0,0,0,1.84-12Zm-61.4,32.43v-9.89a1.39,1.39,0,0,0-.69-1.38,3.32,3.32,0,0,0-1.61-.46h-.23a56.63,56.63,0,0,1-6,.46,69.5,69.5,0,0,1-7.59.23,8.4,8.4,0,0,1-3.45-.69,8.75,8.75,0,0,1-3-2.07,8.85,8.85,0,0,1-1.84-3.91,23.15,23.15,0,0,1-.69-6.21v-9.2a23.15,23.15,0,0,1,.69-6.21,12.39,12.39,0,0,1,1.84-3.91,8.75,8.75,0,0,1,3-2.07,9.23,9.23,0,0,1,3.45-.69,69.5,69.5,0,0,1,7.59.23c1.84.23,3.91.23,6,.46h.23a3.32,3.32,0,0,0,1.61-.46,1.39,1.39,0,0,0,.69-1.38v-9.89a2.2,2.2,0,0,0-.46-1.61,6.74,6.74,0,0,0-1.84-.92c-1.61-.46-3.45-.69-6-1.15a50.09,50.09,0,0,0-8.74-.46c-7.82,0-14,2.3-18.86,7.13-4.6,4.83-7.13,11.73-7.13,20.93v9.2c0,9,2.3,16.1,7.13,20.93,4.6,4.83,11,7.13,18.86,7.13,3.22,0,6.21-.23,8.74-.46,2.53-.46,4.37-.69,6-1.15a3.46,3.46,0,0,0,1.84-.92,2.68,2.68,0,0,0,.46-1.61m-54.51.92v-36.8a46.55,46.55,0,0,0-.92-9.89,22.48,22.48,0,0,0-3-8.05,13.39,13.39,0,0,0-6-5.29,20.38,20.38,0,0,0-9.89-2.07,30.1,30.1,0,0,0-9.43,1.38,32.28,32.28,0,0,0-8.74,4.6v-2.76a2.36,2.36,0,0,0-2.3-2.3H221.71a2.36,2.36,0,0,0-2.3,2.3v58.88a2.36,2.36,0,0,0,2.3,2.3h13.34a2.36,2.36,0,0,0,2.3-2.3V398.8a58.81,58.81,0,0,1,5.52-2.53,13.11,13.11,0,0,1,5.06-.92,20.63,20.63,0,0,1,4.14.46,4.83,4.83,0,0,1,2.53,1.61,6.71,6.71,0,0,1,1.15,3.22,30.87,30.87,0,0,1,.23,4.83v36.8a2.36,2.36,0,0,0,2.3,2.3h13.34a2.09,2.09,0,0,0,1.61-.69,1.82,1.82,0,0,0,1.15-1.61m-85.56-12.65a24.52,24.52,0,0,1-4.37,1.61,17.51,17.51,0,0,1-4.83.69c-2.3,0-4.14-.23-5.29-.92s-1.61-2.07-1.61-4.6v-.92a13.92,13.92,0,0,1,.46-3.45,6,6,0,0,1,1.61-2.53,6,6,0,0,1,3-1.38,24.4,24.4,0,0,1,4.83-.46h6.21Zm17.71-26.91a26.89,26.89,0,0,0-1.84-10.35,19.21,19.21,0,0,0-5.06-6.9,18.84,18.84,0,0,0-8-3.91,39.72,39.72,0,0,0-10.81-1.38,82.63,82.63,0,0,0-10.81.69,47.92,47.92,0,0,0-8.28,1.61c-1.38.46-2.07,1.15-2.07,2.53v9a3.32,3.32,0,0,0,.46,1.61,3.27,3.27,0,0,0,1.38.46h.46c.92,0,2.07-.23,3.22-.23,1.38,0,2.76-.23,4.6-.23,1.61,0,3.45-.23,5.29-.23h5.29a11,11,0,0,1,6,1.38c1.38.92,2.3,3,2.3,6.21v3.91h-6c-9.43,0-16.56,1.38-20.7,4.37-4.37,3-6.44,7.82-6.44,14.26v.92c0,3.68.46,6.67,1.61,9a16.81,16.81,0,0,0,4.37,6,18.78,18.78,0,0,0,6,3.22,24.27,24.27,0,0,0,7.13.92,23.57,23.57,0,0,0,8.51-1.38,33.56,33.56,0,0,0,6.9-3.68v1.84a2.36,2.36,0,0,0,2.3,2.3h12.42a2.36,2.36,0,0,0,2.3-2.3V402.71Zm-79.12,17.48a8.78,8.78,0,0,1-3.21,7.13c-2.07,1.61-6.21,2.53-11.73,2.53h-9.2v-20.7h12.42c4.37,0,7.59.92,9.2,3a11.14,11.14,0,0,1,2.52,6.9ZM127,387.3a17.75,17.75,0,0,1-.46,3.45,5.92,5.92,0,0,1-1.83,2.76,12.19,12.19,0,0,1-3.45,1.84,18,18,0,0,1-5.52.69H103.27V377h8.51c5.75,0,9.66.69,12,2.07a7.28,7.28,0,0,1,3.44,6.67L127,387.3ZM145.81,419a17.24,17.24,0,0,0-2.76-9.89,17.48,17.48,0,0,0-7.13-6.44,15.59,15.59,0,0,0,6.9-6.44,20.17,20.17,0,0,0,2.53-9.66v-2.07a23,23,0,0,0-2.53-11,19.28,19.28,0,0,0-7.13-7.13,34.57,34.57,0,0,0-11-3.91,89.53,89.53,0,0,0-14.26-1.15h-5.52c-1.84,0-3.68.23-5.52.23a34.45,34.45,0,0,0-5.06.46c-1.61.23-2.76.23-3.68.46-2.07.46-3.68.92-4.6,2.07-.92.92-1.38,2.76-1.38,5.29v67.38c0,2.53.46,4.14,1.38,5.29a9.53,9.53,0,0,0,4.6,2.07,20.26,20.26,0,0,0,3.91.46c1.61.23,3.22.23,5.06.46a44.32,44.32,0,0,0,5.52.23h5.75a82.93,82.93,0,0,0,13.57-1.15,33.12,33.12,0,0,0,11-3.91,21.8,21.8,0,0,0,7.59-7.59,24.51,24.51,0,0,0,2.76-12.19V419Z"/><rect class="cls-4" width="749.77" height="530.13"/></svg>
assets/images/bitcoin.svg CHANGED
@@ -1 +1 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 156.61"><defs><style>.cls-1{fill:#f7931a;}.cls-2{fill:#fff;}.cls-3{fill:#4d4d4d;}</style></defs><title>bitcoin</title><path class="cls-1" d="M154.24,97.24a78.27,78.27,0,1,1-57-94.9,78.27,78.27,0,0,1,57,94.9Z"/><path class="cls-2" d="M112.82,67.15c1.56-10.42-6.38-16-17.22-19.76l3.51-14.11-8.59-2.14L87.1,44.88c-2.26-.56-4.58-1.1-6.89-1.62l3.45-13.83-8.58-2.15L71.56,41.39c-1.87-.42-3.71-.84-5.49-1.29v0l-11.85-3L52,46.28s6.37,1.46,6.24,1.55c3.48.87,4.11,3.17,4,5l-4,16.07a8.14,8.14,0,0,1,.89.29l-.9-.22L52.55,91.49a3.13,3.13,0,0,1-3.94,2c.09.13-6.24-1.56-6.24-1.56l-4.27,9.84,11.18,2.78c2.08.52,4.12,1.07,6.13,1.58l-3.56,14.28,8.58,2.14L64,108.47c2.35.63,4.62,1.22,6.85,1.77L67.29,124.3l8.59,2.14,3.56-14.25c14.65,2.78,25.66,1.66,30.3-11.59,3.74-10.67-.18-16.83-7.89-20.84,5.61-1.29,9.84-5,11-12.61ZM93.19,94.67c-2.66,10.67-20.62,4.9-26.44,3.46l4.71-18.91c5.83,1.45,24.5,4.33,21.73,15.45ZM95.84,67c-2.42,9.71-17.37,4.78-22.22,3.57L77.9,53.41C82.75,54.61,98.37,56.87,95.84,67Z"/><path class="cls-3" d="M229.46,47.38a37.31,37.31,0,0,1,16.45,3.37,33,33,0,0,1,11.52,9.12,38.59,38.59,0,0,1,6.73,13.47A61.72,61.72,0,0,1,266.33,90a67.83,67.83,0,0,1-18.83,47.08,64.82,64.82,0,0,1-20.61,14.25,63,63,0,0,1-25.75,5.26c-1.19,0-3.29,0-6.26-.1a92.82,92.82,0,0,1-10.19-.88,121.35,121.35,0,0,1-12.19-2.39,61.68,61.68,0,0,1-12.19-4.36L194.59,4.78,225.3,0,213,51.15a47.16,47.16,0,0,1,7.91-2.77,35.16,35.16,0,0,1,8.52-1ZM203.7,132.21a26.83,26.83,0,0,0,13.08-3.37,34.31,34.31,0,0,0,10.62-9,45.72,45.72,0,0,0,7-12.79A43.69,43.69,0,0,0,237,92.16c0-6.34-1.06-11.28-3.18-14.86s-6-5.35-11.69-5.35a36.93,36.93,0,0,0-7.22,1,18,18,0,0,0-8,4.17L193.81,131.4c.78.14,1.48.28,2.08.4a17.21,17.21,0,0,0,1.86.3,23.31,23.31,0,0,0,2.39.11Z"/><path class="cls-3" d="M298.17,153.82H268.84L293.61,49.59h29.53ZM312.44,36.89a18.19,18.19,0,0,1-11.09-3.66q-5-3.64-5-11.2a18.57,18.57,0,0,1,1.68-7.82,20.76,20.76,0,0,1,4.47-6.35A21.91,21.91,0,0,1,309,3.6,19.51,19.51,0,0,1,316.8,2a18.21,18.21,0,0,1,11.09,3.66q5,3.68,4.95,11.2a18.54,18.54,0,0,1-1.68,7.83,20.56,20.56,0,0,1-4.46,6.35,21.43,21.43,0,0,1-6.43,4.25,19.36,19.36,0,0,1-7.83,1.58Z"/><path class="cls-3" d="M348.85,23.62l30.72-4.76L372,49.58h32.9L399,73.75H366.28l-8.71,36.46a40.92,40.92,0,0,0-1.38,8.52,15.52,15.52,0,0,0,1,6.84,8.61,8.61,0,0,0,4.26,4.45c2.05,1.06,5,1.6,8.82,1.6a46.65,46.65,0,0,0,9.22-.9,67,67,0,0,0,9-2.47l2.19,22.59a104.26,104.26,0,0,1-12.88,3.76,74.09,74.09,0,0,1-16.46,1.58q-13.66,0-21.21-4.05A23.54,23.54,0,0,1,329.42,141a35.32,35.32,0,0,1-2.78-16.14,104.46,104.46,0,0,1,2.78-19.22l19.43-82Z"/><path class="cls-3" d="M403.63,112.2A73.27,73.27,0,0,1,408,86.83,62.45,62.45,0,0,1,420.49,66a58.64,58.64,0,0,1,19.72-14.06,63,63,0,0,1,25.85-5.15A68.17,68.17,0,0,1,482,48.48a64.88,64.88,0,0,1,12.79,4.45l-10.11,23c-2.64-1.07-5.39-2-8.22-2.87a35.92,35.92,0,0,0-10.4-1.3c-9.79,0-17.53,3.38-23.29,10.11s-8.63,15.79-8.63,27.15q0,10.11,4.37,16.35t16.05,6.24a51.56,51.56,0,0,0,11.09-1.18,54.28,54.28,0,0,0,9.52-3L477.37,151a104.37,104.37,0,0,1-12.29,3.87A68.16,68.16,0,0,1,449,156.58q-12.3,0-20.81-3.56a39.59,39.59,0,0,1-14.06-9.61,36,36,0,0,1-8-14.18,58.13,58.13,0,0,1-2.5-17Z"/><path class="cls-3" d="M533.93,156.58a47.81,47.81,0,0,1-18.24-3.18,33.68,33.68,0,0,1-12.77-8.91,38.57,38.57,0,0,1-7.63-13.57,54.88,54.88,0,0,1-2.56-17.33,76.34,76.34,0,0,1,3.85-23.79A67.51,67.51,0,0,1,508,68.4,60.86,60.86,0,0,1,526.4,52.83a50.67,50.67,0,0,1,25-6A48.25,48.25,0,0,1,569.51,50a33.81,33.81,0,0,1,12.88,8.91A38.86,38.86,0,0,1,590,72.46a55.14,55.14,0,0,1,2.57,17.34,79.2,79.2,0,0,1-3.75,23.79,68.85,68.85,0,0,1-11.1,21.4,58.14,58.14,0,0,1-18.33,15.54q-11,6-25.47,6.05Zm14.66-84.81a18.56,18.56,0,0,0-11.48,3.75A32.48,32.48,0,0,0,528.8,85a46.53,46.53,0,0,0-5.07,12.59,53.84,53.84,0,0,0-1.68,13c0,6.62,1.07,11.77,3.17,15.47s5.94,5.55,11.49,5.55a18.43,18.43,0,0,0,11.5-3.78,32.49,32.49,0,0,0,8.32-9.5,47.72,47.72,0,0,0,5.07-12.59,55.43,55.43,0,0,0,1.67-13c0-6.59-1.06-11.76-3.18-15.46s-6-5.54-11.5-5.54Z"/><path class="cls-3" d="M624.54,153.82H595.19L620,49.59H649.5ZM638.79,36.89a18.14,18.14,0,0,1-11.08-3.66q-5-3.64-5-11.2a18.57,18.57,0,0,1,1.69-7.82,20.73,20.73,0,0,1,4.46-6.35,22,22,0,0,1,6.44-4.26A19.42,19.42,0,0,1,643.15,2a18.19,18.19,0,0,1,11.1,3.66q5,3.68,5,11.2a18.71,18.71,0,0,1-1.7,7.83,20.53,20.53,0,0,1-4.45,6.35,21.56,21.56,0,0,1-6.43,4.25A19.39,19.39,0,0,1,638.79,36.89Z"/><path class="cls-3" d="M670.64,54.33c2.23-.66,4.72-1.44,7.42-2.29s5.75-1.64,9.13-2.36a110.49,110.49,0,0,1,11.29-1.79,124.93,124.93,0,0,1,14.16-.71q23.21,0,32,13.49t3.08,36.86l-13.49,56.28H704.72l13.08-55.1c.8-3.44,1.43-6.76,1.89-10a23.82,23.82,0,0,0-.11-8.52,10.23,10.23,0,0,0-3.65-6C714,72.71,711.07,72,707.1,72a59.21,59.21,0,0,0-11.69,1.21l-19.22,80.65H646.65Z"/></svg>
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 156.61" preserveAspectRatio="xMidYMid meet"><defs><style>.cls-1{fill:#f7931a;}.cls-2{fill:#fff;}.cls-3{fill:#4d4d4d;}</style></defs><title>bitcoin</title><path class="cls-1" d="M154.24,97.24a78.27,78.27,0,1,1-57-94.9,78.27,78.27,0,0,1,57,94.9Z"/><path class="cls-2" d="M112.82,67.15c1.56-10.42-6.38-16-17.22-19.76l3.51-14.11-8.59-2.14L87.1,44.88c-2.26-.56-4.58-1.1-6.89-1.62l3.45-13.83-8.58-2.15L71.56,41.39c-1.87-.42-3.71-.84-5.49-1.29v0l-11.85-3L52,46.28s6.37,1.46,6.24,1.55c3.48.87,4.11,3.17,4,5l-4,16.07a8.14,8.14,0,0,1,.89.29l-.9-.22L52.55,91.49a3.13,3.13,0,0,1-3.94,2c.09.13-6.24-1.56-6.24-1.56l-4.27,9.84,11.18,2.78c2.08.52,4.12,1.07,6.13,1.58l-3.56,14.28,8.58,2.14L64,108.47c2.35.63,4.62,1.22,6.85,1.77L67.29,124.3l8.59,2.14,3.56-14.25c14.65,2.78,25.66,1.66,30.3-11.59,3.74-10.67-.18-16.83-7.89-20.84,5.61-1.29,9.84-5,11-12.61ZM93.19,94.67c-2.66,10.67-20.62,4.9-26.44,3.46l4.71-18.91c5.83,1.45,24.5,4.33,21.73,15.45ZM95.84,67c-2.42,9.71-17.37,4.78-22.22,3.57L77.9,53.41C82.75,54.61,98.37,56.87,95.84,67Z"/><path class="cls-3" d="M229.46,47.38a37.31,37.31,0,0,1,16.45,3.37,33,33,0,0,1,11.52,9.12,38.59,38.59,0,0,1,6.73,13.47A61.72,61.72,0,0,1,266.33,90a67.83,67.83,0,0,1-18.83,47.08,64.82,64.82,0,0,1-20.61,14.25,63,63,0,0,1-25.75,5.26c-1.19,0-3.29,0-6.26-.1a92.82,92.82,0,0,1-10.19-.88,121.35,121.35,0,0,1-12.19-2.39,61.68,61.68,0,0,1-12.19-4.36L194.59,4.78,225.3,0,213,51.15a47.16,47.16,0,0,1,7.91-2.77,35.16,35.16,0,0,1,8.52-1ZM203.7,132.21a26.83,26.83,0,0,0,13.08-3.37,34.31,34.31,0,0,0,10.62-9,45.72,45.72,0,0,0,7-12.79A43.69,43.69,0,0,0,237,92.16c0-6.34-1.06-11.28-3.18-14.86s-6-5.35-11.69-5.35a36.93,36.93,0,0,0-7.22,1,18,18,0,0,0-8,4.17L193.81,131.4c.78.14,1.48.28,2.08.4a17.21,17.21,0,0,0,1.86.3,23.31,23.31,0,0,0,2.39.11Z"/><path class="cls-3" d="M298.17,153.82H268.84L293.61,49.59h29.53ZM312.44,36.89a18.19,18.19,0,0,1-11.09-3.66q-5-3.64-5-11.2a18.57,18.57,0,0,1,1.68-7.82,20.76,20.76,0,0,1,4.47-6.35A21.91,21.91,0,0,1,309,3.6,19.51,19.51,0,0,1,316.8,2a18.21,18.21,0,0,1,11.09,3.66q5,3.68,4.95,11.2a18.54,18.54,0,0,1-1.68,7.83,20.56,20.56,0,0,1-4.46,6.35,21.43,21.43,0,0,1-6.43,4.25,19.36,19.36,0,0,1-7.83,1.58Z"/><path class="cls-3" d="M348.85,23.62l30.72-4.76L372,49.58h32.9L399,73.75H366.28l-8.71,36.46a40.92,40.92,0,0,0-1.38,8.52,15.52,15.52,0,0,0,1,6.84,8.61,8.61,0,0,0,4.26,4.45c2.05,1.06,5,1.6,8.82,1.6a46.65,46.65,0,0,0,9.22-.9,67,67,0,0,0,9-2.47l2.19,22.59a104.26,104.26,0,0,1-12.88,3.76,74.09,74.09,0,0,1-16.46,1.58q-13.66,0-21.21-4.05A23.54,23.54,0,0,1,329.42,141a35.32,35.32,0,0,1-2.78-16.14,104.46,104.46,0,0,1,2.78-19.22l19.43-82Z"/><path class="cls-3" d="M403.63,112.2A73.27,73.27,0,0,1,408,86.83,62.45,62.45,0,0,1,420.49,66a58.64,58.64,0,0,1,19.72-14.06,63,63,0,0,1,25.85-5.15A68.17,68.17,0,0,1,482,48.48a64.88,64.88,0,0,1,12.79,4.45l-10.11,23c-2.64-1.07-5.39-2-8.22-2.87a35.92,35.92,0,0,0-10.4-1.3c-9.79,0-17.53,3.38-23.29,10.11s-8.63,15.79-8.63,27.15q0,10.11,4.37,16.35t16.05,6.24a51.56,51.56,0,0,0,11.09-1.18,54.28,54.28,0,0,0,9.52-3L477.37,151a104.37,104.37,0,0,1-12.29,3.87A68.16,68.16,0,0,1,449,156.58q-12.3,0-20.81-3.56a39.59,39.59,0,0,1-14.06-9.61,36,36,0,0,1-8-14.18,58.13,58.13,0,0,1-2.5-17Z"/><path class="cls-3" d="M533.93,156.58a47.81,47.81,0,0,1-18.24-3.18,33.68,33.68,0,0,1-12.77-8.91,38.57,38.57,0,0,1-7.63-13.57,54.88,54.88,0,0,1-2.56-17.33,76.34,76.34,0,0,1,3.85-23.79A67.51,67.51,0,0,1,508,68.4,60.86,60.86,0,0,1,526.4,52.83a50.67,50.67,0,0,1,25-6A48.25,48.25,0,0,1,569.51,50a33.81,33.81,0,0,1,12.88,8.91A38.86,38.86,0,0,1,590,72.46a55.14,55.14,0,0,1,2.57,17.34,79.2,79.2,0,0,1-3.75,23.79,68.85,68.85,0,0,1-11.1,21.4,58.14,58.14,0,0,1-18.33,15.54q-11,6-25.47,6.05Zm14.66-84.81a18.56,18.56,0,0,0-11.48,3.75A32.48,32.48,0,0,0,528.8,85a46.53,46.53,0,0,0-5.07,12.59,53.84,53.84,0,0,0-1.68,13c0,6.62,1.07,11.77,3.17,15.47s5.94,5.55,11.49,5.55a18.43,18.43,0,0,0,11.5-3.78,32.49,32.49,0,0,0,8.32-9.5,47.72,47.72,0,0,0,5.07-12.59,55.43,55.43,0,0,0,1.67-13c0-6.59-1.06-11.76-3.18-15.46s-6-5.54-11.5-5.54Z"/><path class="cls-3" d="M624.54,153.82H595.19L620,49.59H649.5ZM638.79,36.89a18.14,18.14,0,0,1-11.08-3.66q-5-3.64-5-11.2a18.57,18.57,0,0,1,1.69-7.82,20.73,20.73,0,0,1,4.46-6.35,22,22,0,0,1,6.44-4.26A19.42,19.42,0,0,1,643.15,2a18.19,18.19,0,0,1,11.1,3.66q5,3.68,5,11.2a18.71,18.71,0,0,1-1.7,7.83,20.53,20.53,0,0,1-4.45,6.35,21.56,21.56,0,0,1-6.43,4.25A19.39,19.39,0,0,1,638.79,36.89Z"/><path class="cls-3" d="M670.64,54.33c2.23-.66,4.72-1.44,7.42-2.29s5.75-1.64,9.13-2.36a110.49,110.49,0,0,1,11.29-1.79,124.93,124.93,0,0,1,14.16-.71q23.21,0,32,13.49t3.08,36.86l-13.49,56.28H704.72l13.08-55.1c.8-3.44,1.43-6.76,1.89-10a23.82,23.82,0,0,0-.11-8.52,10.23,10.23,0,0,0-3.65-6C714,72.71,711.07,72,707.1,72a59.21,59.21,0,0,0-11.69,1.21l-19.22,80.65H646.65Z"/></svg>
assets/images/credit-card.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 471" preserveAspectRatio="xMidYMid meet"><defs><style>.cls-1{fill:#75787c;}</style></defs><title>credit-card</title><g id="Page-1"><g id="amex"><g id="Rectangle-1"><path class="cls-1" d="M711,40V431H41V40H711m0-40H41A40,40,0,0,0,1,40V431a40,40,0,0,0,40,40H711a40,40,0,0,0,40-40V40A40,40,0,0,0,711,0Z" transform="translate(-1)"/></g></g></g><rect class="cls-1" x="11" y="113" width="728" height="100.73"/><rect class="cls-1" x="45" y="354.08" width="93" height="32.92"/><rect class="cls-1" x="172" y="354.08" width="155.94" height="32.92"/></svg>
assets/images/diners.svg ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg viewBox="0 0 750 471" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" preserveAspectRatio="xMidYMid meet">
3
+ <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
4
+ <title>diners</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <defs></defs>
7
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
8
+ <g id="diners" sketch:type="MSLayerGroup">
9
+ <rect id="rectangle" fill="#0079BE" sketch:type="MSShapeGroup" x="0" y="0" width="750" height="471" rx="40"></rect>
10
+ <path d="M584.933911,237.947339 C584.933911,138.53154 501.952976,69.8140806 411.038924,69.8471464 L332.79674,69.8471464 C240.793699,69.8140806 165.066089,138.552041 165.066089,237.947339 C165.066089,328.877778 240.793699,403.587432 332.79674,403.150963 L411.038924,403.150963 C501.952976,403.586771 584.933911,328.857939 584.933911,237.947339 L584.933911,237.947339 Z" id="Shape-path" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
11
+ <path d="M333.280302,83.9308394 C249.210378,83.9572921 181.085889,152.238282 181.066089,236.510581 C181.085889,320.768331 249.209719,389.042708 333.280302,389.069161 C417.370025,389.042708 485.508375,320.768331 485.520254,236.510581 C485.507715,152.238282 417.370025,83.9572921 333.280302,83.9308394 L333.280302,83.9308394 Z" id="Shape-path" fill="#0079BE" sketch:type="MSShapeGroup"></path>
12
+ <path d="M237.066089,236.09774 C237.145288,194.917524 262.812421,159.801587 299.006443,145.847134 L299.006443,326.327183 C262.812421,312.380667 237.144628,277.283907 237.066089,236.09774 Z M368.066089,326.372814 L368.066089,145.847134 C404.273312,159.767859 429.980043,194.903637 430.046043,236.103692 C429.980043,277.316312 404.273312,312.425636 368.066089,326.372814 Z" id="Path" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
13
+ </g>
14
+ </g>
15
+ </svg>
assets/images/discover.svg ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg viewBox="0 0 780 501" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" preserveAspectRatio="xMidYMid meet">
3
+ <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
4
+ <title>discover</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <defs></defs>
7
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
8
+ <g id="discover" sketch:type="MSLayerGroup">
9
+ <path d="M54.992188,0 C24.626565,0 -4.7369516e-15,24.629374 0,55.003906 L0,445.99609 C0,476.37636 24.618673,501 54.992188,501 L725.00781,501 C755.37344,501 780,476.37062 780,445.99609 L780,268.55664 L780,55.003906 C780,24.623637 755.38133,-4.7369516e-15 725.00781,0 L54.992188,0 L54.992188,0 Z" id="rectangle" fill="#4D4D4D" sketch:type="MSShapeGroup"></path>
10
+ <path d="M415.13086,161.21289 C446.07103,161.21289 471.15234,184.79287 471.15234,213.92188 L471.15234,213.95508 C471.15234,243.08408 446.07103,266.69727 415.13086,266.69727 C384.19069,266.69727 359.10938,243.08408 359.10938,213.95508 L359.10938,213.92188 C359.10938,184.79287 384.19069,161.21289 415.13086,161.21289 L415.13086,161.21289 Z M327.15234,161.89258 C335.9889,161.89258 343.40028,163.67723 352.41992,167.98242 L352.41992,190.73438 C343.87628,182.87089 336.46483,179.58008 326.66406,179.58008 C307.4002,179.58008 292.25,194.59455 292.25,213.63086 C292.25,233.70517 306.93133,247.82617 327.61914,247.82617 C336.93171,247.82617 344.20582,244.70584 352.41992,236.96875 L352.41992,259.73242 C343.07888,263.87291 335.50876,265.50781 326.66406,265.50781 C295.38621,265.50781 271.08203,242.91198 271.08203,213.77148 C271.08203,184.94507 296.03316,161.89258 327.15234,161.89258 L327.15234,161.89258 Z M230.03906,162.51953 C241.58477,162.51953 252.14952,166.24004 260.98242,173.51367 L250.23438,186.76172 C244.88362,181.11594 239.82337,178.73438 233.66992,178.73438 C224.81668,178.73437 218.36914,183.47936 218.36914,189.72266 C218.36914,195.07734 221.98883,197.91138 234.31445,202.20508 C257.67927,210.24859 264.60352,217.3809 264.60352,233.13086 C264.60352,252.32421 249.62806,265.68359 228.2832,265.68359 C212.65323,265.68359 201.29008,259.88895 191.82617,246.8125 L205.09375,234.78125 C209.82489,243.39164 217.71615,248.00391 227.51367,248.00391 C236.67693,248.00391 243.46094,242.05155 243.46094,234.01953 C243.46094,229.85606 241.40612,226.28585 237.30273,223.76172 C235.2368,222.56668 231.1447,220.78491 223.10352,218.11523 C203.81198,211.57701 197.19336,204.58834 197.19336,190.92969 C197.19336,174.70478 211.40702,162.51953 230.03906,162.51953 L230.03906,162.51953 Z M464.76172,164.24805 L487.19922,164.24805 L515.2832,230.83984 L543.72852,164.24805 L565.99609,164.24805 L520.50195,265.93359 L509.44922,265.93359 L464.76172,164.24805 L464.76172,164.24805 Z M67.414062,164.40039 L97.564453,164.40039 C130.87609,164.40039 154.09766,184.78179 154.09766,214.04102 C154.09766,228.63041 146.99364,242.73654 134.98047,252.09766 C124.87172,259.99945 113.35396,263.54297 97.40625,263.54297 L67.414062,263.54297 L67.414062,164.40039 L67.414062,164.40039 Z M163.54883,164.40039 L184.08984,164.40039 L184.08984,263.54297 L163.54883,263.54297 L163.54883,164.40039 L163.54883,164.40039 Z M575.2832,164.40039 L633.53516,164.40039 L633.53516,181.19922 L595.80859,181.19922 L595.80859,203.20508 L632.14453,203.20508 L632.14453,219.99609 L595.80859,219.99609 L595.80859,246.75781 L633.53516,246.75781 L633.53516,263.54297 L575.2832,263.54297 L575.2832,164.40039 L575.2832,164.40039 Z M647.14062,164.40039 L677.5957,164.40039 C701.28599,164.40039 714.86133,175.11052 714.86133,193.67188 C714.86133,208.85113 706.34712,218.81273 690.875,221.77734 L724.02344,263.54297 L698.76367,263.54297 L670.33398,223.71484 L667.65625,223.71484 L667.65625,263.54297 L647.14062,263.54297 L647.14062,164.40039 L647.14062,164.40039 Z M667.65625,180.01562 L667.65625,210.04102 L673.6582,210.04102 C686.77472,210.04102 693.72656,204.67918 693.72656,194.71289 C693.72656,185.06451 686.77347,180.01562 673.98242,180.01562 L667.65625,180.01562 L667.65625,180.01562 Z M87.939453,181.19922 L87.939453,246.75781 L93.451172,246.75781 C106.72432,246.75781 115.10685,244.36382 121.56055,238.87891 C128.66438,232.92288 132.9375,223.41276 132.9375,213.89844 C132.9375,204.39943 128.66438,195.17283 121.56055,189.2168 C114.77608,183.43696 106.72432,181.19922 93.451172,181.19922 L87.939453,181.19922 L87.939453,181.19922 Z" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
11
+ <path d="M779.981917,288.361069 C753.932037,306.691919 558.904907,437.700579 221.228007,500.98412 L724.989727,500.98412 C755.355357,500.98412 779.981917,476.35474 779.981917,445.980209 L779.981917,288.361069 L779.981917,288.361069 Z" id="Shape-9" fill="#F47216" sketch:type="MSShapeGroup"></path>
12
+ </g>
13
+ </g>
14
+ </svg>
assets/images/eps.svg CHANGED
@@ -1 +1 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 576.83"><defs><style>.cls-1{fill:#3d2e7f;}.cls-2{fill:#d3d3d3;}.cls-3{fill:#cf157e;}</style></defs><title>eps</title><path class="cls-1" d="M380,0c-17.44,26.16-36.13,53.57-53.57,79.73H434.8C416.11,53.57,399.92,26.16,380,0Zm10,462.21c0-2.49,0-5-1.25-7.48a9.44,9.44,0,0,0-5-2.49c-5,1.25-6.23,6.23-6.23,10-5,1.25-6.23,5-5,8.72,1.24,0,3.74,1.25,6.23,1.25v21.18c1.24,5,10,5,10,0,1.25-6.23,0-13.71,0-19.94,2.5-1.24,5-1.24,7.48-2.49C398.67,467.19,394.93,463.46,390,462.21Zm71,1.25c-1.24-2.5-1.24-5-1.24-7.48a9.5,9.5,0,0,1-5-2.49,9.44,9.44,0,0,0-5,2.49c0,2.49-1.25,5-1.25,8.72H446c-1.24,1.25-2.49,2.49-2.49,3.74a15.08,15.08,0,0,0,6.23,6.23c0,7.47-1.25,13.7,1.25,21.18,1.24,5,6.23,3.73,10,2.49,2.5-7.48,1.25-16.2,1.25-24.92,2.49,0,3.74-1.24,6.23-1.24C467.19,467.19,466,463.46,461,463.46Zm-225.49-1.25c-3.74,6.23-6.23,12.46-8.73,18.69-2.49-5-3.73-11.22-6.23-16.2-2.49-3.74-10-1.24-8.72,2.49,1.25,8.72,7.48,17.44,10,26.17-1.25,6.22-6.23,11.21-1.25,17.44,3.74,0,7.48,0,7.48-3.74,5-12.46,11.21-24.92,14.95-38.62C244.19,464.7,239.2,463.46,235.47,462.21ZM289,463.46c-5-1.25-8.72,1.24-12.46,2.49-5-2.49-11.21-3.74-16.2-1.25-2.49-1.24-5-1.24-7.47-1.24-1.25,1.24-2.49,2.49-2.49,3.73v28.66c1.24,1.24,3.73,2.49,6.22,3.73,8.73-5,3.74-16.19,5-23.67,0-3.73,5-2.49,7.47-3.73,2.49,7.47,1.25,14.95,2.49,22.42,1.25,3.74,6.23,3.74,8.73,2.49,2.49-7.47,0-17.44,2.49-24.91,1.24,0,5,0,6.23-1.25,1.24,7.48,0,14.95,1.24,22.43,1.25,5,6.23,3.73,10,2.49a75.17,75.17,0,0,0,0-23.67C299,468.44,294,463.46,289,463.46Zm59.8,1.24c-3.74-2.49-7.48-1.24-10,2.49V494.6c1.25,5,6.23,3.74,10,2.49,1.24-7.47,0-13.7,0-21.18,0-1.24,1.24-2.49,2.49-3.73h6.23c1.24,3.73,1.24,7.47,1.24,11.21,0,5-1.24,12.46,5,14.95,1.24-1.25,3.73-1.25,5-2.49,1.25-8.72,2.49-17.44,0-26.17C366.28,462.21,356.31,461,348.84,464.7Zm87.21,13.71c-3.74-2.5-8.72-2.5-10-6.23,5,1.24,10,3.73,14.95,2.49-1.25-2.49,1.25-7.48-2.49-8.72-5-2.49-10-2.49-15-1.25-7.48,2.49-10,12.46-3.74,17.44,3.74,3.74,10,5,13.7,7.48-5,1.24-8.72-1.25-13.7-2.49-3.74,0-6.23,3.73-5,6.23,6.23,7.47,18.68,7.47,24.91,0C444.77,488.37,442.28,480.9,436.05,478.41Zm81-13.71c-2.5-1.24-5-1.24-8.72-1.24-2.5,7.47-1.25,16.19-1.25,23.67,0,3.73,0,6.23,1.25,10,2.49,2.49,6.22,0,8.72,0,1.24-7.47,0-14.95,1.24-22.42,1.25-3.74,8.72-3.74,8.72,0,1.25,7.47,0,14.95,1.25,22.42,3.74,1.25,10,1.25,10-3.73,0-7.48,1.24-16.2-1.25-23.68C533.22,462.21,524.5,462.21,517,464.7ZM642.86,466c-1.25-3.74-7.48-2.49-10-1.25-3.74-1.24-7.47-2.49-10,1.25-1.24,10,0,18.68,0,28.65,0,5,8.72,5,10,0,1.25-6.23,0-12.46,1.25-17.44C636.63,473.42,646.59,472.18,642.86,466ZM103.41,489.62c-2.5-1.25-5-5-7.48-2.49-5,2.49-12.46,3.73-16.2-1.25,7.48-2.49,16.2,0,23.68-3.74,0-10-7.48-19.93-17.45-19.93-12.46,0-21.18,16.2-14.95,26.16C76,502.08,97.18,502.08,103.41,489.62ZM86,472.18c3.74-1.25,5,2.49,7.48,5H81C81,474.67,82.23,472.18,86,472.18Zm244.19-3.74a16.24,16.24,0,0,0-23.67-1.25c-7.48,7.48-7.48,21.18,1.24,27.41,7.48,5,18.69,3.74,26.17-2.49,1.24-2.49,0-5,0-7.48-5-1.24-8.72,1.25-13.71,2.5-3.73,0-6.23-2.5-8.72-3.74h21.18C337.62,479.65,333.89,472.18,330.15,468.44Zm-18.69,8.72c1.25-2.49,3.74-6.23,7.48-5,2.49,0,2.49,2.49,3.73,5ZM160.71,464.7c-5-2.49-10-1.24-15,0-2.49-1.24-6.23-1.24-8.72-1.24-3.73,11.21-1.24,22.42-1.24,33.63,0,5-1.25,12.46,3.73,14.95,8.73,1.25,7.48-8.72,7.48-14.95,3.74,1.25,8.72,2.49,13.7,0C171.93,492.11,171.93,472.18,160.71,464.7ZM157,484.63c-1.25,5-8.72,5-10,0-2.49-3.73,0-7.47,0-11.21a9.51,9.51,0,0,1,5-2.49C157,474.67,159.47,480.9,157,484.63Zm47.34-19.93c-2.49-2.49-6.23,0-8.72,1.25-5-2.49-12.46-3.74-17.44,1.24-10,7.48-8.72,27.41,3.73,31.15,3.74,2.49,8.72,0,12.46-1.25,2.49,1.25,6.23,1.25,10,1.25,1.24-8.72,0-17.44,0-26.16C205.56,469.68,206.81,466,204.32,464.7Zm-10,17.44c0,3.74-5,8.72-8.72,5-6.23-5-3.74-14.95,3.74-16.2C193.11,474.67,195.6,478.41,194.35,482.14ZM489.62,464.7c-3.74-2.49-8.72-2.49-12.46-1.24-13.7,5-15,27.4-1.25,33.63,5,2.49,10,1.25,13.71-1.24,2.49,2.49,6.23,1.24,10,1.24a151.27,151.27,0,0,0,0-33.63C495.85,463.46,492.11,463.46,489.62,464.7Zm-8.72,23.67c-5-2.49-6.23-12.46-1.25-14.95,3.74-3.74,8.72,2.49,8.72,6.23C489.62,484.63,485.88,489.62,480.9,488.37ZM565.61,451c-1.24,3.73,0,8.72,0,12.46-5,0-10-1.25-13.7,0-12.46,6.22-12.46,26.16,0,33.63,5,2.49,10,1.25,13.7,0,2.5,0,6.23,2.49,8.73,0,2.49-3.73,1.24-7.47,1.24-11.21V453.49C574.34,448.5,568.11,447.26,565.61,451Zm-5,37.37c-5,2.49-10-3.74-8.72-7.47,0-3.74,3.74-6.23,6.23-8.72C564.37,474.67,566.86,483.39,560.63,488.37Zm43.61-23.67c-5-1.24-10-2.49-13.71,0-12.46,6.23-12.46,28.66,1.25,33.64,3.73,2.49,8.72,0,12.46-1.25,3.73,1.25,8.72,2.49,10-1.24,0-10,1.25-21.18-1.24-32.39C609.22,463.46,606.73,464.7,604.24,464.7Zm-3.74,22.43c-5,3.73-10-2.5-10-7.48,0-3.74,3.74-6.23,6.23-8.72C603,474.67,605.48,482.14,600.5,487.13Zm66,10c3.74,1.25,8.72,2.49,11.21-2.49,1.25-13.7,0-27.41,0-42.36-2.49-2.49-5-5-7.47-3.74-5,2.5-2.5,10-2.5,15-5-1.25-11.21-2.5-16.19,1.24-8.72,7.48-10,22.43,0,29.9C655.32,499.58,661.54,499.58,666.53,497.09Zm-10-22.42a9.44,9.44,0,0,1,5-2.49c6.23,2.49,7.48,12.45,1.25,16.19C655.32,490.86,652.82,479.65,656.56,474.67Zm-530.73,0H108.39c-2.49,3.74-2.49,7.47,1.24,10,6.23-1.24,12.46,1.25,17.45-2.49C129.57,479.65,129.57,475.91,125.83,474.67ZM0,576.83H108.39c-17.44-27.41-36.13-53.57-53.57-81C36.13,522,18.69,549.42,0,576.83Zm696.43-79.74h0c-19.93,26.17-37.38,52.33-54.82,79.74H750C731.31,549.42,713.87,523.26,696.43,497.09Z"/><path class="cls-2" d="M656.56,260.38c-12.46-12.46-28.65-17.44-44.85-23.67-7.47-3.74-16.2-6.23-22.42-12.46-5-5-3.74-14.95,2.49-17.44,5-2.49,10-2.49,15-2.49,14.95,0,29.9,5,39.86,15,1.25-2.49,2.5-5,2.5-7.48,5-12.45,10-23.67,13.7-36.13a158.14,158.14,0,0,0-48.59-14.95c-18.69-1.24-38.62,0-56.06,8.73C546.93,175.66,537,184.39,532,195.6c-6.23,15-5,33.64,5,47.34,7.48,12.46,21.18,21.18,34.88,28.65,12.46,6.23,26.17,10,37.38,18.69,6.23,5,8.72,12.46,6.23,19.94-3.74,7.47-13.71,7.47-21.18,7.47-12.46,0-26.16-3.74-36.13-11.21-3.74-2.49-6.23-5-10-7.48-7.47,14.95-13.7,29.9-19.93,44.85,12.46,6.23,24.92,13.71,38.62,16.2s27.41,2.49,41.11,1.25c16.2-2.5,33.64-7.48,46.1-18.69C680.23,322.67,680.23,281.56,656.56,260.38ZM238,169.44c-11.22-6.23-23.67-8.73-36.13-10-29.9-2.49-61.05,6.23-82.23,28.65C94.68,211.79,87.21,246.68,91,279.07c2.49,23.67,13.7,47.34,33.63,63.54,22.43,17.44,51.08,21.18,78.49,18.69,22.43-1.25,44.85-7.48,62.3-21.18-6.23-11.22-12.46-23.67-17.45-34.89l-3.73-7.47A80.39,80.39,0,0,1,228,310.22c-10,5-21.18,6.23-32.39,6.23-10,0-21.18-1.25-29.9-7.48-10-6.23-16.2-17.44-18.69-29.9H281.56c3.74-13.7,6.23-28.65,3.74-42.36C282.81,208.06,264.12,183.14,238,169.44ZM149.5,238c2.49-7.48,6.23-15,11.21-19.94,5-6.23,13.71-8.72,21.18-11.21,8.72,0,18.69,2.49,24.92,8.72s10,14.95,12.46,22.43C195.6,238,173.17,236.71,149.5,238Zm338.87-41.12c-8.72-13.7-22.42-23.67-37.37-29.9-11.22-5-24.92-6.23-37.38-7.47-11.21-1.25-23.67,2.49-34.88,5-19.94-2.49-41.12-2.49-61.05-1.24V431.06h53.57V356.31c5,1.25,8.72,2.49,13.71,3.74,11.21,2.49,22.42,2.49,33.63,1.25,22.43-2.5,44.86-11.22,59.81-27.41,21.17-21.18,26.16-52.33,24.91-81C503.32,233,499.58,213,488.37,196.84Zm-41.11,81c-1.25,14.95-10,29.9-24.92,33.64-11.21,3.74-26.16,5-36.13-2.49-1.24-6.23,0-12.46-1.24-18.69V223c0-2.5,0-5,1.24-7.48,3.74-3.74,7.48-5,12.46-7.47,16.2-2.5,36.13,3.73,43.61,18.68S449.75,260.38,447.26,277.82Z"/><path class="cls-3" d="M644.1,247.92c-12.46-12.45-28.65-17.44-44.85-23.67-7.47-3.74-16.19-6.23-22.42-12.46-5-5-3.74-14.95,2.49-17.44,5-2.49,10-2.49,14.95-2.49,15,0,29.9,5,39.87,14.95,1.24-2.49,2.49-5,2.49-7.47,5-12.46,10-23.68,13.7-36.13a157.51,157.51,0,0,0-48.59-15c-18.68-1.25-38.62,0-56.06,8.72-11.21,6.23-21.18,15-26.16,26.16-6.23,15-5,33.64,5,47.34,7.48,12.46,21.18,21.18,34.89,28.66,12.45,6.23,26.16,10,37.37,18.68,6.23,5,8.72,12.46,6.23,19.94-3.74,7.47-13.7,7.47-21.18,7.47-12.46,0-26.16-3.73-36.13-11.21-3.74-2.49-6.23-5-10-7.48-7.47,15-13.7,29.91-19.93,44.86,12.46,6.22,24.92,13.7,38.62,16.19s27.41,2.49,41.11,1.25c16.2-2.49,33.64-7.48,46.1-18.69C667.77,310.22,667.77,269.1,644.1,247.92ZM225.5,157c-11.21-6.23-23.67-8.72-36.13-10-29.9-2.49-61.05,6.23-82.23,28.65-24.91,23.68-32.39,58.56-28.65,91C81,290.28,92.19,314,112.13,330.15c22.42,17.44,51.08,21.18,78.48,18.69,22.43-1.25,44.86-7.48,62.3-21.18-6.23-11.21-12.46-23.67-17.44-34.89q-1.87-3.74-3.74-7.47a80.39,80.39,0,0,1-16.2,12.46c-10,5-21.18,6.23-32.39,6.23-10,0-21.18-1.25-29.9-7.48-10-6.23-16.2-17.44-18.69-29.9H269.1c3.74-13.7,6.23-28.65,3.74-42.36C270.35,195.6,251.66,170.68,225.5,157ZM137,225.5c2.49-7.48,6.23-14.95,11.22-19.94,5-6.22,13.7-8.72,21.18-11.21,8.72,0,18.68,2.49,24.91,8.72s10,15,12.46,22.43C183.14,225.5,160.71,224.25,137,225.5Zm338.87-41.11c-8.72-13.71-22.42-23.68-37.37-29.9-11.21-5-24.92-6.23-37.38-7.48-11.21-1.25-23.67,2.49-34.88,5-19.93-2.49-41.11-2.49-61-1.24V418.6H358.8V343.85c5,1.25,8.72,2.5,13.71,3.74,11.21,2.49,22.42,2.49,33.64,1.25,22.42-2.49,44.85-11.22,59.8-27.41,21.18-21.18,26.16-52.33,24.91-81C490.86,220.51,487.13,200.58,475.91,184.39Zm-41.11,81c-1.25,14.95-10,29.9-24.92,33.63-11.21,3.74-26.16,5-36.13-2.49-1.24-6.23,0-12.46-1.24-18.69V210.55c0-2.49,0-5,1.24-7.48,3.74-3.73,7.48-5,12.46-7.47,16.2-2.49,36.13,3.74,43.61,18.69S437.29,247.92,434.8,265.37Z"/></svg>
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 576.83" preserveAspectRatio="xMidYMid meet"><defs><style>.cls-1{fill:#3d2e7f;}.cls-2{fill:#d3d3d3;}.cls-3{fill:#cf157e;}</style></defs><title>eps</title><path class="cls-1" d="M380,0c-17.44,26.16-36.13,53.57-53.57,79.73H434.8C416.11,53.57,399.92,26.16,380,0Zm10,462.21c0-2.49,0-5-1.25-7.48a9.44,9.44,0,0,0-5-2.49c-5,1.25-6.23,6.23-6.23,10-5,1.25-6.23,5-5,8.72,1.24,0,3.74,1.25,6.23,1.25v21.18c1.24,5,10,5,10,0,1.25-6.23,0-13.71,0-19.94,2.5-1.24,5-1.24,7.48-2.49C398.67,467.19,394.93,463.46,390,462.21Zm71,1.25c-1.24-2.5-1.24-5-1.24-7.48a9.5,9.5,0,0,1-5-2.49,9.44,9.44,0,0,0-5,2.49c0,2.49-1.25,5-1.25,8.72H446c-1.24,1.25-2.49,2.49-2.49,3.74a15.08,15.08,0,0,0,6.23,6.23c0,7.47-1.25,13.7,1.25,21.18,1.24,5,6.23,3.73,10,2.49,2.5-7.48,1.25-16.2,1.25-24.92,2.49,0,3.74-1.24,6.23-1.24C467.19,467.19,466,463.46,461,463.46Zm-225.49-1.25c-3.74,6.23-6.23,12.46-8.73,18.69-2.49-5-3.73-11.22-6.23-16.2-2.49-3.74-10-1.24-8.72,2.49,1.25,8.72,7.48,17.44,10,26.17-1.25,6.22-6.23,11.21-1.25,17.44,3.74,0,7.48,0,7.48-3.74,5-12.46,11.21-24.92,14.95-38.62C244.19,464.7,239.2,463.46,235.47,462.21ZM289,463.46c-5-1.25-8.72,1.24-12.46,2.49-5-2.49-11.21-3.74-16.2-1.25-2.49-1.24-5-1.24-7.47-1.24-1.25,1.24-2.49,2.49-2.49,3.73v28.66c1.24,1.24,3.73,2.49,6.22,3.73,8.73-5,3.74-16.19,5-23.67,0-3.73,5-2.49,7.47-3.73,2.49,7.47,1.25,14.95,2.49,22.42,1.25,3.74,6.23,3.74,8.73,2.49,2.49-7.47,0-17.44,2.49-24.91,1.24,0,5,0,6.23-1.25,1.24,7.48,0,14.95,1.24,22.43,1.25,5,6.23,3.73,10,2.49a75.17,75.17,0,0,0,0-23.67C299,468.44,294,463.46,289,463.46Zm59.8,1.24c-3.74-2.49-7.48-1.24-10,2.49V494.6c1.25,5,6.23,3.74,10,2.49,1.24-7.47,0-13.7,0-21.18,0-1.24,1.24-2.49,2.49-3.73h6.23c1.24,3.73,1.24,7.47,1.24,11.21,0,5-1.24,12.46,5,14.95,1.24-1.25,3.73-1.25,5-2.49,1.25-8.72,2.49-17.44,0-26.17C366.28,462.21,356.31,461,348.84,464.7Zm87.21,13.71c-3.74-2.5-8.72-2.5-10-6.23,5,1.24,10,3.73,14.95,2.49-1.25-2.49,1.25-7.48-2.49-8.72-5-2.49-10-2.49-15-1.25-7.48,2.49-10,12.46-3.74,17.44,3.74,3.74,10,5,13.7,7.48-5,1.24-8.72-1.25-13.7-2.49-3.74,0-6.23,3.73-5,6.23,6.23,7.47,18.68,7.47,24.91,0C444.77,488.37,442.28,480.9,436.05,478.41Zm81-13.71c-2.5-1.24-5-1.24-8.72-1.24-2.5,7.47-1.25,16.19-1.25,23.67,0,3.73,0,6.23,1.25,10,2.49,2.49,6.22,0,8.72,0,1.24-7.47,0-14.95,1.24-22.42,1.25-3.74,8.72-3.74,8.72,0,1.25,7.47,0,14.95,1.25,22.42,3.74,1.25,10,1.25,10-3.73,0-7.48,1.24-16.2-1.25-23.68C533.22,462.21,524.5,462.21,517,464.7ZM642.86,466c-1.25-3.74-7.48-2.49-10-1.25-3.74-1.24-7.47-2.49-10,1.25-1.24,10,0,18.68,0,28.65,0,5,8.72,5,10,0,1.25-6.23,0-12.46,1.25-17.44C636.63,473.42,646.59,472.18,642.86,466ZM103.41,489.62c-2.5-1.25-5-5-7.48-2.49-5,2.49-12.46,3.73-16.2-1.25,7.48-2.49,16.2,0,23.68-3.74,0-10-7.48-19.93-17.45-19.93-12.46,0-21.18,16.2-14.95,26.16C76,502.08,97.18,502.08,103.41,489.62ZM86,472.18c3.74-1.25,5,2.49,7.48,5H81C81,474.67,82.23,472.18,86,472.18Zm244.19-3.74a16.24,16.24,0,0,0-23.67-1.25c-7.48,7.48-7.48,21.18,1.24,27.41,7.48,5,18.69,3.74,26.17-2.49,1.24-2.49,0-5,0-7.48-5-1.24-8.72,1.25-13.71,2.5-3.73,0-6.23-2.5-8.72-3.74h21.18C337.62,479.65,333.89,472.18,330.15,468.44Zm-18.69,8.72c1.25-2.49,3.74-6.23,7.48-5,2.49,0,2.49,2.49,3.73,5ZM160.71,464.7c-5-2.49-10-1.24-15,0-2.49-1.24-6.23-1.24-8.72-1.24-3.73,11.21-1.24,22.42-1.24,33.63,0,5-1.25,12.46,3.73,14.95,8.73,1.25,7.48-8.72,7.48-14.95,3.74,1.25,8.72,2.49,13.7,0C171.93,492.11,171.93,472.18,160.71,464.7ZM157,484.63c-1.25,5-8.72,5-10,0-2.49-3.73,0-7.47,0-11.21a9.51,9.51,0,0,1,5-2.49C157,474.67,159.47,480.9,157,484.63Zm47.34-19.93c-2.49-2.49-6.23,0-8.72,1.25-5-2.49-12.46-3.74-17.44,1.24-10,7.48-8.72,27.41,3.73,31.15,3.74,2.49,8.72,0,12.46-1.25,2.49,1.25,6.23,1.25,10,1.25,1.24-8.72,0-17.44,0-26.16C205.56,469.68,206.81,466,204.32,464.7Zm-10,17.44c0,3.74-5,8.72-8.72,5-6.23-5-3.74-14.95,3.74-16.2C193.11,474.67,195.6,478.41,194.35,482.14ZM489.62,464.7c-3.74-2.49-8.72-2.49-12.46-1.24-13.7,5-15,27.4-1.25,33.63,5,2.49,10,1.25,13.71-1.24,2.49,2.49,6.23,1.24,10,1.24a151.27,151.27,0,0,0,0-33.63C495.85,463.46,492.11,463.46,489.62,464.7Zm-8.72,23.67c-5-2.49-6.23-12.46-1.25-14.95,3.74-3.74,8.72,2.49,8.72,6.23C489.62,484.63,485.88,489.62,480.9,488.37ZM565.61,451c-1.24,3.73,0,8.72,0,12.46-5,0-10-1.25-13.7,0-12.46,6.22-12.46,26.16,0,33.63,5,2.49,10,1.25,13.7,0,2.5,0,6.23,2.49,8.73,0,2.49-3.73,1.24-7.47,1.24-11.21V453.49C574.34,448.5,568.11,447.26,565.61,451Zm-5,37.37c-5,2.49-10-3.74-8.72-7.47,0-3.74,3.74-6.23,6.23-8.72C564.37,474.67,566.86,483.39,560.63,488.37Zm43.61-23.67c-5-1.24-10-2.49-13.71,0-12.46,6.23-12.46,28.66,1.25,33.64,3.73,2.49,8.72,0,12.46-1.25,3.73,1.25,8.72,2.49,10-1.24,0-10,1.25-21.18-1.24-32.39C609.22,463.46,606.73,464.7,604.24,464.7Zm-3.74,22.43c-5,3.73-10-2.5-10-7.48,0-3.74,3.74-6.23,6.23-8.72C603,474.67,605.48,482.14,600.5,487.13Zm66,10c3.74,1.25,8.72,2.49,11.21-2.49,1.25-13.7,0-27.41,0-42.36-2.49-2.49-5-5-7.47-3.74-5,2.5-2.5,10-2.5,15-5-1.25-11.21-2.5-16.19,1.24-8.72,7.48-10,22.43,0,29.9C655.32,499.58,661.54,499.58,666.53,497.09Zm-10-22.42a9.44,9.44,0,0,1,5-2.49c6.23,2.49,7.48,12.45,1.25,16.19C655.32,490.86,652.82,479.65,656.56,474.67Zm-530.73,0H108.39c-2.49,3.74-2.49,7.47,1.24,10,6.23-1.24,12.46,1.25,17.45-2.49C129.57,479.65,129.57,475.91,125.83,474.67ZM0,576.83H108.39c-17.44-27.41-36.13-53.57-53.57-81C36.13,522,18.69,549.42,0,576.83Zm696.43-79.74h0c-19.93,26.17-37.38,52.33-54.82,79.74H750C731.31,549.42,713.87,523.26,696.43,497.09Z"/><path class="cls-2" d="M656.56,260.38c-12.46-12.46-28.65-17.44-44.85-23.67-7.47-3.74-16.2-6.23-22.42-12.46-5-5-3.74-14.95,2.49-17.44,5-2.49,10-2.49,15-2.49,14.95,0,29.9,5,39.86,15,1.25-2.49,2.5-5,2.5-7.48,5-12.45,10-23.67,13.7-36.13a158.14,158.14,0,0,0-48.59-14.95c-18.69-1.24-38.62,0-56.06,8.73C546.93,175.66,537,184.39,532,195.6c-6.23,15-5,33.64,5,47.34,7.48,12.46,21.18,21.18,34.88,28.65,12.46,6.23,26.17,10,37.38,18.69,6.23,5,8.72,12.46,6.23,19.94-3.74,7.47-13.71,7.47-21.18,7.47-12.46,0-26.16-3.74-36.13-11.21-3.74-2.49-6.23-5-10-7.48-7.47,14.95-13.7,29.9-19.93,44.85,12.46,6.23,24.92,13.71,38.62,16.2s27.41,2.49,41.11,1.25c16.2-2.5,33.64-7.48,46.1-18.69C680.23,322.67,680.23,281.56,656.56,260.38ZM238,169.44c-11.22-6.23-23.67-8.73-36.13-10-29.9-2.49-61.05,6.23-82.23,28.65C94.68,211.79,87.21,246.68,91,279.07c2.49,23.67,13.7,47.34,33.63,63.54,22.43,17.44,51.08,21.18,78.49,18.69,22.43-1.25,44.85-7.48,62.3-21.18-6.23-11.22-12.46-23.67-17.45-34.89l-3.73-7.47A80.39,80.39,0,0,1,228,310.22c-10,5-21.18,6.23-32.39,6.23-10,0-21.18-1.25-29.9-7.48-10-6.23-16.2-17.44-18.69-29.9H281.56c3.74-13.7,6.23-28.65,3.74-42.36C282.81,208.06,264.12,183.14,238,169.44ZM149.5,238c2.49-7.48,6.23-15,11.21-19.94,5-6.23,13.71-8.72,21.18-11.21,8.72,0,18.69,2.49,24.92,8.72s10,14.95,12.46,22.43C195.6,238,173.17,236.71,149.5,238Zm338.87-41.12c-8.72-13.7-22.42-23.67-37.37-29.9-11.22-5-24.92-6.23-37.38-7.47-11.21-1.25-23.67,2.49-34.88,5-19.94-2.49-41.12-2.49-61.05-1.24V431.06h53.57V356.31c5,1.25,8.72,2.49,13.71,3.74,11.21,2.49,22.42,2.49,33.63,1.25,22.43-2.5,44.86-11.22,59.81-27.41,21.17-21.18,26.16-52.33,24.91-81C503.32,233,499.58,213,488.37,196.84Zm-41.11,81c-1.25,14.95-10,29.9-24.92,33.64-11.21,3.74-26.16,5-36.13-2.49-1.24-6.23,0-12.46-1.24-18.69V223c0-2.5,0-5,1.24-7.48,3.74-3.74,7.48-5,12.46-7.47,16.2-2.5,36.13,3.73,43.61,18.68S449.75,260.38,447.26,277.82Z"/><path class="cls-3" d="M644.1,247.92c-12.46-12.45-28.65-17.44-44.85-23.67-7.47-3.74-16.19-6.23-22.42-12.46-5-5-3.74-14.95,2.49-17.44,5-2.49,10-2.49,14.95-2.49,15,0,29.9,5,39.87,14.95,1.24-2.49,2.49-5,2.49-7.47,5-12.46,10-23.68,13.7-36.13a157.51,157.51,0,0,0-48.59-15c-18.68-1.25-38.62,0-56.06,8.72-11.21,6.23-21.18,15-26.16,26.16-6.23,15-5,33.64,5,47.34,7.48,12.46,21.18,21.18,34.89,28.66,12.45,6.23,26.16,10,37.37,18.68,6.23,5,8.72,12.46,6.23,19.94-3.74,7.47-13.7,7.47-21.18,7.47-12.46,0-26.16-3.73-36.13-11.21-3.74-2.49-6.23-5-10-7.48-7.47,15-13.7,29.91-19.93,44.86,12.46,6.22,24.92,13.7,38.62,16.19s27.41,2.49,41.11,1.25c16.2-2.49,33.64-7.48,46.1-18.69C667.77,310.22,667.77,269.1,644.1,247.92ZM225.5,157c-11.21-6.23-23.67-8.72-36.13-10-29.9-2.49-61.05,6.23-82.23,28.65-24.91,23.68-32.39,58.56-28.65,91C81,290.28,92.19,314,112.13,330.15c22.42,17.44,51.08,21.18,78.48,18.69,22.43-1.25,44.86-7.48,62.3-21.18-6.23-11.21-12.46-23.67-17.44-34.89q-1.87-3.74-3.74-7.47a80.39,80.39,0,0,1-16.2,12.46c-10,5-21.18,6.23-32.39,6.23-10,0-21.18-1.25-29.9-7.48-10-6.23-16.2-17.44-18.69-29.9H269.1c3.74-13.7,6.23-28.65,3.74-42.36C270.35,195.6,251.66,170.68,225.5,157ZM137,225.5c2.49-7.48,6.23-14.95,11.22-19.94,5-6.22,13.7-8.72,21.18-11.21,8.72,0,18.68,2.49,24.91,8.72s10,15,12.46,22.43C183.14,225.5,160.71,224.25,137,225.5Zm338.87-41.11c-8.72-13.71-22.42-23.68-37.37-29.9-11.21-5-24.92-6.23-37.38-7.48-11.21-1.25-23.67,2.49-34.88,5-19.93-2.49-41.11-2.49-61-1.24V418.6H358.8V343.85c5,1.25,8.72,2.5,13.71,3.74,11.21,2.49,22.42,2.49,33.64,1.25,22.42-2.49,44.85-11.22,59.8-27.41,21.18-21.18,26.16-52.33,24.91-81C490.86,220.51,487.13,200.58,475.91,184.39Zm-41.11,81c-1.25,14.95-10,29.9-24.92,33.63-11.21,3.74-26.16,5-36.13-2.49-1.24-6.23,0-12.46-1.24-18.69V210.55c0-2.49,0-5,1.24-7.48,3.74-3.73,7.48-5,12.46-7.47,16.2-2.49,36.13,3.74,43.61,18.69S437.29,247.92,434.8,265.37Z"/></svg>
assets/images/giropay.svg CHANGED
@@ -1 +1 @@
1
- <svg id="svg2226" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 740 318.09"><defs><style>.cls-1{fill:#000268;}.cls-2{fill:#fff;}.cls-3{fill:#ff0007;}</style></defs><title>giropay</title><g id="layer1"><path id="_92653320" data-name=" 92653320" class="cls-1" d="M0,57.05A57.26,57.26,0,0,1,57.39,0H682.61A57.26,57.26,0,0,1,740,57.05V261a57.2,57.2,0,0,1-57.39,57.06H57.39A57.14,57.14,0,0,1,0,261.12Z"/><path id="_92186184" data-name=" 92186184" class="cls-2" d="M23.56,59.06V259.2a35.73,35.73,0,0,0,35.83,35.66H386.92V23.39H59.39A35.73,35.73,0,0,0,23.56,59.06Zm448.06,99.06c0,12.78-6.27,21.47-16.71,21.47-9.19,0-16.87-8.77-16.87-20.46,0-11.95,6.76-20.89,16.87-20.89C465.6,138.33,471.62,147.52,471.62,158.12ZM410.3,231.21H438V187.78h.34c5.26,9.52,15.7,13,25.31,13,23.8,0,36.5-19.63,36.5-43.27,0-19.38-12.11-40.35-34.25-40.35-12.61,0-24.22,5.1-29.82,16.29h-.33V119H410.22V231.21Zm127.56-57.63c0-7.69,7.35-10.61,16.7-10.61,4.18,0,8.1.25,11.7.42,0,9.35-6.6,18.87-17,18.87-6.44.09-11.36-3.09-11.36-8.68ZM593.65,199a96.13,96.13,0,0,1-1.5-18.88V150.27c0-24.39-17.62-33.16-38.09-33.16-11.78,0-22.14,1.67-31.91,5.68l.5,18.71c7.69-4.34,16.54-6,25.48-6,9.94,0,18.13,2.92,18.29,13.86a84.67,84.67,0,0,0-12.86-1.08c-14.7,0-41.27,2.92-41.27,27.31,0,17.38,14.12,25.14,29.91,25.14,11.36,0,19-4.42,25.31-14.45h.33c0,4.18.42,8.27.59,12.62h25.22ZM606,231.21a78.78,78.78,0,0,0,17.2,1.84c25.31,0,31.33-19.55,39.18-39.59L691.72,119H664.07l-16.46,52.21h-.25L630.16,119H600.42l32.41,81.86c-2,7.1-7.18,11-14,11a35.15,35.15,0,0,1-10.94-1.67l-1.92,21Z"/><path id="_47303032" data-name=" 47303032" class="cls-3" d="M91.05,158.29c0-10.94,5.34-20,15.7-20,12.45,0,17.63,9.94,17.63,18.88,0,12.27-7.85,20.54-17.63,20.54-8.35,0-15.7-7-15.7-19.46ZM151.11,119H126.05V133.4h-.25c-5.85-9.86-15.37-16.29-27.15-16.29-24.89,0-36.09,17.79-36.09,41.6,0,23.64,13.7,40.26,35.59,40.26,11.11,0,20.3-4.34,26.9-13.7h.33v4.35c0,15.62-8.6,23.13-24.56,23.13-11.53,0-18.63-2.42-27.06-6.6L72.34,228a92.37,92.37,0,0,0,30.57,5.09c32.24,0,48.2-10.61,48.2-43.43ZM197.8,85.62H170.15v20.3H197.8V85.62ZM170.15,199H197.8V119H170.15ZM274.73,118a64.12,64.12,0,0,0-9.35-.92c-11.95,0-18.88,6.43-23.64,16.62h-.34V119H216.26v80h27.65V165.31c0-15.71,7.27-25.06,20.13-25.06a31.8,31.8,0,0,1,9.36.92L274.73,118Zm47.62,63.4c-12.78,0-18-10.61-18-22.39,0-11.94,5.18-22.55,18-22.55S340.3,147.1,340.3,159C340.3,170.82,335,181.43,322.35,181.43Zm0,19.38c26.39,0,46.52-15.37,46.52-41.77,0-26.56-20.13-41.93-46.52-41.93S275.82,132.48,275.82,159C275.82,185.44,295.87,200.81,322.35,200.81Z"/></g></svg>
1
+ <svg id="svg2226" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 740 318.09" preserveAspectRatio="xMidYMid meet"><defs><style>.cls-1{fill:#000268;}.cls-2{fill:#fff;}.cls-3{fill:#ff0007;}</style></defs><title>giropay</title><g id="layer1"><path id="_92653320" data-name=" 92653320" class="cls-1" d="M0,57.05A57.26,57.26,0,0,1,57.39,0H682.61A57.26,57.26,0,0,1,740,57.05V261a57.2,57.2,0,0,1-57.39,57.06H57.39A57.14,57.14,0,0,1,0,261.12Z"/><path id="_92186184" data-name=" 92186184" class="cls-2" d="M23.56,59.06V259.2a35.73,35.73,0,0,0,35.83,35.66H386.92V23.39H59.39A35.73,35.73,0,0,0,23.56,59.06Zm448.06,99.06c0,12.78-6.27,21.47-16.71,21.47-9.19,0-16.87-8.77-16.87-20.46,0-11.95,6.76-20.89,16.87-20.89C465.6,138.33,471.62,147.52,471.62,158.12ZM410.3,231.21H438V187.78h.34c5.26,9.52,15.7,13,25.31,13,23.8,0,36.5-19.63,36.5-43.27,0-19.38-12.11-40.35-34.25-40.35-12.61,0-24.22,5.1-29.82,16.29h-.33V119H410.22V231.21Zm127.56-57.63c0-7.69,7.35-10.61,16.7-10.61,4.18,0,8.1.25,11.7.42,0,9.35-6.6,18.87-17,18.87-6.44.09-11.36-3.09-11.36-8.68ZM593.65,199a96.13,96.13,0,0,1-1.5-18.88V150.27c0-24.39-17.62-33.16-38.09-33.16-11.78,0-22.14,1.67-31.91,5.68l.5,18.71c7.69-4.34,16.54-6,25.48-6,9.94,0,18.13,2.92,18.29,13.86a84.67,84.67,0,0,0-12.86-1.08c-14.7,0-41.27,2.92-41.27,27.31,0,17.38,14.12,25.14,29.91,25.14,11.36,0,19-4.42,25.31-14.45h.33c0,4.18.42,8.27.59,12.62h25.22ZM606,231.21a78.78,78.78,0,0,0,17.2,1.84c25.31,0,31.33-19.55,39.18-39.59L691.72,119H664.07l-16.46,52.21h-.25L630.16,119H600.42l32.41,81.86c-2,7.1-7.18,11-14,11a35.15,35.15,0,0,1-10.94-1.67l-1.92,21Z"/><path id="_47303032" data-name=" 47303032" class="cls-3" d="M91.05,158.29c0-10.94,5.34-20,15.7-20,12.45,0,17.63,9.94,17.63,18.88,0,12.27-7.85,20.54-17.63,20.54-8.35,0-15.7-7-15.7-19.46ZM151.11,119H126.05V133.4h-.25c-5.85-9.86-15.37-16.29-27.15-16.29-24.89,0-36.09,17.79-36.09,41.6,0,23.64,13.7,40.26,35.59,40.26,11.11,0,20.3-4.34,26.9-13.7h.33v4.35c0,15.62-8.6,23.13-24.56,23.13-11.53,0-18.63-2.42-27.06-6.6L72.34,228a92.37,92.37,0,0,0,30.57,5.09c32.24,0,48.2-10.61,48.2-43.43ZM197.8,85.62H170.15v20.3H197.8V85.62ZM170.15,199H197.8V119H170.15ZM274.73,118a64.12,64.12,0,0,0-9.35-.92c-11.95,0-18.88,6.43-23.64,16.62h-.34V119H216.26v80h27.65V165.31c0-15.71,7.27-25.06,20.13-25.06a31.8,31.8,0,0,1,9.36.92L274.73,118Zm47.62,63.4c-12.78,0-18-10.61-18-22.39,0-11.94,5.18-22.55,18-22.55S340.3,147.1,340.3,159C340.3,170.82,335,181.43,322.35,181.43Zm0,19.38c26.39,0,46.52-15.37,46.52-41.77,0-26.56-20.13-41.93-46.52-41.93S275.82,132.48,275.82,159C275.82,185.44,295.87,200.81,322.35,200.81Z"/></g></svg>
assets/images/ideal.svg CHANGED
@@ -1 +1 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 661.16"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#d50072;}</style></defs><title>ideal</title><path class="cls-1" d="M0,0V661.16H385.46C639.73,661.16,750,518.76,750,329.93,750,141.84,639.73,0,385.46,0Z"/><path d="M41.66,41.7H385.51c233.38,0,322.84,127.45,322.84,288.22,0,192.78-124.92,289.51-322.84,289.51H41.66ZM75,75V586.12H385.51C573,586.12,675,498.76,675,329.92,675,156.4,564.41,75,385.51,75H75Z"/><path d="M116.66,367.5h99.4V544.42h-99.4Z"/><circle cx="166.35" cy="278.36" r="61.78"/><path class="cls-2" d="M424.51,307.27v28.64H353.69V221h68.56V249.6H382.32v13.31h37.76v28.64H382.32v15.73Zm12.39,28.66,34.66-115h40.75l34.65,115H517.15l-6.5-22.24H473.18l-6.51,22.24Zm44.68-50.86h20.73l-9.51-32.49h-1.73l-9.49,32.49Zm79.78-64.14H590v86.35h42.42C620.79,150.6,497.56,116.75,385.52,116.75H266.12V221h17.67C316,221,336,242.84,336,278c0,36.28-19.52,57.93-52.22,57.93H266.12V544.5H385.53c182.07,0,245.48-84.56,247.72-208.59H561.36v-115Zm-295.27,28.7v57.65h17.7c12.26,0,23.59-3.55,23.59-29.29,0-25.14-12.61-28.36-23.59-28.36Z"/></svg>
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 661.16" preserveAspectRatio="xMidYMid meet"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#d50072;}</style></defs><title>ideal</title><path class="cls-1" d="M0,0V661.16H385.46C639.73,661.16,750,518.76,750,329.93,750,141.84,639.73,0,385.46,0Z"/><path d="M41.66,41.7H385.51c233.38,0,322.84,127.45,322.84,288.22,0,192.78-124.92,289.51-322.84,289.51H41.66ZM75,75V586.12H385.51C573,586.12,675,498.76,675,329.92,675,156.4,564.41,75,385.51,75H75Z"/><path d="M116.66,367.5h99.4V544.42h-99.4Z"/><circle cx="166.35" cy="278.36" r="61.78"/><path class="cls-2" d="M424.51,307.27v28.64H353.69V221h68.56V249.6H382.32v13.31h37.76v28.64H382.32v15.73Zm12.39,28.66,34.66-115h40.75l34.65,115H517.15l-6.5-22.24H473.18l-6.51,22.24Zm44.68-50.86h20.73l-9.51-32.49h-1.73l-9.49,32.49Zm79.78-64.14H590v86.35h42.42C620.79,150.6,497.56,116.75,385.52,116.75H266.12V221h17.67C316,221,336,242.84,336,278c0,36.28-19.52,57.93-52.22,57.93H266.12V544.5H385.53c182.07,0,245.48-84.56,247.72-208.59H561.36v-115Zm-295.27,28.7v57.65h17.7c12.26,0,23.59-3.55,23.59-29.29,0-25.14-12.61-28.36-23.59-28.36Z"/></svg>
assets/images/jcb.svg ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg viewBox="0 0 750 471" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" preserveAspectRatio="xMidYMid meet">
3
+ <!-- Generator: Sketch 3.3.1 (12005) - http://www.bohemiancoding.com/sketch -->
4
+ <title>Slice 1</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <defs>
7
+ <linearGradient x1="0.031607858%" y1="49.9998574%" x2="99.9743153%" y2="49.9998574%" id="linearGradient-1">
8
+ <stop stop-color="#007B40" offset="0%"></stop>
9
+ <stop stop-color="#55B330" offset="100%"></stop>
10
+ </linearGradient>
11
+ <linearGradient x1="0.471693172%" y1="49.999826%" x2="99.9860086%" y2="49.999826%" id="linearGradient-2">
12
+ <stop stop-color="#1D2970" offset="0%"></stop>
13
+ <stop stop-color="#006DBA" offset="100%"></stop>
14
+ </linearGradient>
15
+ <linearGradient x1="0.113880772%" y1="50.0008964%" x2="99.9860003%" y2="50.0008964%" id="linearGradient-3">
16
+ <stop stop-color="#6E2B2F" offset="0%"></stop>
17
+ <stop stop-color="#E30138" offset="100%"></stop>
18
+ </linearGradient>
19
+ </defs>
20
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
21
+ <g id="jcb" sketch:type="MSLayerGroup">
22
+ <rect id="Rectangle-1" fill="#0E4C96" sketch:type="MSShapeGroup" x="0" y="0" width="750" height="471" rx="40"></rect>
23
+ <path d="M617.243183,346.766281 C617.243183,388.380887 583.514892,422.125974 541.88349,422.125974 L132.756823,422.125974 L132.756823,124.244916 C132.756823,82.6186826 166.489851,48.8744567 208.121683,48.8744567 L617.242752,48.874026 L617.242752,346.766281 L617.243183,346.766281 L617.243183,346.766281 Z" id="path3494" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
24
+ <path d="M483.858874,242.044797 C495.542699,242.298285 507.296188,241.528806 518.936004,242.444883 C530.723244,244.645678 533.563915,262.487874 523.09234,268.332511 C515.950746,272.182115 507.459496,269.764696 499.713328,270.446208 L483.858874,270.446208 L483.858874,242.044797 L483.858874,242.044797 Z M525.691826,209.900487 C528.288491,219.064679 519.453903,227.292118 510.625917,226.030566 L483.858874,226.030566 C484.043758,217.388441 483.491345,208.008973 484.131053,199.821663 C494.854942,200.123386 505.679576,199.205849 516.340394,200.301853 C520.921799,201.451558 524.753935,205.217712 525.691826,209.900487 L525.691826,209.900487 Z M590.120412,73.9972254 C590.617872,91.498454 590.191471,109.92365 590.33359,127.780192 C590.299137,200.376358 590.405942,272.974174 590.278896,345.569303 C589.81042,372.776592 565.696524,396.413678 538.678749,396.956694 C511.63292,397.068451 484.584297,396.972628 457.537396,397.004497 L457.537396,287.253291 C487.007,287.099803 516.49604,287.561 545.953521,287.021594 C559.62072,286.162769 574.586027,277.145695 575.22328,262.107374 C576.833661,247.005483 562.592128,236.557185 549.071096,234.905684 C543.872773,234.770542 544.027132,233.390846 549.071096,232.788972 C561.96307,230.002483 572.090675,216.655787 568.296786,203.290229 C565.06052,189.232374 549.523839,183.79142 536.600366,183.817768 C510.248548,183.638612 483.891299,183.792359 457.537396,183.74111 C457.708585,163.252408 457.182916,142.740653 457.82271,122.267364 C459.910361,95.5513766 484.628603,73.5195319 511.269759,73.997656 C537.553166,73.9973692 563.837737,73.9982301 590.120412,73.9972254 L590.120412,73.9972254 Z" id="path3496" fill="url(#linearGradient-1)" sketch:type="MSShapeGroup"></path>
25
+ <path d="M159.740429,125.040498 C160.413689,97.8766592 184.628619,74.4290299 211.614797,74.0325398 C238.559493,73.9499686 265.506204,74.0209119 292.451671,73.9972254 C292.37764,164.882488 292.599905,255.773672 292.340301,346.655222 C291.302298,373.488802 267.350548,396.488661 240.661356,396.962292 C213.665015,397.060957 186.666275,396.976074 159.669012,397.004497 L159.669012,283.550875 C185.891623,289.745491 213.391138,292.382518 240.142406,288.272242 C256.134509,285.697368 273.629935,277.848026 279.044261,261.257567 C283.030122,247.066267 280.785723,232.131602 281.378027,217.566465 L281.378027,183.741541 L235.081246,183.741541 C234.873106,206.112145 235.507258,228.522447 234.746146,250.867107 C233.49785,264.601214 219.900147,273.326996 206.946428,272.861801 C190.879747,273.030535 159.04755,261.221796 159.04755,261.221796 C158.967492,219.3048 159.514314,166.814385 159.740429,125.040498 L159.740429,125.040498 Z" id="path3498" fill="url(#linearGradient-2)" sketch:type="MSShapeGroup"></path>
26
+ <path d="M309.719995,197.390136 C307.285788,197.90738 309.229141,189.089459 308.606298,185.743964 C308.772233,164.593637 308.260045,143.420951 308.889718,122.285827 C310.972541,95.4570827 335.881262,73.3701105 362.628748,73.997656 L441.39456,73.997656 C441.320658,164.882346 441.542493,255.77294 441.283406,346.653934 C440.244412,373.488027 416.291344,396.487102 389.602087,396.962292 C362.604605,397.061991 335.604707,396.976504 308.606298,397.004928 L308.606298,272.707624 C327.04641,287.835846 352.105738,290.192248 375.077953,290.233484 C392.39501,290.227455 409.611861,287.557865 426.428143,283.562934 L426.428143,260.790297 C407.474658,270.236609 385.194808,276.235815 364.184745,270.807966 C349.529051,267.157367 338.89089,252.996683 339.128513,237.872204 C337.43001,222.143684 346.652631,205.536885 362.110237,200.860855 C381.300923,194.852545 402.217787,199.448454 420.206344,207.258795 C424.060526,209.27695 427.97066,211.780342 426.428143,205.338044 L426.428143,187.438358 C396.343581,180.280951 364.326644,177.646405 334.099438,185.433619 C325.351193,187.901774 316.82819,191.644647 309.719995,197.390136 L309.719995,197.390136 Z" id="path3500" fill="url(#linearGradient-3)" sketch:type="MSShapeGroup"></path>
27
+ </g>
28
+ </g>
29
+ </svg>
assets/images/maestro.svg ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg viewBox="0 0 750 471" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" preserveAspectRatio="xMidYMid meet">
3
+ <!-- Generator: Sketch 3.3.1 (12005) - http://www.bohemiancoding.com/sketch -->
4
+ <title>Slice 1</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <defs></defs>
7
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
8
+ <g id="maestro" sketch:type="MSLayerGroup">
9
+ <rect id="Rectangle-1" fill="#000000" sketch:type="MSShapeGroup" x="0" y="0" width="750" height="471" rx="40"></rect>
10
+ <path d="M675.000003,235.50625 C675.000003,334.639584 594.650002,415.002085 495.516668,415.002085 C396.395834,415.002085 316.0375,334.639584 316.0375,235.50625 C316.0375,136.364582 396.395834,55.997915 495.516668,55.997915 C594.650002,55.997915 675.000003,136.364582 675.000003,235.50625" id="Fill-1" fill="#D9222A" sketch:type="MSShapeGroup"></path>
11
+ <path d="M356.870834,349.489584 C351.9125,343.477084 347.345834,337.131251 343.195834,330.481251 L406.808334,330.481251 C410.625001,324.385417 414.070834,318.039584 417.150001,311.46875 L332.858333,311.46875 C329.9875,305.31875 327.433333,298.977084 325.2625,292.46875 L424.737501,292.46875 C430.725001,274.564583 433.966668,255.41875 433.966668,235.50625 C433.966668,222.460416 432.575001,209.74375 429.937501,197.493749 L320.075,197.493749 C321.466667,191.014583 323.216667,184.677083 325.283333,178.485416 L424.725001,178.485416 C422.541667,171.977083 420.004167,165.635416 417.133334,159.481249 L332.879167,159.481249 C335.954167,152.918749 339.408333,146.577082 343.216667,140.472916 L406.787501,140.472916 C402.641667,133.843749 398.062501,127.497916 393.116667,121.481249 L356.891667,121.481249 C362.4625,114.714582 368.520834,108.364582 375.004167,102.481249 C343.15,73.5979152 300.866667,55.997915 254.487499,55.997915 C155.358332,55.997915 74.999998,136.364582 74.999998,235.50625 C74.999998,334.639584 155.358332,415.002085 254.487499,415.002085 C300.875,415.002085 343.154167,397.406251 375.004167,368.527084 C381.5,362.635417 387.562501,356.268751 393.137501,349.489584 L356.870834,349.489584" id="Fill-2" fill="#0097D0" sketch:type="MSShapeGroup"></path>
12
+ <path d="M651.075003,335.543751 C651.075003,332.343751 653.670836,329.747917 656.875003,329.747917 C660.075003,329.747917 662.666669,332.343751 662.666669,335.543751 C662.666669,338.747917 660.075003,341.343751 656.875003,341.343751 C653.670836,341.343751 651.075003,338.747917 651.075003,335.543751 L651.075003,335.543751 L651.075003,335.543751 Z M656.875003,339.952084 C659.308336,339.952084 661.279169,337.985417 661.279169,335.543751 C661.279169,333.110417 659.308336,331.147917 656.875003,331.147917 C654.441669,331.147917 652.466669,333.110417 652.466669,335.543751 C652.466669,337.985417 654.441669,339.952084 656.875003,339.952084 L656.875003,339.952084 L656.875003,339.952084 Z M656.087503,338.089584 L654.904169,338.089584 L654.904169,332.997917 L657.054169,332.997917 C657.500003,332.997917 657.958336,333.002084 658.354169,333.256251 C658.770836,333.539584 659.000003,334.031251 659.000003,334.527084 C659.000003,335.110417 658.662503,335.639584 658.120836,335.843751 L659.054169,338.089584 L657.737503,338.089584 L656.962503,336.081251 L656.087503,336.081251 L656.087503,338.089584 L656.087503,338.089584 Z M656.087503,335.210417 L656.745836,335.210417 C656.991669,335.210417 657.250003,335.227084 657.470836,335.110417 C657.666669,334.981251 657.770836,334.743751 657.770836,334.518751 C657.770836,334.331251 657.645836,334.102084 657.483336,334.006251 C657.270836,333.881251 656.941669,333.906251 656.720836,333.906251 L656.087503,333.906251 L656.087503,335.210417 L656.087503,335.210417 Z" id="Fill-3" fill="#000000" sketch:type="MSShapeGroup"></path>
13
+ <path d="M372.445834,284.00625 C364.775,286.039584 357.358334,287.03125 349.516667,287.014584 C324.5,286.989584 311.470833,275.597917 311.470833,253.814583 C311.470833,228.35625 328.058333,209.63125 350.570834,209.63125 C368.9875,209.63125 380.745834,220.13125 380.745834,236.577083 C380.745834,242.035417 379.95,247.347917 378,254.872917 L333.5125,254.872917 C331.929167,265.50625 339.7,270.177083 352.925,270.177083 C360.85,270.177083 368.016667,268.752083 375.95,265.564583 L372.445834,284.00625 L372.445834,284.00625 Z M360.483334,239.85625 C360.483334,238.247916 362.958334,226.822916 350.083334,226.572916 C342.975,226.572916 337.875,231.297916 335.8125,239.85625 L360.483334,239.85625 L360.483334,239.85625 Z" id="Fill-4" fill="#000000" sketch:type="MSShapeGroup"></path>
14
+ <path d="M387.516667,234.864583 C387.516667,244.26875 392.812501,250.764583 404.845834,255.602083 C414.045834,259.372917 415.495834,260.460417 415.495834,263.822917 C415.495834,268.485417 411.429167,270.627083 402.404167,270.56875 C395.625001,270.51875 389.441667,269.697917 382.141667,267.672917 L378.9125,284.827084 C385.400001,286.33125 394.500001,286.827084 402.562501,287.014584 C426.587501,287.014584 437.679168,279.147917 437.679168,262.147917 C437.679168,251.93125 433.054168,245.914583 421.645834,241.435417 C412.108334,237.627083 410.987501,236.797916 410.987501,233.352083 C410.987501,229.302083 414.766667,227.252083 422.137501,227.252083 C426.600001,227.252083 432.716668,227.664583 438.516668,228.360416 L441.775001,211.11875 C435.862501,210.29375 426.891668,209.635416 421.700001,209.635416 C396.250001,209.635416 387.441667,221.09375 387.516667,234.864583" id="Fill-5" fill="#000000" sketch:type="MSShapeGroup"></path>
15
+ <path d="M299.275,285.785417 L280.6125,285.785417 L281.058333,277.964583 C275.366666,284.135417 267.7875,287.00625 257.499999,287.00625 C245.324999,287.00625 236.983333,278.68125 236.983333,266.710417 C236.983333,248.514583 251.483333,238.01875 276.4125,238.01875 C278.975,238.01875 282.233333,238.210416 285.579166,238.58125 C286.270833,236.147916 286.458333,235.102083 286.458333,233.772916 C286.458333,228.79375 282.5375,226.960416 272.045833,226.960416 C261.704166,227.002083 254.724999,228.53125 248.249999,230.272916 L251.437499,213.572916 C262.633333,210.727083 269.966666,209.63125 278.2625,209.63125 C297.566666,209.63125 307.7625,217.197916 307.7625,231.427083 C307.929167,235.222916 306.604167,242.839583 305.941667,246.172917 C305.183333,251.027083 299.833333,279.147917 299.275,285.785417 L299.275,285.785417 L299.275,285.785417 Z M282.895833,252.59375 C280.529166,252.352083 279.5,252.28125 277.883333,252.28125 C265.154166,252.28125 258.7,256.06875 258.7,263.547917 C258.7,268.239583 261.85,271.18125 266.758333,271.18125 C275.904166,271.18125 282.508333,263.53125 282.895833,252.59375 L282.895833,252.59375 L282.895833,252.59375 Z" id="Fill-6" fill="#000000" sketch:type="MSShapeGroup"></path>
16
+ <path d="M477.004168,284.60625 C470.879168,286.285417 466.108334,287.014584 460.945834,287.014584 C449.512501,287.014584 443.270834,281.172917 443.270834,270.764583 C442.912501,267.90625 445.704168,254.70625 446.337501,251.027083 C446.970834,247.335417 456.875001,193.535416 456.875001,193.535416 L479.087501,193.535416 L475.725001,211.335416 L487.116668,211.335416 L484.020835,229.50625 L472.579168,229.50625 C472.579168,229.50625 466.300001,261.035417 466.300001,263.439583 C466.300001,267.264583 468.616668,268.927083 473.933335,268.927083 C476.479168,268.927083 478.441668,268.689583 479.962501,268.235417 L477.004168,284.60625" id="Fill-7" fill="#000000" sketch:type="MSShapeGroup"></path>
17
+ <path d="M576.250002,209.63125 C559.970835,209.63125 547.250002,216.33125 539.862502,227.522916 L546.275002,210.927083 C534.458335,206.589583 526.841668,212.777083 519.950002,221.577083 C519.950002,221.577083 518.795835,223.039583 517.650002,224.377083 L517.650002,211.327083 L496.791668,211.327083 C493.966668,234.35625 488.970835,257.70625 485.062501,280.772917 L484.120835,285.79375 L506.558335,285.79375 C508.683335,274.085417 510.433335,264.58125 512.175002,257.00625 C516.941668,236.21875 524.962502,229.864583 537.004168,232.672916 C534.225002,238.652083 532.700002,245.564583 532.700002,253.227083 C532.700002,271.80625 542.791668,287.014584 567.850002,287.014584 C593.137502,287.014584 611.445836,273.50625 611.445836,242.70625 C611.445836,224.127083 599.245836,209.63125 576.250002,209.63125 L576.250002,209.63125 L576.250002,209.63125 Z M569.720835,268.947917 C561.795835,269.072917 556.991669,262.422917 556.991669,252.477083 C556.991669,240.685417 564.004169,227.364583 575.266669,227.364583 C584.354169,227.364583 587.466669,234.56875 587.466669,242.24375 C587.466669,259.022917 580.591669,268.947917 569.720835,268.947917 L569.720835,268.947917 L569.720835,268.947917 Z" id="Fill-8" fill="#000000" sketch:type="MSShapeGroup"></path>
18
+ <path d="M226.529166,285.79375 L204.187499,285.79375 L217.466666,215.839583 L186.895832,285.79375 L166.529165,285.79375 L162.804165,216.24375 L149.483332,285.79375 L129.212498,285.79375 L146.479165,194.797916 L181.391666,194.797916 L184.304166,245.522917 L206.420832,194.797916 L244.141666,194.797916 L226.529166,285.79375" id="Fill-9" fill="#000000" sketch:type="MSShapeGroup"></path>
19
+ <path d="M613.150002,274.385417 C613.150002,271.189583 615.745836,268.589583 618.945836,268.589583 C622.150002,268.589583 624.741669,271.189583 624.741669,274.385417 C624.741669,277.59375 622.150002,280.189583 618.945836,280.189583 C615.745836,280.189583 613.150002,277.59375 613.150002,274.385417 L613.150002,274.385417 L613.150002,274.385417 Z M618.945836,278.797917 C621.379169,278.797917 623.354169,276.81875 623.354169,274.385417 C623.354169,271.952083 621.379169,269.98125 618.945836,269.98125 C616.512502,269.98125 614.537502,271.952083 614.537502,274.385417 C614.537502,276.81875 616.512502,278.797917 618.945836,278.797917 L618.945836,278.797917 L618.945836,278.797917 Z M618.162502,276.93125 L616.975002,276.93125 L616.975002,271.847917 L619.125002,271.847917 C619.575002,271.847917 620.033336,271.847917 620.429169,272.097917 C620.837502,272.377083 621.075002,272.864583 621.075002,273.36875 C621.075002,273.947917 620.737502,274.485417 620.191669,274.685417 L621.125002,276.93125 L619.808336,276.93125 L619.037502,274.922917 L618.162502,274.922917 L618.162502,276.93125 L618.162502,276.93125 Z M618.162502,274.04375 L618.820836,274.04375 C619.062502,274.04375 619.325002,274.060417 619.545836,273.947917 C619.741669,273.814583 619.841669,273.589583 619.841669,273.360417 C619.841669,273.164583 619.720836,272.94375 619.558336,272.847917 C619.345836,272.71875 619.016669,272.752083 618.795836,272.752083 L618.162502,272.752083 L618.162502,274.04375 L618.162502,274.04375 Z" id="Fill-10" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
20
+ <path d="M378.054167,278.397917 C370.3875,280.43125 362.966667,281.427084 355.129167,281.410417 C330.1125,281.385417 317.083333,269.989583 317.083333,248.202083 C317.083333,222.752083 333.6625,204.022916 356.179167,204.022916 C374.6,204.022916 386.354167,214.51875 386.354167,230.964583 C386.354167,236.43125 385.554167,241.735417 383.612501,249.264583 L339.125,249.264583 C337.541667,259.89375 345.304167,264.572917 358.533334,264.572917 C366.458334,264.572917 373.620834,263.147917 381.5625,259.95625 L378.054167,278.397917 L378.054167,278.397917 Z M366.091667,234.247916 C366.091667,232.64375 368.5625,221.214583 355.691667,220.96875 C348.583334,220.96875 343.4875,225.697916 341.420833,234.247916 L366.091667,234.247916 L366.091667,234.247916 Z" id="Fill-11" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
21
+ <path d="M393.129167,229.252083 C393.129167,238.660416 398.416667,245.152083 410.454167,249.997917 C419.658334,253.764583 421.104167,254.85625 421.104167,258.210417 C421.104167,262.877083 417.037501,265.01875 408.016667,264.960417 C401.233334,264.914583 395.050001,264.089583 387.754167,262.064583 L384.516667,279.210417 C391.008334,280.727083 400.112501,281.222917 408.170834,281.410417 C432.195834,281.410417 443.291668,273.539583 443.291668,256.539583 C443.291668,246.322917 438.662501,240.302083 427.250001,235.827083 C417.712501,232.01875 416.595834,231.189583 416.595834,227.74375 C416.595834,223.69375 420.379167,221.64375 427.741668,221.64375 C432.212501,221.64375 438.325001,222.060416 444.129168,222.75625 L447.379168,205.510416 C441.466668,204.685416 432.500001,204.027083 427.312501,204.027083 C401.854167,204.027083 393.050001,215.48125 393.129167,229.252083" id="Fill-12" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
22
+ <path d="M304.8875,280.18125 L286.220833,280.18125 L286.670833,272.360417 C280.975,278.51875 273.395833,281.39375 263.1125,281.39375 C250.937499,281.39375 242.591666,273.06875 242.591666,261.10625 C242.591666,242.902083 257.087499,232.410416 282.020833,232.410416 C284.583333,232.410416 287.8375,232.602083 291.191666,232.972916 C291.883333,230.539583 292.066666,229.497916 292.066666,228.164583 C292.066666,223.18125 288.15,221.352083 277.658333,221.352083 C267.316666,221.39375 260.3375,222.927083 253.862499,224.664583 L257.045833,207.96875 C268.245833,205.11875 275.575,204.022916 283.875,204.022916 C303.179167,204.022916 313.370833,211.589583 313.370833,225.814583 C313.5375,229.614583 312.2125,237.227083 311.554167,240.56875 C310.791667,245.41875 305.441667,273.539583 304.8875,280.18125 L304.8875,280.18125 L304.8875,280.18125 Z M288.5,246.985417 C286.141666,246.739583 285.108333,246.672917 283.4875,246.672917 C270.766666,246.672917 264.308333,250.460417 264.308333,257.939583 C264.308333,262.635417 267.4625,265.572917 272.3625,265.572917 C281.516666,265.572917 288.120833,257.91875 288.5,246.985417 L288.5,246.985417 L288.5,246.985417 Z" id="Fill-13" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
23
+ <path d="M482.608335,279.002083 C476.487501,280.677083 471.712501,281.410417 466.554168,281.410417 C455.120834,281.410417 448.883334,275.564583 448.883334,265.15625 C448.520834,262.302083 451.316668,249.097917 451.945834,245.41875 C452.579168,241.727083 462.483334,187.927083 462.483334,187.927083 L484.691668,187.927083 L481.337501,205.727083 L492.729168,205.727083 L489.633335,223.897916 L478.191668,223.897916 C478.191668,223.897916 471.908335,255.427083 471.908335,257.83125 C471.908335,261.65625 474.229168,263.310417 479.541668,263.310417 C482.083335,263.310417 484.050001,263.08125 485.570835,262.61875 L482.608335,279.002083" id="Fill-14" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
24
+ <path d="M593.079169,236.635416 C593.079169,253.410417 586.200002,263.34375 575.325002,263.34375 C567.404169,263.45625 562.600002,256.81875 562.600002,246.86875 C562.600002,235.077083 569.608335,221.75625 580.870835,221.75625 C589.962502,221.75625 593.079169,228.96875 593.079169,236.635416 L593.079169,236.635416 L593.079169,236.635416 Z M617.058336,237.102083 C617.058336,218.522916 604.850002,204.022916 581.862502,204.022916 C555.412502,204.022916 538.312502,221.647916 538.312502,247.61875 C538.312502,266.197917 548.395835,281.410417 573.462502,281.410417 C598.750002,281.410417 617.058336,267.897917 617.058336,237.102083 L617.058336,237.102083 L617.058336,237.102083 Z" id="Fill-15" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
25
+ <path d="M502.395835,205.71875 C499.575001,228.747916 494.579168,252.09375 490.675001,275.16875 L489.729168,280.189583 L512.162502,280.189583 C520.250002,235.63125 522.962502,222.935416 539.904168,227.40625 L548.054168,206.31875 C536.237502,201.98125 528.629168,208.172916 521.745835,216.977083 C522.366668,213.014583 523.537502,209.19375 523.254168,205.71875 L502.395835,205.71875" id="Fill-16" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
26
+ <path d="M232.137499,280.189583 L209.799999,280.189583 L223.074999,210.23125 L192.499999,280.189583 L172.137499,280.189583 L168.412499,210.635416 L155.091665,280.189583 L134.820832,280.189583 L152.083332,189.189583 L187.004166,189.189583 L188.849999,245.522917 L213.424999,189.189583 L249.749999,189.189583 L232.137499,280.189583" id="Fill-17" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
27
+ </g>
28
+ </g>
29
+ </svg>
assets/images/mastercard.svg ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg viewBox="0 0 750 471" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid meet">
3
+ <!-- Generator: Sketch 39.1 (31720) - http://www.bohemiancoding.com/sketch -->
4
+ <title>Slice 1</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <defs></defs>
7
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
+ <g id="mastercard">
9
+ <rect id="Rectangle-1" fill="#F4F4F4" x="0" y="0" width="750" height="471" rx="40"></rect>
10
+ <g id="mark" transform="translate(125.719997, 41.850862)">
11
+ <g id="text" transform="translate(25.142679, 328.360022)" fill="#000000">
12
+ <path d="M467.715561,51.9326899 C466.502604,51.9623585 465.503405,52.3648948 464.717962,53.1403001 C463.932516,53.9157321 463.526027,54.8861098 463.498494,56.0514362 C463.526027,57.2079497 463.932516,58.1758036 464.717963,58.9550005 C465.503406,59.7342125 466.502604,60.1392726 467.715561,60.1701825 C468.900764,60.1392726 469.887352,59.7342123 470.675326,58.9550002 C471.463285,58.175803 471.872297,57.2079493 471.902362,56.0514362 C471.872927,54.8861098 471.465177,53.915732 470.679109,53.1402998 C469.893026,52.3648943 468.905178,51.9623581 467.715561,51.9326899 L467.715561,51.9326899 L467.715561,51.9326899 Z M467.715561,59.2616355 C466.791392,59.2389292 466.029277,58.9259854 465.429214,58.3228033 C464.829145,57.7196374 464.518499,56.9625159 464.497273,56.0514362 C464.518499,55.1363804 464.829146,54.379679 465.429214,53.78133 C466.029277,53.1830062 466.791392,52.8730071 467.715561,52.8513318 C468.620383,52.8730076 469.370728,53.1830066 469.966597,53.7813302 C470.562452,54.379679 470.871417,55.1363804 470.893494,56.0514362 C470.871417,56.9625161 470.562452,57.7196378 469.966597,58.3228033 C469.370728,58.925985 468.620384,59.2389287 467.715561,59.2616355 L467.715561,59.2616355 L467.715561,59.2616355 Z M467.957689,54.1232975 L466.19217,54.1232975 L466.19217,57.9492899 L467.009353,57.9492899 L467.009353,56.5158046 L467.382634,56.5158046 L468.542832,57.9492899 L469.521434,57.9492899 L468.270438,56.5057097 C468.661158,56.4567169 468.961716,56.330109 469.172113,56.1258861 C469.382498,55.9216836 469.488849,55.6613181 469.491168,55.3447885 C469.488429,54.9670796 469.355174,54.6701195 469.091404,54.4539073 C468.827621,54.237719 468.449717,54.1275158 467.957689,54.1232975 L467.957689,54.1232975 L467.957689,54.1232975 Z M467.9476,54.8400402 C468.166813,54.840262 468.338741,54.8827453 468.463383,54.9674885 C468.588015,55.0522552 468.651489,55.1780218 468.653808,55.3447882 C468.651483,55.5164129 468.588015,55.6451235 468.463383,55.73092 C468.338741,55.8167385 468.166813,55.8596412 467.9476,55.859631 L467.009353,55.859631 L467.009353,54.8400393 L467.9476,54.8400402 L467.9476,54.8400402 Z" id="path3078"></path>
13
+ <path d="M9.34331724,57.5428029 L0.588175916,57.5428029 L0.588175916,16.6600045 L9.17164757,16.6600045 L9.17164757,21.6415186 C9.17164757,21.6415186 16.7107355,15.5532485 21.1885083,15.6293508 C29.8949298,15.7773317 35.093729,23.1875098 35.093729,23.1875098 C35.093729,23.1875098 39.3109893,15.6293508 48.8272918,15.6293508 C62.8997988,15.6293508 64.9642149,28.5125858 64.9642149,28.5125858 L64.9642149,57.3710273 L56.5524108,57.3710273 L56.5524108,31.9481087 C56.5524108,31.9481087 56.5825922,24.2181741 47.4539323,24.2181741 C38.0139747,24.2181741 37.1537629,31.9481087 37.1537629,31.9481087 L37.1537629,57.3710273 L28.3986215,57.3710273 L28.3986215,31.7763331 C28.3986215,31.7763331 27.5575496,23.7028366 19.6434834,23.7028366 C9.3650113,23.7028366 9.17164757,31.9481087 9.17164757,31.9481087 L9.34331724,57.5428029 L9.34331724,57.5428029 Z" id="path3006"></path>
14
+ <path d="M275.596898,15.623773 C271.119122,15.5476814 263.580741,21.6355967 263.580741,21.6355967 L263.580741,16.6649268 L254.988182,16.6649268 L254.988182,57.5386115 L263.748565,57.5386115 L263.580741,31.9463783 C263.580741,31.9463783 263.77445,23.7179044 274.052923,23.7179044 C275.961824,23.7179044 277.444363,24.180569 278.61772,24.8934007 L278.61772,24.8598688 L281.470718,16.9000798 C279.749092,16.1750176 277.791223,15.6610664 275.596898,15.623773 L275.596898,15.623773 L275.596898,15.623773 Z" id="path3008"></path>
15
+ <path d="M398.92774,15.623773 C394.449964,15.5476814 386.911582,21.6355967 386.911582,21.6355967 L386.911582,16.6649268 L378.319023,16.6649268 L378.319023,57.5386115 L387.079406,57.5386115 L386.911582,31.9463783 C386.911582,31.9463783 387.105291,23.7179044 397.383764,23.7179044 C399.292666,23.7179044 400.775204,24.180569 401.948561,24.8934007 L401.948561,24.8598688 L404.801559,16.9000798 C403.079933,16.1750713 401.122064,15.6611201 398.92774,15.6238267 L398.92774,15.623773 L398.92774,15.623773 Z" id="path3013"></path>
16
+ <path d="M93.2735295,15.4558449 C80.1708646,15.4558449 73.2368626,27.2396859 73.2018479,37.0849763 C73.1658666,47.1762746 81.0955959,58.8148646 93.6427411,58.8148646 C100.962678,58.8148646 106.976041,53.4075817 106.976041,53.4075817 L106.960145,57.5721971 L115.577998,57.5721971 L115.577998,16.6488272 L106.929792,16.6488272 L106.929792,21.8035248 C106.929792,21.8035248 101.282654,15.4558449 93.2735725,15.4558449 L93.2735295,15.4558449 L93.2735295,15.4558449 Z M94.9517638,23.7850756 C101.991433,23.7850756 107.706344,29.9122942 107.706344,37.454418 C107.706344,44.9965418 101.991433,51.0901748 94.9517638,51.0901748 C87.9120947,51.0901748 82.2307482,44.9965418 82.2307482,37.454418 C82.2307482,29.9122942 87.9120947,23.7850756 94.9517638,23.7850756 L94.9517638,23.7850756 L94.9517638,23.7850756 Z" id="path3015"></path>
17
+ <path d="M344.597578,15.4558449 C331.494913,15.4558449 324.560911,27.2396859 324.525896,37.0849763 C324.489915,47.1762746 332.419644,58.8148646 344.966789,58.8148646 C352.286726,58.8148646 358.300089,53.4075817 358.300089,53.4075817 L358.284193,57.5721971 L366.902046,57.5721971 L366.902046,16.6488272 L358.25384,16.6488272 L358.25384,21.8035248 C358.25384,21.8035248 352.606702,15.4558449 344.59762,15.4558449 L344.597578,15.4558449 L344.597578,15.4558449 Z M346.275812,23.7850756 C353.315481,23.7850756 359.030392,29.9122942 359.030392,37.454418 C359.030392,44.9965418 353.315481,51.0901748 346.275812,51.0901748 C339.236143,51.0901748 333.554796,44.9965418 333.554796,37.454418 C333.554796,29.9122942 339.236143,23.7850756 346.275812,23.7850756 L346.275812,23.7850756 L346.275812,23.7850756 Z" id="path3020"></path>
18
+ <path d="M427.342249,15.4558449 C414.239584,15.4558449 407.305582,27.2396859 407.270567,37.0849763 C407.234586,47.1762746 415.164315,58.8148646 427.71146,58.8148646 C435.031397,58.8148646 441.04476,53.4075817 441.04476,53.4075817 L441.028864,57.5721971 L449.646718,57.5721971 L449.646718,0.49407462 L440.998511,0.49407462 L440.998511,21.8035248 C440.998511,21.8035248 435.351373,15.4558449 427.342292,15.4558449 L427.342249,15.4558449 L427.342249,15.4558449 Z M429.020483,23.7850756 C436.060152,23.7850756 441.775063,29.9122942 441.775063,37.454418 C441.775063,44.9965418 436.060152,51.0901748 429.020483,51.0901748 C421.980814,51.0901748 416.299467,44.9965418 416.299467,37.454418 C416.299467,29.9122942 421.980814,23.7850756 429.020483,23.7850756 L429.020483,23.7850756 L429.020483,23.7850756 Z" id="path3022"></path>
19
+ <path d="M141.872122,58.9170078 C132.94558,58.9170078 124.705176,53.4201669 124.705176,53.4201669 L128.481907,47.5797641 C128.481907,47.5797641 136.278978,51.1870733 141.872122,51.1870733 C145.50613,51.1870733 151.583937,50.0128667 151.657274,46.3773348 C151.734822,42.5349478 141.442945,41.39581 141.442945,41.39581 C141.442945,41.39581 126.078536,41.1860853 126.078536,28.5125858 C126.078536,20.5421246 133.751938,15.4575752 143.588818,15.4575752 C149.272667,15.4575752 159.89741,20.4390893 159.89741,20.4390893 L155.605674,27.1383702 C155.605674,27.1383702 147.402218,23.858921 143.073802,23.7028366 C139.418806,23.5710413 135.005346,25.3221465 135.005346,28.5125858 C135.005346,37.1806926 160.584084,27.837198 160.584084,45.3466704 C160.584084,56.8338188 150.166691,58.9170078 141.872122,58.9170078 L141.872122,58.9170078 L141.872122,58.9170078 Z" id="path3024"></path>
20
+ <path d="M174.802149,4.80920724 L174.802149,16.6985124 L167.182966,16.6985124 L167.182966,25.296428 L174.802149,25.296428 L174.802149,45.85082 C174.802149,45.85082 174.127827,59.7552616 189.067141,59.7552616 C193.19753,59.7552616 201.284686,56.6989713 201.284686,56.6989713 L197.827523,47.7651996 C197.827523,47.7651996 194.611468,50.5102454 190.980328,50.4184626 C184.076195,50.2440217 184.267391,45.8172343 184.267391,45.8172343 L184.267391,25.296428 L198.498817,25.296428 L198.498817,16.6985124 L184.267391,16.6985124 L184.267391,4.80920724 L174.802149,4.80920724 L174.802149,4.80920724 L174.802149,4.80920724 Z" id="path3026"></path>
21
+ <path d="M226.659588,15.959629 C212.610087,15.959629 205.590417,27.5389793 205.648095,37.5887604 C205.707384,47.9238419 212.040304,59.5537479 227.498705,59.5537479 C234.115072,59.5537479 243.408366,53.7434378 243.408366,53.7434378 L239.414168,46.791217 C239.414168,46.791217 233.072548,51.2916884 227.498705,51.2916884 C216.339172,51.2916884 215.616806,40.3763659 215.616806,40.3763659 L245.489376,40.3763659 C245.489376,40.3763659 247.717985,15.959629 226.659588,15.959629 L226.659588,15.959629 L226.659588,15.959629 Z M225.38413,23.9865893 C225.715416,23.9677813 226.070568,23.9865893 226.424635,23.9865893 C236.937954,23.9865893 236.863252,33.9279292 236.863252,33.9279292 L215.616806,33.9279292 C215.616806,33.9279292 215.114206,24.5707962 225.38413,23.9865893 L225.38413,23.9865893 L225.38413,23.9865893 Z" id="path3034"></path>
22
+ <path d="M315.5162,46.686 L319.52203,54.7026427 C319.52203,54.7026427 313.17302,58.8324258 306.047898,58.8324258 C291.296557,58.8324258 283.105442,47.7234997 283.105442,37.2117848 C283.105442,20.6912339 296.140698,15.8340672 304.955397,15.8340672 C312.956369,15.8340672 319.886193,20.4497077 319.886193,20.4497077 L315.394819,28.4663505 C315.394819,28.4663505 312.671859,24.2151004 304.712614,24.2151004 C296.766655,24.2151004 292.573755,31.0702185 292.573755,37.5761752 C292.573755,44.8669927 297.454114,51.0587064 304.834005,51.0587064 C310.623393,51.0587064 315.5162,46.686 315.5162,46.686 L315.5162,46.686 L315.5162,46.686 Z" id="path3037"></path>
23
+ </g>
24
+ <path d="M498.787985,236.781279 L498.787985,231.260623 L497.347484,231.260623 L495.690436,235.057252 L494.033388,231.260623 L492.592886,231.260623 L492.592886,236.781279 L493.609711,236.781279 L493.609711,232.617235 L495.163193,236.206603 L496.217678,236.206603 L497.771161,232.607814 L497.771161,236.781279 L498.787985,236.781279 L498.787985,236.781279 Z M489.664807,236.781279 L489.664807,232.202715 L491.510156,232.202715 L491.510156,231.270044 L486.812049,231.270044 L486.812049,232.202715 L488.657397,232.202715 L488.657397,236.781279 L489.664807,236.781279 L489.664807,236.781279 Z" id="path3057" fill="#F79F1A"></path>
25
+ <path d="M499.076678,154.709802 C499.076678,240.135159 429.999707,309.386105 344.788929,309.386105 C259.578151,309.386105 190.501159,240.135159 190.501159,154.709802 C190.501159,69.2844326 259.578151,0.0334920174 344.788929,0.0334920174 C429.999707,0.0334920174 499.076678,69.2844326 499.076678,154.709802 L499.076678,154.709802 L499.076678,154.709802 Z" id="path2997" fill="#F79F1A"></path>
26
+ <path d="M308.73932,154.709802 C308.73932,240.135159 239.662349,309.386105 154.451571,309.386105 C69.2407931,309.386105 0.163801275,240.135159 0.163801275,154.709802 C0.163801275,69.2844326 69.2407931,0.0334920174 154.451571,0.0334920174 C239.662349,0.0334920174 308.73932,69.2844326 308.73932,154.709802 L308.73932,154.709802 L308.73932,154.709802 Z" id="path2995" fill="#EA001B"></path>
27
+ <path d="M249.620562,32.9474812 C213.621326,61.2636823 190.513152,105.265345 190.513152,154.695309 C190.513152,204.125274 213.621326,248.16052 249.620562,276.476723 C285.619799,248.16052 308.727973,204.125274 308.727973,154.695309 C308.727973,105.265345 285.619799,61.2636823 249.620562,32.9474812 L249.620562,32.9474812 L249.620562,32.9474812 Z" id="path2999" fill="#FF5F01"></path>
28
+ </g>
29
+ </g>
30
+ </g>
31
+ </svg>
assets/images/multibanco.svg CHANGED
@@ -1 +1 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 885.86"><defs><style>.cls-1{fill:#2c6cae;}.cls-2{fill:#434142;}</style></defs><title>multibanco</title><g id="g14"><g id="g20"><path id="path22" class="cls-1" d="M371.16,713.9H678.27c70.13,0,70.83-74.54,63.69-111.34-3.91-24.73-45.93-24.52-50.56,0v28.72a23.93,23.93,0,0,1-23.86,23.85H78.74a23.92,23.92,0,0,1-23.85-23.85V602.56c-4.63-24.52-46.66-24.73-50.56,0C-2.81,639.36-2.12,713.9,68,713.9H371.16ZM154,0H627.58c33.27,0,60.49,28.8,60.49,64v30.6c0,43.25-58.6,43.08-58.6.29V78.19a19.38,19.38,0,0,0-19.33-19.33H135.64a19.39,19.39,0,0,0-19.33,19.33V94.56c0,43-55.84,42.71-55.84.93V64C60.47,28.8,87.69,0,121,0Z"/></g><g id="g24"><path id="path26" class="cls-2" d="M676.12,351.66c32.8,15.43,55.44,47.28,55.44,83.84,0,51.56-45,93.74-100,93.74H477.31c-14.42,0-26.23-11.06-26.23-24.57V211.27a25.83,25.83,0,0,1,25.77-25.74H605.29c54.07,0,98.31,44.19,98.31,98.2a97.81,97.81,0,0,1-27.48,67.93M561,327.77h49v-.55a46.72,46.72,0,0,0,39.51-46h0a46.69,46.69,0,0,0-46.56-46.56H504.31V478.11H629.37a48.09,48.09,0,1,0,0-96.17H610v-.12H561a27,27,0,1,1,0-54.05"/></g><g id="g28"><path id="path30" class="cls-2" d="M173.61,804a8.27,8.27,0,0,1,16.54,0V848.7h0A37.18,37.18,0,0,1,153,885.82v0h0v0a37.18,37.18,0,0,1-37.11-37.1h0V804a8.27,8.27,0,0,1,16.54,0v44.75h0A20.74,20.74,0,0,0,153,869.34v0h0v0a20.74,20.74,0,0,0,20.63-20.63h0Z"/></g><g id="g32"><path id="path34" class="cls-2" d="M251.76,869.32a8.27,8.27,0,1,1,0,16.54H228.93v0a31.1,31.1,0,0,1-31.06-31h0V804a8.27,8.27,0,1,1,16.53,0v50.81h0a14.68,14.68,0,0,0,14.59,14.57v0h22.83Z"/></g><g id="g36"><path id="path38" class="cls-2" d="M426.58,499.94A30.94,30.94,0,1,1,365,506.47L339.68,273.14,249.87,501.29l-.1.22v0h0l-.25.6-.2.47,0,.12-.21.47-.14.29-.21.45-.1.2-.24.47-.09.17A30.7,30.7,0,0,1,242,513l-.1.08-.46.42a30.54,30.54,0,0,1-5.35,3.79l-.13.08-.59.31,0,0-.54.28-.25.12-.35.17-.37.17-.33.15-.38.17-.33.14-.32.13-.29.11-.16.07-.26.09-.41.16-.24.08a31,31,0,0,1-9.07,1.71H219.8a30.84,30.84,0,0,1-10.13-2.11l-.41-.16-.11,0-.41-.17-.4-.17-.33-.16-.34-.16-.37-.17-.22-.11-.56-.29-.06,0-.48-.27-.27-.14a31.08,31.08,0,0,1-4.73-3.28l-.12-.11c-.35-.3-.69-.59-1-.9l0,0-.77-.75c-.25-.25-.51-.51-.75-.77l0,0c-.31-.34-.61-.67-.91-1l-.1-.11a30.86,30.86,0,0,1-3.28-4.73l-.15-.27-.27-.49,0-.06-.29-.55-.11-.22-.17-.37-.17-.35-.14-.32-.18-.4-.18-.41,0-.11-.17-.41L102.19,273.14,76.84,506.47a30.95,30.95,0,1,1-61.55-6.53l29.9-275.09v-.19h0a51.5,51.5,0,0,1,44.21-45.19l.06,0c.56-.07,1.13-.13,1.69-.18A52.51,52.51,0,0,1,99,179h.12a52.66,52.66,0,0,1,9.36,1.25,50.81,50.81,0,0,1,36,31.09l76.53,194.38,76.52-194.38a50.82,50.82,0,0,1,36-31.09,52.41,52.41,0,0,1,9.36-1.25h.12a52.64,52.64,0,0,1,7.82.23c.56.05,1.11.11,1.67.18l.06,0a51.29,51.29,0,0,1,38.45,26.71,52.13,52.13,0,0,1,3.76,9,50.73,50.73,0,0,1,2,9.52h0v.11l0,.08Z"/></g><g id="g40"><path id="path42" class="cls-2" d="M112.77,876.62a8.26,8.26,0,1,1-16.41,1.93L89.27,819,64,877.59a8.25,8.25,0,0,1-15.17,0h0L23.56,819l-7.09,59.55A8.26,8.26,0,1,1,.06,876.62l8.22-69.15a13.27,13.27,0,0,1,7.23-10.26,15.48,15.48,0,0,1,1.61-.72l.64-.22a15.27,15.27,0,0,1,2.43-.53h.14a14.26,14.26,0,0,1,11.55,3.65,13.58,13.58,0,0,1,2.65,3.49,6.58,6.58,0,0,1,.46.92l21.42,49.67,21.42-49.67A13.61,13.61,0,0,1,87.5,796a14.94,14.94,0,0,1,2.43-.34,15.56,15.56,0,0,1,1.81,0h.05l.61.05h.07v0h0a13.92,13.92,0,0,1,10.29,6.61h0a13.21,13.21,0,0,1,1.09,2.35,12.07,12.07,0,0,1,.45,1.62,8,8,0,0,1,.2,1.09v.07Z"/></g><g id="g44"><path id="path46" class="cls-2" d="M287.89,877.59a8.27,8.27,0,0,1-16.53,0V812.25H247.82a8.28,8.28,0,0,1,0-16.55h63.6a8.28,8.28,0,0,1,0,16.55H287.89Z"/></g><g id="g48"><path id="path50" class="cls-2" d="M339.47,877.59a8.27,8.27,0,0,1-16.53,0V804a8.27,8.27,0,1,1,16.53,0Z"/></g><g id="g52"><path id="path54" class="cls-2" d="M509.12,876.58a8.27,8.27,0,1,1-16.41,2l-2.91-23.35H461.14a8.27,8.27,0,1,1,0-16.54h26.6l-.75-6.07,0-.06c0-.2,0-.39,0-.58a32,32,0,0,0-1-4.23,27.7,27.7,0,0,0-1.7-4.36c-3.28-6.55-9.22-11.15-16.72-11.15h-.08v0a17.81,17.81,0,0,0-4.16.5,16.85,16.85,0,0,0-3.7,1.39c-6.34,3.23-10.59,10.29-11.5,18.42l-5.18,46a8.25,8.25,0,1,1-16.41-1.81l5.17-46c1.53-13.57,9.06-25.57,20.44-31.36a33.28,33.28,0,0,1,7.3-2.67,34.45,34.45,0,0,1,8-1v0h.08c14.33,0,25.47,8.38,31.45,20.33a43.78,43.78,0,0,1,2.8,7,46.75,46.75,0,0,1,1.45,6.73,6.69,6.69,0,0,1,.14.78v.06Z"/></g><g id="g56"><path id="path58" class="cls-2" d="M534.43,877.59a8.27,8.27,0,0,1-16.54,0V809.18a8,8,0,0,1,.12-1.4,11.29,11.29,0,0,1,.65-2.68v0h0a14.32,14.32,0,0,1,.68-1.48l0,0h0a11.64,11.64,0,0,1,6.46-5.43,9.65,9.65,0,0,1,1.14-.31c.29-.06.58-.13.88-.17h.06v0a13.17,13.17,0,0,1,2-.09h.22a11.61,11.61,0,0,1,8.74,4.48l44,56.13V804a8.27,8.27,0,1,1,16.54,0v68.08a11.62,11.62,0,0,1-4.31,9.05,12,12,0,0,1-1.69,1.15c-.33.18-.68.35-1,.5l-.09,0h0a6.91,6.91,0,0,1-.68.28h0l0,0a11.58,11.58,0,0,1-8.87-.5,7.13,7.13,0,0,1-1.06-.55,11.69,11.69,0,0,1-1.64-1.23,10.3,10.3,0,0,1-1-1.1l-.28-.32h0l-.1-.13-44-56.11Z"/></g><g id="g60"><path id="path62" class="cls-2" d="M663.6,869.32a8.27,8.27,0,1,1,0,16.54H639.22v0a32.66,32.66,0,0,1-32.59-32.58h0v-24.9h0a32.64,32.64,0,0,1,32.58-32.59v0H663.6a8.27,8.27,0,1,1,0,16.54H639.21v0a16.2,16.2,0,0,0-16.1,16.12h0v24.9h0a16.22,16.22,0,0,0,16.11,16.11v0H663.6Z"/></g><g id="g64"><path id="path66" class="cls-2" d="M711.45,812.21v0h0v0a22.56,22.56,0,0,0-15.65,6.25,20.3,20.3,0,0,0-6.39,14.61h0V848.5h0a20.3,20.3,0,0,0,6.38,14.59,22.62,22.62,0,0,0,15.67,6.26v0h0v0a22.53,22.53,0,0,0,15.65-6.26,20.23,20.23,0,0,0,6.38-14.6h0V833.06h0a20.22,20.22,0,0,0-6.37-14.59,22.58,22.58,0,0,0-15.67-6.26m0-16.51h0v0a39.1,39.1,0,0,1,27.1,10.84A36.7,36.7,0,0,1,750,833.06h0v15.42h0A36.7,36.7,0,0,1,738.55,875a39.07,39.07,0,0,1-27.09,10.84v0h0v0A39.12,39.12,0,0,1,684.32,875a36.73,36.73,0,0,1-11.41-26.48h0V833.08h0a36.66,36.66,0,0,1,11.43-26.49,39,39,0,0,1,27.08-10.84v0Z"/></g><g id="g68"><path id="path70" class="cls-2" d="M363,812.24v57.07h32v0a10.48,10.48,0,0,0,10.4-10.41h0v0h0a10.31,10.31,0,0,0-2.77-7l-.32-.31a10.33,10.33,0,0,0-7.32-3.09v0h-11a8.27,8.27,0,1,1,0-16.54h3.76a10,10,0,0,0,6.23-2.9h0a9.87,9.87,0,0,0,2.91-7h0v0h0a10,10,0,0,0-9.89-9.88v0H363Zm-16.53,28V804.33h0a8.34,8.34,0,0,1,.67-3.29A8.44,8.44,0,0,1,349,798.2l.1-.09h0a8.46,8.46,0,0,1,5.43-2.36,2.68,2.68,0,0,1,.49,0v0h31.9v0a26.41,26.41,0,0,1,26.37,26.35h0v0h0a26.28,26.28,0,0,1-4.06,14,27.37,27.37,0,0,1,4.69,3.75c.18.17.34.36.51.55a26.86,26.86,0,0,1,7.36,18.45h0v0h0a26.94,26.94,0,0,1-26.88,26.89v0H354.68a8.27,8.27,0,0,1-8.26-8.28Z"/></g></g></svg>
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 885.86" preserveAspectRatio="xMidYMid meet"><defs><style>.cls-1{fill:#2c6cae;}.cls-2{fill:#434142;}</style></defs><title>multibanco</title><g id="g14"><g id="g20"><path id="path22" class="cls-1" d="M371.16,713.9H678.27c70.13,0,70.83-74.54,63.69-111.34-3.91-24.73-45.93-24.52-50.56,0v28.72a23.93,23.93,0,0,1-23.86,23.85H78.74a23.92,23.92,0,0,1-23.85-23.85V602.56c-4.63-24.52-46.66-24.73-50.56,0C-2.81,639.36-2.12,713.9,68,713.9H371.16ZM154,0H627.58c33.27,0,60.49,28.8,60.49,64v30.6c0,43.25-58.6,43.08-58.6.29V78.19a19.38,19.38,0,0,0-19.33-19.33H135.64a19.39,19.39,0,0,0-19.33,19.33V94.56c0,43-55.84,42.71-55.84.93V64C60.47,28.8,87.69,0,121,0Z"/></g><g id="g24"><path id="path26" class="cls-2" d="M676.12,351.66c32.8,15.43,55.44,47.28,55.44,83.84,0,51.56-45,93.74-100,93.74H477.31c-14.42,0-26.23-11.06-26.23-24.57V211.27a25.83,25.83,0,0,1,25.77-25.74H605.29c54.07,0,98.31,44.19,98.31,98.2a97.81,97.81,0,0,1-27.48,67.93M561,327.77h49v-.55a46.72,46.72,0,0,0,39.51-46h0a46.69,46.69,0,0,0-46.56-46.56H504.31V478.11H629.37a48.09,48.09,0,1,0,0-96.17H610v-.12H561a27,27,0,1,1,0-54.05"/></g><g id="g28"><path id="path30" class="cls-2" d="M173.61,804a8.27,8.27,0,0,1,16.54,0V848.7h0A37.18,37.18,0,0,1,153,885.82v0h0v0a37.18,37.18,0,0,1-37.11-37.1h0V804a8.27,8.27,0,0,1,16.54,0v44.75h0A20.74,20.74,0,0,0,153,869.34v0h0v0a20.74,20.74,0,0,0,20.63-20.63h0Z"/></g><g id="g32"><path id="path34" class="cls-2" d="M251.76,869.32a8.27,8.27,0,1,1,0,16.54H228.93v0a31.1,31.1,0,0,1-31.06-31h0V804a8.27,8.27,0,1,1,16.53,0v50.81h0a14.68,14.68,0,0,0,14.59,14.57v0h22.83Z"/></g><g id="g36"><path id="path38" class="cls-2" d="M426.58,499.94A30.94,30.94,0,1,1,365,506.47L339.68,273.14,249.87,501.29l-.1.22v0h0l-.25.6-.2.47,0,.12-.21.47-.14.29-.21.45-.1.2-.24.47-.09.17A30.7,30.7,0,0,1,242,513l-.1.08-.46.42a30.54,30.54,0,0,1-5.35,3.79l-.13.08-.59.31,0,0-.54.28-.25.12-.35.17-.37.17-.33.15-.38.17-.33.14-.32.13-.29.11-.16.07-.26.09-.41.16-.24.08a31,31,0,0,1-9.07,1.71H219.8a30.84,30.84,0,0,1-10.13-2.11l-.41-.16-.11,0-.41-.17-.4-.17-.33-.16-.34-.16-.37-.17-.22-.11-.56-.29-.06,0-.48-.27-.27-.14a31.08,31.08,0,0,1-4.73-3.28l-.12-.11c-.35-.3-.69-.59-1-.9l0,0-.77-.75c-.25-.25-.51-.51-.75-.77l0,0c-.31-.34-.61-.67-.91-1l-.1-.11a30.86,30.86,0,0,1-3.28-4.73l-.15-.27-.27-.49,0-.06-.29-.55-.11-.22-.17-.37-.17-.35-.14-.32-.18-.4-.18-.41,0-.11-.17-.41L102.19,273.14,76.84,506.47a30.95,30.95,0,1,1-61.55-6.53l29.9-275.09v-.19h0a51.5,51.5,0,0,1,44.21-45.19l.06,0c.56-.07,1.13-.13,1.69-.18A52.51,52.51,0,0,1,99,179h.12a52.66,52.66,0,0,1,9.36,1.25,50.81,50.81,0,0,1,36,31.09l76.53,194.38,76.52-194.38a50.82,50.82,0,0,1,36-31.09,52.41,52.41,0,0,1,9.36-1.25h.12a52.64,52.64,0,0,1,7.82.23c.56.05,1.11.11,1.67.18l.06,0a51.29,51.29,0,0,1,38.45,26.71,52.13,52.13,0,0,1,3.76,9,50.73,50.73,0,0,1,2,9.52h0v.11l0,.08Z"/></g><g id="g40"><path id="path42" class="cls-2" d="M112.77,876.62a8.26,8.26,0,1,1-16.41,1.93L89.27,819,64,877.59a8.25,8.25,0,0,1-15.17,0h0L23.56,819l-7.09,59.55A8.26,8.26,0,1,1,.06,876.62l8.22-69.15a13.27,13.27,0,0,1,7.23-10.26,15.48,15.48,0,0,1,1.61-.72l.64-.22a15.27,15.27,0,0,1,2.43-.53h.14a14.26,14.26,0,0,1,11.55,3.65,13.58,13.58,0,0,1,2.65,3.49,6.58,6.58,0,0,1,.46.92l21.42,49.67,21.42-49.67A13.61,13.61,0,0,1,87.5,796a14.94,14.94,0,0,1,2.43-.34,15.56,15.56,0,0,1,1.81,0h.05l.61.05h.07v0h0a13.92,13.92,0,0,1,10.29,6.61h0a13.21,13.21,0,0,1,1.09,2.35,12.07,12.07,0,0,1,.45,1.62,8,8,0,0,1,.2,1.09v.07Z"/></g><g id="g44"><path id="path46" class="cls-2" d="M287.89,877.59a8.27,8.27,0,0,1-16.53,0V812.25H247.82a8.28,8.28,0,0,1,0-16.55h63.6a8.28,8.28,0,0,1,0,16.55H287.89Z"/></g><g id="g48"><path id="path50" class="cls-2" d="M339.47,877.59a8.27,8.27,0,0,1-16.53,0V804a8.27,8.27,0,1,1,16.53,0Z"/></g><g id="g52"><path id="path54" class="cls-2" d="M509.12,876.58a8.27,8.27,0,1,1-16.41,2l-2.91-23.35H461.14a8.27,8.27,0,1,1,0-16.54h26.6l-.75-6.07,0-.06c0-.2,0-.39,0-.58a32,32,0,0,0-1-4.23,27.7,27.7,0,0,0-1.7-4.36c-3.28-6.55-9.22-11.15-16.72-11.15h-.08v0a17.81,17.81,0,0,0-4.16.5,16.85,16.85,0,0,0-3.7,1.39c-6.34,3.23-10.59,10.29-11.5,18.42l-5.18,46a8.25,8.25,0,1,1-16.41-1.81l5.17-46c1.53-13.57,9.06-25.57,20.44-31.36a33.28,33.28,0,0,1,7.3-2.67,34.45,34.45,0,0,1,8-1v0h.08c14.33,0,25.47,8.38,31.45,20.33a43.78,43.78,0,0,1,2.8,7,46.75,46.75,0,0,1,1.45,6.73,6.69,6.69,0,0,1,.14.78v.06Z"/></g><g id="g56"><path id="path58" class="cls-2" d="M534.43,877.59a8.27,8.27,0,0,1-16.54,0V809.18a8,8,0,0,1,.12-1.4,11.29,11.29,0,0,1,.65-2.68v0h0a14.32,14.32,0,0,1,.68-1.48l0,0h0a11.64,11.64,0,0,1,6.46-5.43,9.65,9.65,0,0,1,1.14-.31c.29-.06.58-.13.88-.17h.06v0a13.17,13.17,0,0,1,2-.09h.22a11.61,11.61,0,0,1,8.74,4.48l44,56.13V804a8.27,8.27,0,1,1,16.54,0v68.08a11.62,11.62,0,0,1-4.31,9.05,12,12,0,0,1-1.69,1.15c-.33.18-.68.35-1,.5l-.09,0h0a6.91,6.91,0,0,1-.68.28h0l0,0a11.58,11.58,0,0,1-8.87-.5,7.13,7.13,0,0,1-1.06-.55,11.69,11.69,0,0,1-1.64-1.23,10.3,10.3,0,0,1-1-1.1l-.28-.32h0l-.1-.13-44-56.11Z"/></g><g id="g60"><path id="path62" class="cls-2" d="M663.6,869.32a8.27,8.27,0,1,1,0,16.54H639.22v0a32.66,32.66,0,0,1-32.59-32.58h0v-24.9h0a32.64,32.64,0,0,1,32.58-32.59v0H663.6a8.27,8.27,0,1,1,0,16.54H639.21v0a16.2,16.2,0,0,0-16.1,16.12h0v24.9h0a16.22,16.22,0,0,0,16.11,16.11v0H663.6Z"/></g><g id="g64"><path id="path66" class="cls-2" d="M711.45,812.21v0h0v0a22.56,22.56,0,0,0-15.65,6.25,20.3,20.3,0,0,0-6.39,14.61h0V848.5h0a20.3,20.3,0,0,0,6.38,14.59,22.62,22.62,0,0,0,15.67,6.26v0h0v0a22.53,22.53,0,0,0,15.65-6.26,20.23,20.23,0,0,0,6.38-14.6h0V833.06h0a20.22,20.22,0,0,0-6.37-14.59,22.58,22.58,0,0,0-15.67-6.26m0-16.51h0v0a39.1,39.1,0,0,1,27.1,10.84A36.7,36.7,0,0,1,750,833.06h0v15.42h0A36.7,36.7,0,0,1,738.55,875a39.07,39.07,0,0,1-27.09,10.84v0h0v0A39.12,39.12,0,0,1,684.32,875a36.73,36.73,0,0,1-11.41-26.48h0V833.08h0a36.66,36.66,0,0,1,11.43-26.49,39,39,0,0,1,27.08-10.84v0Z"/></g><g id="g68"><path id="path70" class="cls-2" d="M363,812.24v57.07h32v0a10.48,10.48,0,0,0,10.4-10.41h0v0h0a10.31,10.31,0,0,0-2.77-7l-.32-.31a10.33,10.33,0,0,0-7.32-3.09v0h-11a8.27,8.27,0,1,1,0-16.54h3.76a10,10,0,0,0,6.23-2.9h0a9.87,9.87,0,0,0,2.91-7h0v0h0a10,10,0,0,0-9.89-9.88v0H363Zm-16.53,28V804.33h0a8.34,8.34,0,0,1,.67-3.29A8.44,8.44,0,0,1,349,798.2l.1-.09h0a8.46,8.46,0,0,1,5.43-2.36,2.68,2.68,0,0,1,.49,0v0h31.9v0a26.41,26.41,0,0,1,26.37,26.35h0v0h0a26.28,26.28,0,0,1-4.06,14,27.37,27.37,0,0,1,4.69,3.75c.18.17.34.36.51.55a26.86,26.86,0,0,1,7.36,18.45h0v0h0a26.94,26.94,0,0,1-26.88,26.89v0H354.68a8.27,8.27,0,0,1-8.26-8.28Z"/></g></g></svg>
assets/images/p24.svg CHANGED
@@ -1 +1 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 256.89"><defs><style>.cls-1{fill:#ce4749;}.cls-2{fill:#afb2ba;}</style></defs><title>p24</title><path class="cls-1" d="M0,223.28,19,116.45H67.86c12,0,19.83,2.3,23.4,7s4.21,13.32,1.92,26.08c-2.17,12.18-5.94,20.54-11.29,25S67.54,181.12,55,181.12l-4.71.07H19.39l-7.46,42.09ZM21.3,171H49.87c11.93,0,19.84-1.21,23.6-3.7s6.5-8.1,8-16.9c1.84-10.33,1.84-16.83.06-19.58s-6.95-4.08-15.43-4.08l-4.6-.06H29.15Z"/><path class="cls-1" d="M104,148.47h11l-2.62,8.61.19.25c5.62-7,13.33-10.58,23.35-10.58q20.66,0,16.9,21.3l-1,5.16H140.94l.58-1.85c.51-2,.83-3.31.95-4,1.34-7.66-2.1-11.48-10.45-11.48-12.19,0-19.65,7.52-22.33,22.64l-8,44.83h-11Z"/><path class="cls-1" d="M162.31,148.47h53.95l-1.91,10.65L160,214.22h44.64L203,223.28H145.28l1.85-10.4,54.59-55.35h-41Z"/><path class="cls-1" d="M270.15,200.64h11.23l-.39,2.74c-1.4,7.78-4.71,13.2-10,16.33s-13.84,4.65-25.7,4.65c-13.77,0-22.38-2.49-25.76-7.52s-3.7-15.63-.83-31.76c2.67-14.93,6.57-24.94,11.86-30s14.16-7.65,26.78-7.65c13.78,0,22.39,2.23,25.9,6.63s3.95,13.77,1.46,28l-1,5.86H229.85c-2.11,11.8-2.17,19.33-.19,22.52s7.58,4.84,16.83,4.84q13.2,0,17.6-2.29t5.74-9.95Zm3.77-21.24.57-3.51c1.47-8.1,1-13.33-1.21-15.75s-7.78-3.63-16.58-3.63-14.86,1.4-18,4.27-5.55,9.05-7.27,18.68h42.54Z"/><path class="cls-1" d="M320.15,116.45l-19,106.83h-11l19-106.83Z"/><path class="cls-1" d="M372.13,200.64h11.22l-.38,2.74c-1.4,7.78-4.72,13.2-10,16.33s-13.84,4.65-25.7,4.65c-13.78,0-22.39-2.49-25.77-7.52s-3.7-15.63-.83-31.76c2.68-14.93,6.57-24.94,11.87-30s14.15-7.65,26.78-7.65c13.78,0,22.39,2.23,25.89,6.63s4,13.77,1.47,28l-1,5.86H331.82c-2.1,11.8-2.16,19.33-.19,22.52s7.59,4.84,16.84,4.84q13.2,0,17.6-2.29t5.74-9.95Zm3.76-21.24.58-3.51c1.46-8.1,1-13.33-1.21-15.75s-7.79-3.63-16.59-3.63-14.86,1.4-18,4.27-5.55,9.05-7.28,18.68h42.54Z"/><path class="cls-1" d="M501.34,148.47l-34.25,74.81H450.83l-2.62-41.58L447.39,169l-.26-6.32-.38-6.31h-.26l-2.61,6.31L441.26,169,436,181.7l-17.48,41.58H401.91l-7-74.81h11.48l3.19,41.39,1,13,.38,6.5.38,6.51h.32l2.62-6.51,2.74-6.5,5.42-13,17.6-41.45H456l2.81,41.58.83,12.95.32,6.44.32,6.5h.25l2.81-6.5,2.74-6.51,5.61-13,17.86-41.39h11.8Z"/><path class="cls-1" d="M556.51,148.47l-14.35,33.35L535,198.41l-3.44,8.35-3.51,8.29h-.32l-1.4-8.29L525,198.41l-2.87-16.59-5.61-33.35H504.85l15,81.31-1.72,3.7c-4.6,9.89-9.89,14.67-15.69,14.35a25.34,25.34,0,0,1-3.77-.57l-1.59,9.05a28.78,28.78,0,0,0,5.17.58c6.76,0,12.3-2.11,16.64-6.25s9.06-11.86,14-23l35.27-79.14Z"/><path class="cls-2" d="M638.33,213.78l-1.79,10.07H561.42l3.5-20q3-16.74,10.27-21.94c4.91-3.44,15.5-6.12,31.89-8q19.6-2.21,24.3-5.93c3.12-2.49,5.61-8.93,7.4-19.33,1.59-9.12,1.14-15.05-1.34-17.73s-8.8-4.08-18.82-4.08c-12.56,0-20.66,1.09-24.3,3.32s-6.25,7.46-7.71,15.88L585.4,154H573.85l1-5.49c2.23-12.69,6.38-21.11,12.37-25.32s17-6.31,32.79-6.31c14,0,23.08,2.3,27.16,6.82s4.91,13.46,2.55,26.6q-3.35,19-11.22,25.45t-30.93,8.67c-13.46,1.34-21.68,3.19-24.68,5.61s-5.42,9.12-7.4,20.28l-.64,3.57h63.46Z"/><path class="cls-2" d="M737.24,117.92l-12.56,71.43h15.56l-1.78,10.08H722.9l-4.34,24.42h-11.8l4.34-24.42H652.68l2.49-14L719,117.92Zm-24.36,71.43,11.23-63.71h-.26l-59.69,63.71Z"/><path class="cls-2" d="M248.09,84.06a386.38,386.38,0,0,1,73.08-33l-4.72-26.4a516.15,516.15,0,0,0-94,40Z"/><path class="cls-2" d="M538.07,69.71l90.31-49.24C590.94,8.74,543.43.32,483.67,0h-.57L462.44,41.33A254.28,254.28,0,0,1,538.07,69.71Z"/><path class="cls-2" d="M199.49,78.19c-39.67,24.68-60.46,45.6-60.46,45.6h50.26c12.24-9.5,24.29-18.05,36.09-25.77Z"/><path class="cls-2" d="M453.89.57A547.1,547.1,0,0,0,336.42,18.88l3.44,26.78c37.88-9.82,72-11.16,101.72-7.65Z"/><path class="cls-2" d="M676.47,39.6l-117,43.82A148.64,148.64,0,0,1,576,96.94H750S730.29,66.39,676.47,39.6Z"/></svg>
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 256.89" preserveAspectRatio="xMidYMid meet"><defs><style>.cls-1{fill:#ce4749;}.cls-2{fill:#afb2ba;}</style></defs><title>p24</title><path class="cls-1" d="M0,223.28,19,116.45H67.86c12,0,19.83,2.3,23.4,7s4.21,13.32,1.92,26.08c-2.17,12.18-5.94,20.54-11.29,25S67.54,181.12,55,181.12l-4.71.07H19.39l-7.46,42.09ZM21.3,171H49.87c11.93,0,19.84-1.21,23.6-3.7s6.5-8.1,8-16.9c1.84-10.33,1.84-16.83.06-19.58s-6.95-4.08-15.43-4.08l-4.6-.06H29.15Z"/><path class="cls-1" d="M104,148.47h11l-2.62,8.61.19.25c5.62-7,13.33-10.58,23.35-10.58q20.66,0,16.9,21.3l-1,5.16H140.94l.58-1.85c.51-2,.83-3.31.95-4,1.34-7.66-2.1-11.48-10.45-11.48-12.19,0-19.65,7.52-22.33,22.64l-8,44.83h-11Z"/><path class="cls-1" d="M162.31,148.47h53.95l-1.91,10.65L160,214.22h44.64L203,223.28H145.28l1.85-10.4,54.59-55.35h-41Z"/><path class="cls-1" d="M270.15,200.64h11.23l-.39,2.74c-1.4,7.78-4.71,13.2-10,16.33s-13.84,4.65-25.7,4.65c-13.77,0-22.38-2.49-25.76-7.52s-3.7-15.63-.83-31.76c2.67-14.93,6.57-24.94,11.86-30s14.16-7.65,26.78-7.65c13.78,0,22.39,2.23,25.9,6.63s3.95,13.77,1.46,28l-1,5.86H229.85c-2.11,11.8-2.17,19.33-.19,22.52s7.58,4.84,16.83,4.84q13.2,0,17.6-2.29t5.74-9.95Zm3.77-21.24.57-3.51c1.47-8.1,1-13.33-1.21-15.75s-7.78-3.63-16.58-3.63-14.86,1.4-18,4.27-5.55,9.05-7.27,18.68h42.54Z"/><path class="cls-1" d="M320.15,116.45l-19,106.83h-11l19-106.83Z"/><path class="cls-1" d="M372.13,200.64h11.22l-.38,2.74c-1.4,7.78-4.72,13.2-10,16.33s-13.84,4.65-25.7,4.65c-13.78,0-22.39-2.49-25.77-7.52s-3.7-15.63-.83-31.76c2.68-14.93,6.57-24.94,11.87-30s14.15-7.65,26.78-7.65c13.78,0,22.39,2.23,25.89,6.63s4,13.77,1.47,28l-1,5.86H331.82c-2.1,11.8-2.16,19.33-.19,22.52s7.59,4.84,16.84,4.84q13.2,0,17.6-2.29t5.74-9.95Zm3.76-21.24.58-3.51c1.46-8.1,1-13.33-1.21-15.75s-7.79-3.63-16.59-3.63-14.86,1.4-18,4.27-5.55,9.05-7.28,18.68h42.54Z"/><path class="cls-1" d="M501.34,148.47l-34.25,74.81H450.83l-2.62-41.58L447.39,169l-.26-6.32-.38-6.31h-.26l-2.61,6.31L441.26,169,436,181.7l-17.48,41.58H401.91l-7-74.81h11.48l3.19,41.39,1,13,.38,6.5.38,6.51h.32l2.62-6.51,2.74-6.5,5.42-13,17.6-41.45H456l2.81,41.58.83,12.95.32,6.44.32,6.5h.25l2.81-6.5,2.74-6.51,5.61-13,17.86-41.39h11.8Z"/><path class="cls-1" d="M556.51,148.47l-14.35,33.35L535,198.41l-3.44,8.35-3.51,8.29h-.32l-1.4-8.29L525,198.41l-2.87-16.59-5.61-33.35H504.85l15,81.31-1.72,3.7c-4.6,9.89-9.89,14.67-15.69,14.35a25.34,25.34,0,0,1-3.77-.57l-1.59,9.05a28.78,28.78,0,0,0,5.17.58c6.76,0,12.3-2.11,16.64-6.25s9.06-11.86,14-23l35.27-79.14Z"/><path class="cls-2" d="M638.33,213.78l-1.79,10.07H561.42l3.5-20q3-16.74,10.27-21.94c4.91-3.44,15.5-6.12,31.89-8q19.6-2.21,24.3-5.93c3.12-2.49,5.61-8.93,7.4-19.33,1.59-9.12,1.14-15.05-1.34-17.73s-8.8-4.08-18.82-4.08c-12.56,0-20.66,1.09-24.3,3.32s-6.25,7.46-7.71,15.88L585.4,154H573.85l1-5.49c2.23-12.69,6.38-21.11,12.37-25.32s17-6.31,32.79-6.31c14,0,23.08,2.3,27.16,6.82s4.91,13.46,2.55,26.6q-3.35,19-11.22,25.45t-30.93,8.67c-13.46,1.34-21.68,3.19-24.68,5.61s-5.42,9.12-7.4,20.28l-.64,3.57h63.46Z"/><path class="cls-2" d="M737.24,117.92l-12.56,71.43h15.56l-1.78,10.08H722.9l-4.34,24.42h-11.8l4.34-24.42H652.68l2.49-14L719,117.92Zm-24.36,71.43,11.23-63.71h-.26l-59.69,63.71Z"/><path class="cls-2" d="M248.09,84.06a386.38,386.38,0,0,1,73.08-33l-4.72-26.4a516.15,516.15,0,0,0-94,40Z"/><path class="cls-2" d="M538.07,69.71l90.31-49.24C590.94,8.74,543.43.32,483.67,0h-.57L462.44,41.33A254.28,254.28,0,0,1,538.07,69.71Z"/><path class="cls-2" d="M199.49,78.19c-39.67,24.68-60.46,45.6-60.46,45.6h50.26c12.24-9.5,24.29-18.05,36.09-25.77Z"/><path class="cls-2" d="M453.89.57A547.1,547.1,0,0,0,336.42,18.88l3.44,26.78c37.88-9.82,72-11.16,101.72-7.65Z"/><path class="cls-2" d="M676.47,39.6l-117,43.82A148.64,148.64,0,0,1,576,96.94H750S730.29,66.39,676.47,39.6Z"/></svg>
assets/images/sepa.svg CHANGED
@@ -1 +1 @@
1
- <svg id="svg10908" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 313.32"><defs><style>.cls-1{fill:#10298e;}.cls-2{fill:#ffbe00;}</style></defs><title>sepa</title><path id="path5457" class="cls-1" d="M.88,305.47v-26.7H20.67v4.52H6.27v5.92h13.4v4.5H6.27V301H21.19v4.5Z"/><path id="path5459" class="cls-1" d="M26,278.77H31.1v4.74H26Zm0,7.36H31.1v19.34H26Z"/><path id="path5471" class="cls-1" d="M54.2,305.47H49.08V295.6a15.11,15.11,0,0,0-.33-4.05,2.87,2.87,0,0,0-1.06-1.43,3.08,3.08,0,0,0-1.78-.51,4.09,4.09,0,0,0-2.39.73,3.6,3.6,0,0,0-1.44,1.93,16.29,16.29,0,0,0-.39,4.44v8.76H36.57V286.13h4.75V289a7.75,7.75,0,0,1,6.38-3.27,7.64,7.64,0,0,1,3.09.61,5.09,5.09,0,0,1,2.12,1.55,5.52,5.52,0,0,1,1,2.15,15.77,15.77,0,0,1,.29,3.44Z"/><path id="path5475" class="cls-1" d="M64.75,278.77v9.82a7.64,7.64,0,0,1,9.1-2.24A5.29,5.29,0,0,1,76,288a6,6,0,0,1,1,2.26,19.84,19.84,0,0,1,.27,3.85v11.34H72.12V295.26a15,15,0,0,0-.29-3.87,2.58,2.58,0,0,0-1-1.3,3.33,3.33,0,0,0-1.85-.48,4.22,4.22,0,0,0-2.27.62,3.55,3.55,0,0,0-1.47,1.86,11.23,11.23,0,0,0-.46,3.69v9.69H59.63v-26.7Z"/><path id="path5479" class="cls-1" d="M93.89,299.32l5.1.85a8.36,8.36,0,0,1-3.1,4.27,9.13,9.13,0,0,1-5.31,1.47q-5.06,0-7.47-3.3A11,11,0,0,1,81.2,296c0-3.21.83-5.72,2.51-7.53a8.27,8.27,0,0,1,6.36-2.73,8.6,8.6,0,0,1,6.81,2.85c1.66,1.91,2.46,4.81,2.38,8.74H86.44a5.21,5.21,0,0,0,1.24,3.54,3.89,3.89,0,0,0,2.95,1.26,3.1,3.1,0,0,0,2-.65,4,4,0,0,0,1.24-2.11m.29-5.18A5,5,0,0,0,93,290.77a3.69,3.69,0,0,0-5.43.06,4.72,4.72,0,0,0-1.08,3.31Z"/><path id="path5481" class="cls-1" d="M103.69,278.77h5.12v4.74h-5.12Zm0,7.36h5.12v19.34h-5.12Z"/><path id="path5485" class="cls-1" d="M123.19,286.13v4.08h-3.5V298a18.68,18.68,0,0,0,.1,2.75l.46.65.86.26a6.6,6.6,0,0,0,2.06-.5l.44,4a10.37,10.37,0,0,1-4,.76,6.21,6.21,0,0,1-2.49-.47,3.54,3.54,0,0,1-1.63-1.2,4.6,4.6,0,0,1-.72-2,24.9,24.9,0,0,1-.16-3.61v-8.43H112.2v-4.08h2.36v-3.84l5.13-3v6.83Z"/><path id="path5487" class="cls-1" d="M127,278.77h5.12v26.7H127Z"/><path id="path5489" class="cls-1" d="M137.63,278.77h5.11v4.74h-5.11Zm0,7.36h5.11v19.34h-5.11Z"/><path id="path5493" class="cls-1" d="M165.11,291.85l-5,.91a3.75,3.75,0,0,0-1.16-2.28,3.54,3.54,0,0,0-2.34-.76,3.82,3.82,0,0,0-3,1.32c-.76.88-1.14,2.35-1.14,4.42q0,3.44,1.16,4.86a3.78,3.78,0,0,0,3.1,1.42,3.46,3.46,0,0,0,2.39-.83,4.93,4.93,0,0,0,1.31-2.85l5,.85a8.92,8.92,0,0,1-3,5.23,9.29,9.29,0,0,1-6,1.77,8.88,8.88,0,0,1-6.77-2.68,10.37,10.37,0,0,1-2.52-7.41q0-4.79,2.53-7.46a9,9,0,0,1,6.85-2.67,9.35,9.35,0,0,1,5.61,1.52,8.36,8.36,0,0,1,3,4.64"/><path id="path5497" class="cls-1" d="M174.35,278.77v9.82a7.66,7.66,0,0,1,9.11-2.24A5.43,5.43,0,0,1,185.6,288a6.17,6.17,0,0,1,1,2.26,20.89,20.89,0,0,1,.26,3.85v11.34h-5.11V295.26a15.46,15.46,0,0,0-.29-3.87,2.63,2.63,0,0,0-1-1.3,3.35,3.35,0,0,0-1.85-.48,4.28,4.28,0,0,0-2.28.62,3.55,3.55,0,0,0-1.47,1.86,11.51,11.51,0,0,0-.46,3.69v9.69h-5.12v-26.7Z"/><path id="path5501" class="cls-1" d="M203.5,299.32l5.09.85a8.36,8.36,0,0,1-3.1,4.27,9.11,9.11,0,0,1-5.31,1.47q-5,0-7.47-3.3A11.09,11.09,0,0,1,190.8,296q0-4.81,2.52-7.53a8.25,8.25,0,0,1,6.35-2.73,8.57,8.57,0,0,1,6.81,2.85c1.67,1.91,2.46,4.81,2.39,8.74H196a5.21,5.21,0,0,0,1.24,3.54,3.9,3.9,0,0,0,3,1.26,3.12,3.12,0,0,0,2-.65,4.11,4.11,0,0,0,1.24-2.11m.29-5.18a4.92,4.92,0,0,0-1.15-3.37,3.52,3.52,0,0,0-2.66-1.16,3.57,3.57,0,0,0-2.77,1.22,4.72,4.72,0,0,0-1.07,3.31Z"/><path id="path5505" class="cls-1" d="M218.2,305.47h-5.12V286.13h4.75v2.75a8.25,8.25,0,0,1,2.2-2.56,4,4,0,0,1,2.21-.62,6.51,6.51,0,0,1,3.37,1L224,291.12a4.44,4.44,0,0,0-2.4-.84,2.83,2.83,0,0,0-1.82.6,4,4,0,0,0-1.17,2.13,30.16,30.16,0,0,0-.43,6.49Z"/><path id="path5509" class="cls-1" d="M238.74,305.47v-26.7h19.79v4.52h-14.4v5.92h13.4v4.5h-13.4V301H259v4.5Z"/><path id="path5513" class="cls-1" d="M276.57,305.47v-2.89a7.36,7.36,0,0,1-2.78,2.43,7.74,7.74,0,0,1-3.63.9,7.12,7.12,0,0,1-3.5-.86,5.05,5.05,0,0,1-2.24-2.4,10.75,10.75,0,0,1-.69-4.28V286.13h5.12V295a24.63,24.63,0,0,0,.28,5,2.79,2.79,0,0,0,1,1.46,3.2,3.2,0,0,0,1.89.53,4.07,4.07,0,0,0,2.35-.71,3.7,3.7,0,0,0,1.42-1.79,21,21,0,0,0,.38-5.22v-8.16h5.12v19.34Z"/><path id="path5517" class="cls-1" d="M291.78,305.47h-5.12V286.13h4.75v2.75a8.25,8.25,0,0,1,2.2-2.56,4,4,0,0,1,2.22-.62,6.5,6.5,0,0,1,3.36,1l-1.58,4.46a4.47,4.47,0,0,0-2.4-.84,2.84,2.84,0,0,0-1.83.6,4,4,0,0,0-1.17,2.13,30.16,30.16,0,0,0-.43,6.49Z"/><path id="path5521" class="cls-1" d="M300.47,295.53a10.49,10.49,0,0,1,1.26-4.94,8.62,8.62,0,0,1,3.56-3.64,10.66,10.66,0,0,1,5.15-1.25,9.62,9.62,0,0,1,7.19,2.85,9.81,9.81,0,0,1,2.81,7.2A10,10,0,0,1,317.6,303a9.59,9.59,0,0,1-7.13,2.89,11.25,11.25,0,0,1-5.07-1.2,8.25,8.25,0,0,1-3.67-3.53,11.68,11.68,0,0,1-1.26-5.65m5.25.27a6.37,6.37,0,0,0,1.37,4.41,4.45,4.45,0,0,0,6.72,0,6.47,6.47,0,0,0,1.36-4.45,6.36,6.36,0,0,0-1.36-4.37,4.45,4.45,0,0,0-6.72,0,6.37,6.37,0,0,0-1.37,4.41"/><path id="path5523" class="cls-1" d="M324.12,293.23h10.05v5.12H324.12Z"/><path id="path5527" class="cls-1" d="M335.11,305.47v-4.86l14-17.32H336.69v-4.52h19.54V283l-14.62,18H356.8v4.5Z"/><path id="path5531" class="cls-1" d="M364.25,292l-4.64-.84A7.24,7.24,0,0,1,362.3,287a9.86,9.86,0,0,1,5.68-1.35,12.21,12.21,0,0,1,5.1.81,5.06,5.06,0,0,1,2.36,2.06,10.52,10.52,0,0,1,.68,4.58l-.05,6a19.92,19.92,0,0,0,.25,3.75,10.72,10.72,0,0,0,.92,2.6h-5.06c-.14-.34-.3-.84-.5-1.51l-.18-.6a9.25,9.25,0,0,1-2.8,1.91,8.15,8.15,0,0,1-3.19.64,6.59,6.59,0,0,1-4.71-1.62,5.42,5.42,0,0,1-1.72-4.1,5.52,5.52,0,0,1,.78-2.92,5,5,0,0,1,2.2-2,17.3,17.3,0,0,1,4.07-1.19,27.69,27.69,0,0,0,5-1.26v-.51a2.63,2.63,0,0,0-.73-2.1,4.36,4.36,0,0,0-2.75-.63,3.65,3.65,0,0,0-2.13.54,3.7,3.7,0,0,0-1.24,1.88m6.85,4.15A30.72,30.72,0,0,1,368,297a9.31,9.31,0,0,0-2.78.89,2.13,2.13,0,0,0-1,1.8,2.52,2.52,0,0,0,.8,1.86,2.79,2.79,0,0,0,2,.78,4.42,4.42,0,0,0,2.64-.91,3.16,3.16,0,0,0,1.22-1.69,10.34,10.34,0,0,0,.2-2.5Z"/><path id="path5535" class="cls-1" d="M386.53,278.77v9.82a7.66,7.66,0,0,1,9.11-2.24,5.36,5.36,0,0,1,2.14,1.67,6.17,6.17,0,0,1,1,2.26,20,20,0,0,1,.26,3.85v11.34H393.9V295.26a15.65,15.65,0,0,0-.28-3.87,2.63,2.63,0,0,0-1-1.3,3.35,3.35,0,0,0-1.85-.48,4.28,4.28,0,0,0-2.28.62,3.53,3.53,0,0,0-1.46,1.86,10.93,10.93,0,0,0-.47,3.69v9.69h-5.12v-26.7Z"/><path id="path5537" class="cls-1" d="M404.47,278.77h5.12v26.7h-5.12Z"/><path id="path5541" class="cls-1" d="M427.83,305.47v-2.89a7.36,7.36,0,0,1-2.78,2.43,7.71,7.71,0,0,1-3.63.9,7.12,7.12,0,0,1-3.5-.86,5.05,5.05,0,0,1-2.24-2.4,10.75,10.75,0,0,1-.69-4.28V286.13h5.11V295a24.31,24.31,0,0,0,.29,5,2.74,2.74,0,0,0,1,1.46,3.2,3.2,0,0,0,1.89.53,4.1,4.1,0,0,0,2.35-.71,3.76,3.76,0,0,0,1.42-1.79,20.52,20.52,0,0,0,.38-5.22v-8.16h5.12v19.34Z"/><path id="path5545" class="cls-1" d="M455.74,305.47h-5.12V295.6a15.11,15.11,0,0,0-.33-4.05,2.88,2.88,0,0,0-1.07-1.43,3,3,0,0,0-1.77-.51,4.09,4.09,0,0,0-2.39.73,3.65,3.65,0,0,0-1.44,1.93,16.29,16.29,0,0,0-.39,4.44v8.76h-5.12V286.13h4.75V289a7.75,7.75,0,0,1,6.37-3.27,7.66,7.66,0,0,1,3.1.61,5.16,5.16,0,0,1,2.12,1.55,5.66,5.66,0,0,1,1,2.15,15.77,15.77,0,0,1,.29,3.44Z"/><path id="path5549" class="cls-1" d="M460.71,306.75l5.85.71a2,2,0,0,0,.67,1.4,3.82,3.82,0,0,0,2.3.55,5.85,5.85,0,0,0,3-.61,2.42,2.42,0,0,0,1-1.29,7.66,7.66,0,0,0,.24-2.35v-2.82a6.92,6.92,0,0,1-5.79,3.13,7.14,7.14,0,0,1-6.18-3.3,11.24,11.24,0,0,1-1.78-6.48c0-3.24.78-5.71,2.34-7.43a7.56,7.56,0,0,1,5.82-2.57,7.11,7.11,0,0,1,5.92,3.15v-2.71h4.78v17.36a17.28,17.28,0,0,1-.56,5.12,6.37,6.37,0,0,1-1.58,2.65,7,7,0,0,1-2.73,1.52,14.44,14.44,0,0,1-4.3.54q-4.92,0-7-1.68a5.31,5.31,0,0,1-2.06-4.27Zm4.58-11.35a7,7,0,0,0,1.19,4.51,3.68,3.68,0,0,0,2.94,1.43,4.08,4.08,0,0,0,3.17-1.47,6.37,6.37,0,0,0,1.29-4.34,6.73,6.73,0,0,0-1.24-4.46,4,4,0,0,0-3.13-1.46,3.77,3.77,0,0,0-3,1.43,6.67,6.67,0,0,0-1.19,4.36"/><path id="path5553" class="cls-1" d="M482.43,300l5.14-.78a3.74,3.74,0,0,0,1.32,2.27,4.47,4.47,0,0,0,2.81.77,5.08,5.08,0,0,0,3-.72,1.64,1.64,0,0,0,.68-1.37l-.37-1a4.11,4.11,0,0,0-1.71-.67q-6.18-1.37-7.85-2.5a5,5,0,0,1-2.3-4.35,5.41,5.41,0,0,1,2-4.23q2-1.71,6.16-1.71a10.77,10.77,0,0,1,5.9,1.3,6.59,6.59,0,0,1,2.66,3.82l-4.83.89a2.93,2.93,0,0,0-1.17-1.72,4.23,4.23,0,0,0-2.47-.61,5.55,5.55,0,0,0-2.9.57l-.58,1,.51.92a18.66,18.66,0,0,0,4.78,1.44,14.25,14.25,0,0,1,5.71,2.28,4.73,4.73,0,0,1,1.61,3.8,5.83,5.83,0,0,1-2.23,4.57q-2.22,1.92-6.57,1.92a10.79,10.79,0,0,1-6.26-1.6,7.39,7.39,0,0,1-3-4.36"/><path id="path5557" class="cls-1" d="M510.55,305.47l-7.79-19.34h5.37l3.64,9.87,1.06,3.3c.28-.84.45-1.39.53-1.66.17-.55.35-1.09.54-1.64l3.68-9.87h5.27l-7.69,19.34Z"/><path id="path5561" class="cls-1" d="M537.44,299.32l5.1.85a8.43,8.43,0,0,1-3.11,4.27,9.08,9.08,0,0,1-5.3,1.47q-5.05,0-7.47-3.3a11,11,0,0,1-1.91-6.66c0-3.21.83-5.72,2.51-7.53a8.25,8.25,0,0,1,6.35-2.73,8.61,8.61,0,0,1,6.82,2.85c1.66,1.91,2.45,4.81,2.38,8.74H530a5.21,5.21,0,0,0,1.24,3.54,3.88,3.88,0,0,0,2.95,1.26,3.12,3.12,0,0,0,2-.65,4,4,0,0,0,1.24-2.11m.29-5.18a4.92,4.92,0,0,0-1.15-3.37,3.52,3.52,0,0,0-2.65-1.16,3.57,3.57,0,0,0-2.77,1.22,4.72,4.72,0,0,0-1.08,3.31Z"/><path id="path5565" class="cls-1" d="M552.14,305.47H547V286.13h4.76v2.75a8.12,8.12,0,0,1,2.19-2.56,4,4,0,0,1,2.21-.62,6.48,6.48,0,0,1,3.37,1L558,291.12a4.49,4.49,0,0,0-2.4-.84,2.84,2.84,0,0,0-1.83.6,4,4,0,0,0-1.17,2.13,30.16,30.16,0,0,0-.43,6.49Z"/><path id="path5569" class="cls-1" d="M561.84,305.47v-26.7H567v14.17l6-6.81h6.29l-6.6,7.07,7.08,12.27H574.2l-4.86-8.69-2.39,2.5v6.19Z"/><path id="path5573" class="cls-1" d="M594.22,299.32l5.1.85a8.36,8.36,0,0,1-3.1,4.27,9.13,9.13,0,0,1-5.31,1.47q-5.05,0-7.47-3.3a11.09,11.09,0,0,1-1.91-6.66,10.69,10.69,0,0,1,2.51-7.53,8.28,8.28,0,0,1,6.36-2.73,8.57,8.57,0,0,1,6.81,2.85c1.66,1.91,2.46,4.81,2.39,8.74H586.77a5.26,5.26,0,0,0,1.24,3.54,3.88,3.88,0,0,0,3,1.26,3.1,3.1,0,0,0,2-.65,4,4,0,0,0,1.24-2.11m.3-5.18a4.92,4.92,0,0,0-1.15-3.37,3.69,3.69,0,0,0-5.43.06,4.77,4.77,0,0,0-1.08,3.31Z"/><path id="path5577" class="cls-1" d="M609.13,278.77v9.82a7.55,7.55,0,0,1,5.92-2.9,7.44,7.44,0,0,1,3.18.66,5.29,5.29,0,0,1,2.14,1.67,6.19,6.19,0,0,1,1,2.26,20.89,20.89,0,0,1,.26,3.85v11.34H616.5V295.26a15.46,15.46,0,0,0-.29-3.87,2.53,2.53,0,0,0-1-1.3,3.3,3.3,0,0,0-1.85-.48,4.28,4.28,0,0,0-2.28.62,3.58,3.58,0,0,0-1.46,1.86,11.23,11.23,0,0,0-.46,3.69v9.69H604v-26.7Z"/><path id="path5581" class="cls-1" d="M632,305.47h-5.12V286.13h4.75v2.75a8.25,8.25,0,0,1,2.2-2.56,4,4,0,0,1,2.22-.62,6.5,6.5,0,0,1,3.36,1l-1.58,4.46a4.49,4.49,0,0,0-2.4-.84,2.84,2.84,0,0,0-1.83.6A4,4,0,0,0,632.4,293a30.16,30.16,0,0,0-.43,6.49Z"/><path id="path5585" class="cls-1" d="M640,300l5.14-.78a3.79,3.79,0,0,0,1.33,2.27,4.46,4.46,0,0,0,2.8.77,5.11,5.11,0,0,0,3-.72,1.63,1.63,0,0,0,.67-1.37l-.36-1a4.24,4.24,0,0,0-1.71-.67q-6.2-1.37-7.85-2.5a5,5,0,0,1-2.3-4.35,5.41,5.41,0,0,1,2-4.23q2-1.71,6.16-1.71a10.71,10.71,0,0,1,5.89,1.3,6.55,6.55,0,0,1,2.66,3.82l-4.82.89a2.94,2.94,0,0,0-1.18-1.72,4.21,4.21,0,0,0-2.47-.61,5.53,5.53,0,0,0-2.89.57l-.58,1,.51.92a18.66,18.66,0,0,0,4.78,1.44,14.25,14.25,0,0,1,5.71,2.28,4.72,4.72,0,0,1,1.6,3.8,5.82,5.82,0,0,1-2.22,4.57c-1.48,1.28-3.68,1.92-6.58,1.92a10.78,10.78,0,0,1-6.25-1.6,7.4,7.4,0,0,1-3-4.36"/><path id="path5589" class="cls-1" d="M667.75,305.47h-5.12V286.13h4.75v2.75a8.25,8.25,0,0,1,2.2-2.56,4,4,0,0,1,2.21-.62,6.51,6.51,0,0,1,3.37,1l-1.58,4.46a4.47,4.47,0,0,0-2.41-.84,2.83,2.83,0,0,0-1.82.6,4.06,4.06,0,0,0-1.17,2.13,30.16,30.16,0,0,0-.43,6.49Z"/><path id="path5593" class="cls-1" d="M681.45,292l-4.65-.84a7.3,7.3,0,0,1,2.7-4.15,9.86,9.86,0,0,1,5.68-1.35,12.21,12.21,0,0,1,5.1.81,5.06,5.06,0,0,1,2.36,2.06,10.52,10.52,0,0,1,.68,4.58l-.05,6a19.92,19.92,0,0,0,.25,3.75,11.11,11.11,0,0,0,.91,2.6h-5.06c-.13-.34-.29-.84-.49-1.51l-.18-.6a9.13,9.13,0,0,1-2.8,1.91,8.15,8.15,0,0,1-3.19.64,6.6,6.6,0,0,1-4.71-1.62,5.38,5.38,0,0,1-1.72-4.1,5.52,5.52,0,0,1,.78-2.92,5.07,5.07,0,0,1,2.2-2,17.3,17.3,0,0,1,4.07-1.19,27.93,27.93,0,0,0,5-1.26v-.51a2.63,2.63,0,0,0-.73-2.1,4.34,4.34,0,0,0-2.75-.63,3.65,3.65,0,0,0-2.13.54,3.7,3.7,0,0,0-1.24,1.88m6.85,4.15a30.72,30.72,0,0,1-3.12.79,9.31,9.31,0,0,0-2.78.89,2.13,2.13,0,0,0-1,1.8,2.48,2.48,0,0,0,.8,1.86,2.79,2.79,0,0,0,2,.78,4.42,4.42,0,0,0,2.64-.91,3.16,3.16,0,0,0,1.22-1.69,10.34,10.34,0,0,0,.2-2.5Z"/><path id="path5597" class="cls-1" d="M711.36,305.47v-2.89a7.36,7.36,0,0,1-2.78,2.43,7.68,7.68,0,0,1-3.63.9,7.08,7.08,0,0,1-3.49-.86,5,5,0,0,1-2.24-2.4,10.56,10.56,0,0,1-.7-4.28V286.13h5.12V295a24.63,24.63,0,0,0,.28,5,2.79,2.79,0,0,0,1,1.46,3.22,3.22,0,0,0,1.89.53,4.07,4.07,0,0,0,2.35-.71,3.7,3.7,0,0,0,1.42-1.79,20.52,20.52,0,0,0,.38-5.22v-8.16h5.12v19.34Z"/><path id="path5601" class="cls-1" d="M721.29,286.13H726v2.64a7.59,7.59,0,0,1,6-3.08,6.47,6.47,0,0,1,3.22.77,5.87,5.87,0,0,1,2.24,2.31,9,9,0,0,1,2.75-2.31,6.73,6.73,0,0,1,3.15-.77,7,7,0,0,1,3.61.87,5.33,5.33,0,0,1,2.2,2.54,11.08,11.08,0,0,1,.53,4v12.36h-5.12V294.42a8.27,8.27,0,0,0-.53-3.72,2.43,2.43,0,0,0-2.18-1.09,3.46,3.46,0,0,0-2,.66,3.6,3.6,0,0,0-1.37,1.92,13.72,13.72,0,0,0-.42,4v9.29H733v-10.6a14.37,14.37,0,0,0-.27-3.64,2.31,2.31,0,0,0-.84-1.22,2.78,2.78,0,0,0-1.57-.4,3.68,3.68,0,0,0-2.12.64,3.43,3.43,0,0,0-1.36,1.84,13.75,13.75,0,0,0-.41,4v9.4h-5.12Z"/><path id="path5605" class="cls-1" d="M.23,245.68l7.7-.74a9.43,9.43,0,0,0,2.81,5.69,8.54,8.54,0,0,0,5.73,1.81,8.85,8.85,0,0,0,5.76-1.61,4.82,4.82,0,0,0,1.94-3.78,3.59,3.59,0,0,0-.82-2.37A6.48,6.48,0,0,0,20.51,243q-1.4-.5-6.34-1.71c-4.23-1.06-7.21-2.34-8.92-3.88a10.19,10.19,0,0,1-3.6-7.88,10,10,0,0,1,1.7-5.59,10.5,10.5,0,0,1,4.89-4,19.5,19.5,0,0,1,7.7-1.36q7.37,0,11.1,3.23A11.41,11.41,0,0,1,31,230.46l-7.91.35a6.76,6.76,0,0,0-2.17-4.35,8.06,8.06,0,0,0-5-1.32,9,9,0,0,0-5.39,1.42A2.85,2.85,0,0,0,9.21,229a3,3,0,0,0,1.17,2.38q1.5,1.26,7.27,2.61a38.46,38.46,0,0,1,8.53,2.82,11,11,0,0,1,4.33,4A11.7,11.7,0,0,1,32.07,247a11.48,11.48,0,0,1-1.87,6.3,11.21,11.21,0,0,1-5.29,4.37,22.23,22.23,0,0,1-8.52,1.43Q9,259.12,5,255.69t-4.76-10"/><path id="path5607" class="cls-1" d="M40.31,219.27h7.51v6.94H40.31Zm0,10.79h7.51v28.37H40.31Z"/><path id="path5611" class="cls-1" d="M83,258.42h-7.5V244A21.86,21.86,0,0,0,75,238a4.1,4.1,0,0,0-1.56-2.09,4.45,4.45,0,0,0-2.6-.75,6,6,0,0,0-3.5,1.07,5.3,5.3,0,0,0-2.12,2.83,24.1,24.1,0,0,0-.58,6.52v12.84H57.1V230.06h7v4.16A11.65,11.65,0,0,1,78,230.31a7.67,7.67,0,0,1,3.11,2.28,8.42,8.42,0,0,1,1.47,3.16A23.81,23.81,0,0,1,83,240.8Z"/><path id="path5615" class="cls-1" d="M91.51,260.29l8.57,1a2.94,2.94,0,0,0,1,2.05,5.56,5.56,0,0,0,3.36.8,8.73,8.73,0,0,0,4.41-.88,3.61,3.61,0,0,0,1.49-1.89,11.46,11.46,0,0,0,.35-3.45v-4.14a10.17,10.17,0,0,1-8.49,4.6,10.48,10.48,0,0,1-9.06-4.84,16.39,16.39,0,0,1-2.62-9.51q0-7.12,3.44-10.9a11.05,11.05,0,0,1,8.53-3.76,10.36,10.36,0,0,1,8.68,4.62v-4h7v25.45a25.46,25.46,0,0,1-.83,7.51,9.27,9.27,0,0,1-2.33,3.9,10.45,10.45,0,0,1-4,2.22,21.19,21.19,0,0,1-6.32.8q-7.22,0-10.23-2.47a7.76,7.76,0,0,1-3-6.27Zm6.71-16.63c0,3,.58,5.21,1.75,6.61a5.41,5.41,0,0,0,4.31,2.09,6,6,0,0,0,4.65-2.15q1.89-2.15,1.89-6.37,0-4.41-1.81-6.54a5.78,5.78,0,0,0-4.6-2.14,5.53,5.53,0,0,0-4.44,2.09q-1.75,2.1-1.75,6.41"/><path id="path5617" class="cls-1" d="M127.26,219.27h7.51v39.16h-7.51Z"/><path id="path5621" class="cls-1" d="M160.53,249.4l7.48,1.25a12.35,12.35,0,0,1-4.56,6.27,13.39,13.39,0,0,1-7.78,2.15q-7.39,0-11-4.84a16.31,16.31,0,0,1-2.8-9.78q0-7,3.69-11a12.14,12.14,0,0,1,9.32-4,12.58,12.58,0,0,1,10,4.18q3.66,4.17,3.5,12.81H149.6a7.62,7.62,0,0,0,1.82,5.19,5.67,5.67,0,0,0,4.33,1.86,4.6,4.6,0,0,0,3-1,5.9,5.9,0,0,0,1.82-3.09m.43-7.59a7.22,7.22,0,0,0-1.69-4.95,5.12,5.12,0,0,0-3.9-1.7,5.24,5.24,0,0,0-4.06,1.79,6.94,6.94,0,0,0-1.58,4.86Z"/><path id="path5625" class="cls-1" d="M193.06,258.42V219.27h29v6.62H201v8.68h19.66v6.6H201v10.66h21.88v6.59Z"/><path id="path5629" class="cls-1" d="M249.8,258.42v-4.24a11,11,0,0,1-4.07,3.58,11.44,11.44,0,0,1-5.33,1.3,10.37,10.37,0,0,1-5.13-1.25,7.38,7.38,0,0,1-3.28-3.53,15.62,15.62,0,0,1-1-6.27V230.06h7.51v13c0,4,.13,6.43.41,7.34a4,4,0,0,0,1.51,2.13,4.62,4.62,0,0,0,2.78.79,6,6,0,0,0,3.45-1,5.47,5.47,0,0,0,2.08-2.62q.56-1.58.56-7.65v-12h7.51v28.36Z"/><path id="path5633" class="cls-1" d="M273.37,258.42h-7.5V230.06h7v4a12.14,12.14,0,0,1,3.22-3.77,5.94,5.94,0,0,1,3.24-.9,9.6,9.6,0,0,1,4.95,1.41l-2.33,6.55a6.6,6.6,0,0,0-3.53-1.23,4.13,4.13,0,0,0-2.66.87,5.83,5.83,0,0,0-1.73,3.14q-.63,2.26-.63,9.5Z"/><path id="path5637" class="cls-1" d="M287.38,243.84a15.37,15.37,0,0,1,1.85-7.24,12.63,12.63,0,0,1,5.22-5.34,15.47,15.47,0,0,1,7.54-1.84,14.17,14.17,0,0,1,10.56,4.18,15.69,15.69,0,0,1-.05,21.23,14,14,0,0,1-10.45,4.23,16.38,16.38,0,0,1-7.44-1.76,12.1,12.1,0,0,1-5.38-5.16,17.25,17.25,0,0,1-1.85-8.3m7.7.4c0,2.82.66,5,2,6.47a6.56,6.56,0,0,0,9.87,0c1.32-1.5,2-3.67,2-6.52a9.37,9.37,0,0,0-2-6.41,6.56,6.56,0,0,0-9.87,0c-1.34,1.49-2,3.65-2,6.46"/><path id="path5641" class="cls-1" d="M341.07,258.42V219.27h12.68q7.22,0,9.41.58a10.27,10.27,0,0,1,5.63,3.84,12.16,12.16,0,0,1,2.27,7.62,12.7,12.7,0,0,1-1.31,6.07,10.86,10.86,0,0,1-3.32,3.86,11.51,11.51,0,0,1-4.1,1.85,45.52,45.52,0,0,1-8.2.56H349v14.77Zm7.9-32.53V237h4.33a20.45,20.45,0,0,0,6.25-.61,5.15,5.15,0,0,0,3.37-5,5.07,5.07,0,0,0-1.26-3.53,5.5,5.5,0,0,0-3.18-1.73,37.57,37.57,0,0,0-5.69-.27Z"/><path id="path5645" class="cls-1" d="M384.75,238.71l-6.81-1.23a10.64,10.64,0,0,1,3.95-6.09q2.81-2,8.34-2c3.34,0,5.83.39,7.47,1.19a7.39,7.39,0,0,1,3.46,3q1,1.83,1,6.72l-.07,8.76a30.51,30.51,0,0,0,.36,5.52,15.79,15.79,0,0,0,1.35,3.81h-7.43c-.2-.5-.44-1.24-.73-2.22-.12-.44-.2-.74-.26-.88a13.54,13.54,0,0,1-4.11,2.8,11.67,11.67,0,0,1-4.68.93,9.67,9.67,0,0,1-6.9-2.37,7.92,7.92,0,0,1-2.52-6,8.14,8.14,0,0,1,1.14-4.29,7.6,7.6,0,0,1,3.22-2.89,25.17,25.17,0,0,1,6-1.74,40.66,40.66,0,0,0,7.29-1.85v-.74a3.87,3.87,0,0,0-1.07-3.09c-.71-.61-2.05-.92-4-.92a5.37,5.37,0,0,0-3.13.79,5.5,5.5,0,0,0-1.81,2.76m10,6.09c-1,.32-2.48.7-4.56,1.15a13.87,13.87,0,0,0-4.09,1.31,3.13,3.13,0,0,0-1.47,2.65,3.68,3.68,0,0,0,1.18,2.72,4.1,4.1,0,0,0,3,1.15,6.51,6.51,0,0,0,3.87-1.34A4.67,4.67,0,0,0,394.5,250a15.18,15.18,0,0,0,.29-3.66Z"/><path id="path5649" class="cls-1" d="M407.65,230.06h8l6.79,20.14,6.62-20.14h7.77l-10,27.3L425,262.3a20.39,20.39,0,0,1-1.88,3.79,8.52,8.52,0,0,1-2.05,2.13,9.07,9.07,0,0,1-2.86,1.26,14.6,14.6,0,0,1-3.84.46,19.39,19.39,0,0,1-4.24-.46l-.67-5.87a16.66,16.66,0,0,0,3.18.35,4.73,4.73,0,0,0,3.87-1.54,10.76,10.76,0,0,0,1.93-3.91Z"/><path id="path5653" class="cls-1" d="M442.71,230.06h6.92v3.87a11.11,11.11,0,0,1,8.84-4.51,9.54,9.54,0,0,1,4.73,1.12,8.65,8.65,0,0,1,3.28,3.39,13.15,13.15,0,0,1,4-3.39,9.85,9.85,0,0,1,4.62-1.12,10.32,10.32,0,0,1,5.28,1.26,7.81,7.81,0,0,1,3.24,3.73,16.37,16.37,0,0,1,.77,5.88v18.14h-7.51V242.21c0-2.81-.25-4.63-.77-5.45a3.55,3.55,0,0,0-3.2-1.6,5.12,5.12,0,0,0-3,1,5.3,5.3,0,0,0-2,2.82,19.86,19.86,0,0,0-.62,5.86v13.63h-7.51V242.88a21.4,21.4,0,0,0-.4-5.34,3.36,3.36,0,0,0-1.23-1.79,4,4,0,0,0-2.29-.59,5.51,5.51,0,0,0-3.13.93,5.14,5.14,0,0,0-2,2.7,19.7,19.7,0,0,0-.61,5.85v13.79h-7.5Z"/><path id="path5657" class="cls-1" d="M510,249.4l7.48,1.25a12.35,12.35,0,0,1-4.56,6.27,13.39,13.39,0,0,1-7.78,2.15c-4.94,0-8.58-1.62-11-4.84a16.24,16.24,0,0,1-2.8-9.78q0-7,3.69-11a12.14,12.14,0,0,1,9.32-4,12.58,12.58,0,0,1,10,4.18c2.43,2.78,3.61,7.05,3.5,12.81H499.05a7.62,7.62,0,0,0,1.82,5.19,5.68,5.68,0,0,0,4.33,1.86,4.6,4.6,0,0,0,3-1A5.9,5.9,0,0,0,510,249.4m.43-7.59a7.22,7.22,0,0,0-1.69-4.95,5.12,5.12,0,0,0-3.9-1.7,5.24,5.24,0,0,0-4.06,1.79,6.94,6.94,0,0,0-1.58,4.86Z"/><path id="path5661" class="cls-1" d="M551.42,258.42h-7.51V244a22.44,22.44,0,0,0-.48-5.95,4.15,4.15,0,0,0-1.56-2.09,4.46,4.46,0,0,0-2.61-.75,6.08,6.08,0,0,0-3.5,1.07,5.35,5.35,0,0,0-2.12,2.83,24.64,24.64,0,0,0-.57,6.52v12.84h-7.51V230.06h7v4.16a11.38,11.38,0,0,1,9.35-4.8,11.18,11.18,0,0,1,4.54.89,7.67,7.67,0,0,1,3.11,2.28,8.12,8.12,0,0,1,1.47,3.16,23,23,0,0,1,.42,5.05Z"/><path id="path5665" class="cls-1" d="M573.68,230.06v6h-5.13v11.43a27.83,27.83,0,0,0,.15,4.05l.67.95a2.08,2.08,0,0,0,1.27.37,9.73,9.73,0,0,0,3-.72l.64,5.82a14.86,14.86,0,0,1-5.93,1.13,9.42,9.42,0,0,1-3.65-.68,5.34,5.34,0,0,1-2.39-1.77,6.86,6.86,0,0,1-1.06-2.92,36.47,36.47,0,0,1-.24-5.29V236h-3.45v-6H561v-5.64l7.53-4.38v10Z"/><path id="path5669" class="cls-1" d="M577.89,250.33l7.53-1.15a5.54,5.54,0,0,0,2,3.33,6.63,6.63,0,0,0,4.11,1.13,7.45,7.45,0,0,0,4.38-1.06,2.39,2.39,0,0,0,1-2,2,2,0,0,0-.53-1.41,6,6,0,0,0-2.51-1q-9.09-2-11.52-3.66a7.31,7.31,0,0,1-3.36-6.39,7.86,7.86,0,0,1,2.91-6.19c1.94-1.68,4.95-2.51,9-2.51q5.82,0,8.65,1.89a9.75,9.75,0,0,1,3.9,5.61l-7.08,1.31a4.37,4.37,0,0,0-1.72-2.54,6.37,6.37,0,0,0-3.62-.88,8.19,8.19,0,0,0-4.25.83,1.77,1.77,0,0,0-.85,1.52,1.64,1.64,0,0,0,.75,1.36q1,.75,7,2.12c4,.9,6.78,2,8.37,3.33a7,7,0,0,1,2.35,5.59,8.56,8.56,0,0,1-3.25,6.7q-3.27,2.81-9.65,2.81-5.79,0-9.17-2.36a10.74,10.74,0,0,1-4.42-6.38"/><path id="path5673" class="cls-1" d="M662.77,258.42h-8.61l-3.41-8.89H635.1l-3.24,8.89h-8.38l15.25-39.15h8.36Zm-14.56-15.49-5.4-14.53-5.28,14.53Z"/><path id="path5677" class="cls-1" d="M675.73,258.42h-7.5V230.06h7v4a12.14,12.14,0,0,1,3.22-3.77,5.94,5.94,0,0,1,3.24-.9,9.6,9.6,0,0,1,5,1.41l-2.33,6.55a6.6,6.6,0,0,0-3.53-1.23,4.13,4.13,0,0,0-2.66.87,5.83,5.83,0,0,0-1.73,3.14q-.63,2.26-.63,9.5Z"/><path id="path5681" class="cls-1" d="M707.91,249.4l7.48,1.25a12.35,12.35,0,0,1-4.56,6.27,13.41,13.41,0,0,1-7.78,2.15q-7.41,0-11-4.84a16.24,16.24,0,0,1-2.8-9.78q0-7,3.68-11a12.15,12.15,0,0,1,9.32-4,12.6,12.6,0,0,1,10,4.18q3.66,4.17,3.5,12.81H697a7.57,7.57,0,0,0,1.82,5.19,5.66,5.66,0,0,0,4.32,1.86,4.61,4.61,0,0,0,3-1,5.9,5.9,0,0,0,1.82-3.09m.42-7.59a7.17,7.17,0,0,0-1.68-4.95,5.14,5.14,0,0,0-3.9-1.7,5.22,5.22,0,0,0-4.06,1.79,6.94,6.94,0,0,0-1.58,4.86Z"/><path id="path5685" class="cls-1" d="M729.15,238.71l-6.81-1.23a10.6,10.6,0,0,1,4-6.09q2.79-2,8.33-2c3.34,0,5.84.39,7.48,1.19a7.41,7.41,0,0,1,3.45,3q1,1.83,1,6.72l-.07,8.76a30.51,30.51,0,0,0,.36,5.52,16.23,16.23,0,0,0,1.35,3.81h-7.43q-.3-.75-.72-2.22c-.13-.44-.21-.74-.27-.88a13.54,13.54,0,0,1-4.11,2.8,11.67,11.67,0,0,1-4.68.93,9.67,9.67,0,0,1-6.9-2.37,7.93,7.93,0,0,1-2.53-6,8.15,8.15,0,0,1,1.15-4.29,7.66,7.66,0,0,1,3.22-2.89,25.17,25.17,0,0,1,6-1.74,40.66,40.66,0,0,0,7.29-1.85v-.74a3.87,3.87,0,0,0-1.07-3.09c-.71-.61-2-.92-4-.92A5.33,5.33,0,0,0,731,236a5.44,5.44,0,0,0-1.82,2.76m10,6.09c-1,.32-2.48.7-4.56,1.15a13.87,13.87,0,0,0-4.09,1.31,3.13,3.13,0,0,0-1.47,2.65,3.68,3.68,0,0,0,1.18,2.72,4.1,4.1,0,0,0,3,1.15,6.51,6.51,0,0,0,3.87-1.34A4.67,4.67,0,0,0,738.9,250a15.18,15.18,0,0,0,.29-3.66Z"/><path id="path5689" class="cls-1" d="M166.63,65.38H115.31q0-12.63-3-16.95Q107.78,42,87.08,42,67,42,60.47,45.72T54,61.78Q54,73,59.73,76.51a24.14,24.14,0,0,0,10.94,2.95L81,80.19q33.27,2.2,41.56,3.1,26.31,2.64,38.15,14,9.3,8.85,11.09,23.13a161.91,161.91,0,0,1,1,19.3q0,24.75-4.72,36.24-8.56,21.08-38.52,26.65Q117.05,205,91.22,205q-43.11,0-60.07-5.14-20.82-6.33-27.46-25.6Q0,163.49,0,138.47H51.32v4.26q0,13.35,7.67,17.17a30,30,0,0,0,12.82,2.79H90.68q14.44,0,18.42-1.48,7.08-2.78,9.3-9a34.51,34.51,0,0,0,1.17-9.87q0-13.53-9.87-16.48-3.69-1.17-34.32-3.24-24.61-1.75-34.18-3.39Q16,114.55,7.62,99.84.24,87.35.25,62q0-19.27,4-30.91T17.07,13.45Q30,4.18,50.26,2.56,67.09,1.09,87.59,1.08q32.31,0,46,3.7,33.5,9,33.5,50.42,0,3.39-.5,10.18"/><path id="path5693" class="cls-1" d="M392.3,205V0H495.07q21.14,0,32.24,3.45Q552.66,11.39,561.36,36q4.5,12.9,4.5,38.84,0,31.19-5,44.83-9.89,27-40.64,31-3.62.62-30.76,1.06l-9.16.3H447.46V205Zm55.16-100.46h34.38c10.91-.39,17.54-1.23,19.93-2.54,3.25-1.79,5.45-5.38,6.53-10.76a90,90,0,0,0,1.05-16q0-13-2.09-19.29-3-8.82-14.25-10.76c-1.5-.2-5.06-.3-10.7-.3H447.46Z"/><path id="path5697" class="cls-1" d="M683.61,169.53H609.85L599.94,205H542.87L604.46,0h83.21L750,205H694.13Zm-11-39.92L646.81,40.76l-25.08,88.85Z"/><path id="path5701" class="cls-2" d="M316.16,28.83a72.52,72.52,0,0,1,56.4,26.9l11.89-25.5A104.24,104.24,0,0,0,312.63,1.82c-43.46,0-80.64,26.25-95.9,63.41H193.54L179.85,94.58h29.83c-.23,2.73-.37,5.45-.37,8.23a96.73,96.73,0,0,0,.51,10h-15l-13.69,29.36h36.3c15.69,36.22,52.41,61.65,95.19,61.65a104.51,104.51,0,0,0,58.14-17.5v-36a72.57,72.57,0,0,1-115.43-8.17h76l13.69-29.36H244.16a74.18,74.18,0,0,1-.8-10.82c0-2.49.13-4.95.37-7.38h109.8l13.69-29.35h-114a72.72,72.72,0,0,1,62.94-36.4"/><path id="path5705" class="cls-1" d="M316.16,29.71a71.56,71.56,0,0,1,55.72,26.58l.89,1.09.6-1.27,11.88-25.5.27-.58-.46-.44A106,106,0,0,0,253.61,18.87a102.25,102.25,0,0,0-37.69,46l.81-.55H193l-.24.51L179.06,94.21l-.59,1.26h31.21l-.88-1c-.25,3-.37,5.76-.37,8.3a100.71,100.71,0,0,0,.51,10.06l.88-1H194.27l-.23.5-13.7,29.36-.58,1.25h37.68l-.81-.53c16.37,37.77,54.05,62.18,96,62.18A105.34,105.34,0,0,0,371.25,187l.39-.26V148l-1.54,1.75a71.7,71.7,0,0,1-114-8.07l-.74,1.36h76.58l.24-.5,13.69-29.36.58-1.25H244.16l.87.75a74.19,74.19,0,0,1-.79-10.7c0-2.41.13-4.86.37-7.29l-.88.8H354.1l.23-.51L368,65.61l.59-1.26H253.22l.76,1.32a72.17,72.17,0,0,1,62.18-36m-62.94,36.4h114l-.8-1.25L352.74,94.21l.79-.5H242.94l-.09.79a74.67,74.67,0,0,0-.37,7.46,76.37,76.37,0,0,0,.81,11l.12.75H345.05l-.8-1.26-13.68,29.36.79-.51H253.71l.9,1.36a73.46,73.46,0,0,0,116.82,8.27l-1.55-.58v36l.39-.72a103.63,103.63,0,0,1-57.64,17.34c-41.25,0-78.3-24-94.38-61.12l-.23-.53H181.14l.8,1.26,13.69-29.36-.8.51h16l-.1-1c-.33-3.32-.5-6.65-.5-9.89,0-2.49.12-5.16.37-8.15l.08-1H179.85l.8,1.25,13.69-29.35-.8.5h23.78l.22-.54A100.56,100.56,0,0,1,254.6,20.33,104.24,104.24,0,0,1,383.85,30.87l-.2-1-11.88,25.5,1.48-.19a73.49,73.49,0,0,0-120.79,9.62l-.77,1.32Z"/></svg>
1
+ <svg id="svg10908" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 313.32" preserveAspectRatio="xMidYMid meet"><defs><style>.cls-1{fill:#10298e;}.cls-2{fill:#ffbe00;}</style></defs><title>sepa</title><path id="path5457" class="cls-1" d="M.88,305.47v-26.7H20.67v4.52H6.27v5.92h13.4v4.5H6.27V301H21.19v4.5Z"/><path id="path5459" class="cls-1" d="M26,278.77H31.1v4.74H26Zm0,7.36H31.1v19.34H26Z"/><path id="path5471" class="cls-1" d="M54.2,305.47H49.08V295.6a15.11,15.11,0,0,0-.33-4.05,2.87,2.87,0,0,0-1.06-1.43,3.08,3.08,0,0,0-1.78-.51,4.09,4.09,0,0,0-2.39.73,3.6,3.6,0,0,0-1.44,1.93,16.29,16.29,0,0,0-.39,4.44v8.76H36.57V286.13h4.75V289a7.75,7.75,0,0,1,6.38-3.27,7.64,7.64,0,0,1,3.09.61,5.09,5.09,0,0,1,2.12,1.55,5.52,5.52,0,0,1,1,2.15,15.77,15.77,0,0,1,.29,3.44Z"/><path id="path5475" class="cls-1" d="M64.75,278.77v9.82a7.64,7.64,0,0,1,9.1-2.24A5.29,5.29,0,0,1,76,288a6,6,0,0,1,1,2.26,19.84,19.84,0,0,1,.27,3.85v11.34H72.12V295.26a15,15,0,0,0-.29-3.87,2.58,2.58,0,0,0-1-1.3,3.33,3.33,0,0,0-1.85-.48,4.22,4.22,0,0,0-2.27.62,3.55,3.55,0,0,0-1.47,1.86,11.23,11.23,0,0,0-.46,3.69v9.69H59.63v-26.7Z"/><path id="path5479" class="cls-1" d="M93.89,299.32l5.1.85a8.36,8.36,0,0,1-3.1,4.27,9.13,9.13,0,0,1-5.31,1.47q-5.06,0-7.47-3.3A11,11,0,0,1,81.2,296c0-3.21.83-5.72,2.51-7.53a8.27,8.27,0,0,1,6.36-2.73,8.6,8.6,0,0,1,6.81,2.85c1.66,1.91,2.46,4.81,2.38,8.74H86.44a5.21,5.21,0,0,0,1.24,3.54,3.89,3.89,0,0,0,2.95,1.26,3.1,3.1,0,0,0,2-.65,4,4,0,0,0,1.24-2.11m.29-5.18A5,5,0,0,0,93,290.77a3.69,3.69,0,0,0-5.43.06,4.72,4.72,0,0,0-1.08,3.31Z"/><path id="path5481" class="cls-1" d="M103.69,278.77h5.12v4.74h-5.12Zm0,7.36h5.12v19.34h-5.12Z"/><path id="path5485" class="cls-1" d="M123.19,286.13v4.08h-3.5V298a18.68,18.68,0,0,0,.1,2.75l.46.65.86.26a6.6,6.6,0,0,0,2.06-.5l.44,4a10.37,10.37,0,0,1-4,.76,6.21,6.21,0,0,1-2.49-.47,3.54,3.54,0,0,1-1.63-1.2,4.6,4.6,0,0,1-.72-2,24.9,24.9,0,0,1-.16-3.61v-8.43H112.2v-4.08h2.36v-3.84l5.13-3v6.83Z"/><path id="path5487" class="cls-1" d="M127,278.77h5.12v26.7H127Z"/><path id="path5489" class="cls-1" d="M137.63,278.77h5.11v4.74h-5.11Zm0,7.36h5.11v19.34h-5.11Z"/><path id="path5493" class="cls-1" d="M165.11,291.85l-5,.91a3.75,3.75,0,0,0-1.16-2.28,3.54,3.54,0,0,0-2.34-.76,3.82,3.82,0,0,0-3,1.32c-.76.88-1.14,2.35-1.14,4.42q0,3.44,1.16,4.86a3.78,3.78,0,0,0,3.1,1.42,3.46,3.46,0,0,0,2.39-.83,4.93,4.93,0,0,0,1.31-2.85l5,.85a8.92,8.92,0,0,1-3,5.23,9.29,9.29,0,0,1-6,1.77,8.88,8.88,0,0,1-6.77-2.68,10.37,10.37,0,0,1-2.52-7.41q0-4.79,2.53-7.46a9,9,0,0,1,6.85-2.67,9.35,9.35,0,0,1,5.61,1.52,8.36,8.36,0,0,1,3,4.64"/><path id="path5497" class="cls-1" d="M174.35,278.77v9.82a7.66,7.66,0,0,1,9.11-2.24A5.43,5.43,0,0,1,185.6,288a6.17,6.17,0,0,1,1,2.26,20.89,20.89,0,0,1,.26,3.85v11.34h-5.11V295.26a15.46,15.46,0,0,0-.29-3.87,2.63,2.63,0,0,0-1-1.3,3.35,3.35,0,0,0-1.85-.48,4.28,4.28,0,0,0-2.28.62,3.55,3.55,0,0,0-1.47,1.86,11.51,11.51,0,0,0-.46,3.69v9.69h-5.12v-26.7Z"/><path id="path5501" class="cls-1" d="M203.5,299.32l5.09.85a8.36,8.36,0,0,1-3.1,4.27,9.11,9.11,0,0,1-5.31,1.47q-5,0-7.47-3.3A11.09,11.09,0,0,1,190.8,296q0-4.81,2.52-7.53a8.25,8.25,0,0,1,6.35-2.73,8.57,8.57,0,0,1,6.81,2.85c1.67,1.91,2.46,4.81,2.39,8.74H196a5.21,5.21,0,0,0,1.24,3.54,3.9,3.9,0,0,0,3,1.26,3.12,3.12,0,0,0,2-.65,4.11,4.11,0,0,0,1.24-2.11m.29-5.18a4.92,4.92,0,0,0-1.15-3.37,3.52,3.52,0,0,0-2.66-1.16,3.57,3.57,0,0,0-2.77,1.22,4.72,4.72,0,0,0-1.07,3.31Z"/><path id="path5505" class="cls-1" d="M218.2,305.47h-5.12V286.13h4.75v2.75a8.25,8.25,0,0,1,2.2-2.56,4,4,0,0,1,2.21-.62,6.51,6.51,0,0,1,3.37,1L224,291.12a4.44,4.44,0,0,0-2.4-.84,2.83,2.83,0,0,0-1.82.6,4,4,0,0,0-1.17,2.13,30.16,30.16,0,0,0-.43,6.49Z"/><path id="path5509" class="cls-1" d="M238.74,305.47v-26.7h19.79v4.52h-14.4v5.92h13.4v4.5h-13.4V301H259v4.5Z"/><path id="path5513" class="cls-1" d="M276.57,305.47v-2.89a7.36,7.36,0,0,1-2.78,2.43,7.74,7.74,0,0,1-3.63.9,7.12,7.12,0,0,1-3.5-.86,5.05,5.05,0,0,1-2.24-2.4,10.75,10.75,0,0,1-.69-4.28V286.13h5.12V295a24.63,24.63,0,0,0,.28,5,2.79,2.79,0,0,0,1,1.46,3.2,3.2,0,0,0,1.89.53,4.07,4.07,0,0,0,2.35-.71,3.7,3.7,0,0,0,1.42-1.79,21,21,0,0,0,.38-5.22v-8.16h5.12v19.34Z"/><path id="path5517" class="cls-1" d="M291.78,305.47h-5.12V286.13h4.75v2.75a8.25,8.25,0,0,1,2.2-2.56,4,4,0,0,1,2.22-.62,6.5,6.5,0,0,1,3.36,1l-1.58,4.46a4.47,4.47,0,0,0-2.4-.84,2.84,2.84,0,0,0-1.83.6,4,4,0,0,0-1.17,2.13,30.16,30.16,0,0,0-.43,6.49Z"/><path id="path5521" class="cls-1" d="M300.47,295.53a10.49,10.49,0,0,1,1.26-4.94,8.62,8.62,0,0,1,3.56-3.64,10.66,10.66,0,0,1,5.15-1.25,9.62,9.62,0,0,1,7.19,2.85,9.81,9.81,0,0,1,2.81,7.2A10,10,0,0,1,317.6,303a9.59,9.59,0,0,1-7.13,2.89,11.25,11.25,0,0,1-5.07-1.2,8.25,8.25,0,0,1-3.67-3.53,11.68,11.68,0,0,1-1.26-5.65m5.25.27a6.37,6.37,0,0,0,1.37,4.41,4.45,4.45,0,0,0,6.72,0,6.47,6.47,0,0,0,1.36-4.45,6.36,6.36,0,0,0-1.36-4.37,4.45,4.45,0,0,0-6.72,0,6.37,6.37,0,0,0-1.37,4.41"/><path id="path5523" class="cls-1" d="M324.12,293.23h10.05v5.12H324.12Z"/><path id="path5527" class="cls-1" d="M335.11,305.47v-4.86l14-17.32H336.69v-4.52h19.54V283l-14.62,18H356.8v4.5Z"/><path id="path5531" class="cls-1" d="M364.25,292l-4.64-.84A7.24,7.24,0,0,1,362.3,287a9.86,9.86,0,0,1,5.68-1.35,12.21,12.21,0,0,1,5.1.81,5.06,5.06,0,0,1,2.36,2.06,10.52,10.52,0,0,1,.68,4.58l-.05,6a19.92,19.92,0,0,0,.25,3.75,10.72,10.72,0,0,0,.92,2.6h-5.06c-.14-.34-.3-.84-.5-1.51l-.18-.6a9.25,9.25,0,0,1-2.8,1.91,8.15,8.15,0,0,1-3.19.64,6.59,6.59,0,0,1-4.71-1.62,5.42,5.42,0,0,1-1.72-4.1,5.52,5.52,0,0,1,.78-2.92,5,5,0,0,1,2.2-2,17.3,17.3,0,0,1,4.07-1.19,27.69,27.69,0,0,0,5-1.26v-.51a2.63,2.63,0,0,0-.73-2.1,4.36,4.36,0,0,0-2.75-.63,3.65,3.65,0,0,0-2.13.54,3.7,3.7,0,0,0-1.24,1.88m6.85,4.15A30.72,30.72,0,0,1,368,297a9.31,9.31,0,0,0-2.78.89,2.13,2.13,0,0,0-1,1.8,2.52,2.52,0,0,0,.8,1.86,2.79,2.79,0,0,0,2,.78,4.42,4.42,0,0,0,2.64-.91,3.16,3.16,0,0,0,1.22-1.69,10.34,10.34,0,0,0,.2-2.5Z"/><path id="path5535" class="cls-1" d="M386.53,278.77v9.82a7.66,7.66,0,0,1,9.11-2.24,5.36,5.36,0,0,1,2.14,1.67,6.17,6.17,0,0,1,1,2.26,20,20,0,0,1,.26,3.85v11.34H393.9V295.26a15.65,15.65,0,0,0-.28-3.87,2.63,2.63,0,0,0-1-1.3,3.35,3.35,0,0,0-1.85-.48,4.28,4.28,0,0,0-2.28.62,3.53,3.53,0,0,0-1.46,1.86,10.93,10.93,0,0,0-.47,3.69v9.69h-5.12v-26.7Z"/><path id="path5537" class="cls-1" d="M404.47,278.77h5.12v26.7h-5.12Z"/><path id="path5541" class="cls-1" d="M427.83,305.47v-2.89a7.36,7.36,0,0,1-2.78,2.43,7.71,7.71,0,0,1-3.63.9,7.12,7.12,0,0,1-3.5-.86,5.05,5.05,0,0,1-2.24-2.4,10.75,10.75,0,0,1-.69-4.28V286.13h5.11V295a24.31,24.31,0,0,0,.29,5,2.74,2.74,0,0,0,1,1.46,3.2,3.2,0,0,0,1.89.53,4.1,4.1,0,0,0,2.35-.71,3.76,3.76,0,0,0,1.42-1.79,20.52,20.52,0,0,0,.38-5.22v-8.16h5.12v19.34Z"/><path id="path5545" class="cls-1" d="M455.74,305.47h-5.12V295.6a15.11,15.11,0,0,0-.33-4.05,2.88,2.88,0,0,0-1.07-1.43,3,3,0,0,0-1.77-.51,4.09,4.09,0,0,0-2.39.73,3.65,3.65,0,0,0-1.44,1.93,16.29,16.29,0,0,0-.39,4.44v8.76h-5.12V286.13h4.75V289a7.75,7.75,0,0,1,6.37-3.27,7.66,7.66,0,0,1,3.1.61,5.16,5.16,0,0,1,2.12,1.55,5.66,5.66,0,0,1,1,2.15,15.77,15.77,0,0,1,.29,3.44Z"/><path id="path5549" class="cls-1" d="M460.71,306.75l5.85.71a2,2,0,0,0,.67,1.4,3.82,3.82,0,0,0,2.3.55,5.85,5.85,0,0,0,3-.61,2.42,2.42,0,0,0,1-1.29,7.66,7.66,0,0,0,.24-2.35v-2.82a6.92,6.92,0,0,1-5.79,3.13,7.14,7.14,0,0,1-6.18-3.3,11.24,11.24,0,0,1-1.78-6.48c0-3.24.78-5.71,2.34-7.43a7.56,7.56,0,0,1,5.82-2.57,7.11,7.11,0,0,1,5.92,3.15v-2.71h4.78v17.36a17.28,17.28,0,0,1-.56,5.12,6.37,6.37,0,0,1-1.58,2.65,7,7,0,0,1-2.73,1.52,14.44,14.44,0,0,1-4.3.54q-4.92,0-7-1.68a5.31,5.31,0,0,1-2.06-4.27Zm4.58-11.35a7,7,0,0,0,1.19,4.51,3.68,3.68,0,0,0,2.94,1.43,4.08,4.08,0,0,0,3.17-1.47,6.37,6.37,0,0,0,1.29-4.34,6.73,6.73,0,0,0-1.24-4.46,4,4,0,0,0-3.13-1.46,3.77,3.77,0,0,0-3,1.43,6.67,6.67,0,0,0-1.19,4.36"/><path id="path5553" class="cls-1" d="M482.43,300l5.14-.78a3.74,3.74,0,0,0,1.32,2.27,4.47,4.47,0,0,0,2.81.77,5.08,5.08,0,0,0,3-.72,1.64,1.64,0,0,0,.68-1.37l-.37-1a4.11,4.11,0,0,0-1.71-.67q-6.18-1.37-7.85-2.5a5,5,0,0,1-2.3-4.35,5.41,5.41,0,0,1,2-4.23q2-1.71,6.16-1.71a10.77,10.77,0,0,1,5.9,1.3,6.59,6.59,0,0,1,2.66,3.82l-4.83.89a2.93,2.93,0,0,0-1.17-1.72,4.23,4.23,0,0,0-2.47-.61,5.55,5.55,0,0,0-2.9.57l-.58,1,.51.92a18.66,18.66,0,0,0,4.78,1.44,14.25,14.25,0,0,1,5.71,2.28,4.73,4.73,0,0,1,1.61,3.8,5.83,5.83,0,0,1-2.23,4.57q-2.22,1.92-6.57,1.92a10.79,10.79,0,0,1-6.26-1.6,7.39,7.39,0,0,1-3-4.36"/><path id="path5557" class="cls-1" d="M510.55,305.47l-7.79-19.34h5.37l3.64,9.87,1.06,3.3c.28-.84.45-1.39.53-1.66.17-.55.35-1.09.54-1.64l3.68-9.87h5.27l-7.69,19.34Z"/><path id="path5561" class="cls-1" d="M537.44,299.32l5.1.85a8.43,8.43,0,0,1-3.11,4.27,9.08,9.08,0,0,1-5.3,1.47q-5.05,0-7.47-3.3a11,11,0,0,1-1.91-6.66c0-3.21.83-5.72,2.51-7.53a8.25,8.25,0,0,1,6.35-2.73,8.61,8.61,0,0,1,6.82,2.85c1.66,1.91,2.45,4.81,2.38,8.74H530a5.21,5.21,0,0,0,1.24,3.54,3.88,3.88,0,0,0,2.95,1.26,3.12,3.12,0,0,0,2-.65,4,4,0,0,0,1.24-2.11m.29-5.18a4.92,4.92,0,0,0-1.15-3.37,3.52,3.52,0,0,0-2.65-1.16,3.57,3.57,0,0,0-2.77,1.22,4.72,4.72,0,0,0-1.08,3.31Z"/><path id="path5565" class="cls-1" d="M552.14,305.47H547V286.13h4.76v2.75a8.12,8.12,0,0,1,2.19-2.56,4,4,0,0,1,2.21-.62,6.48,6.48,0,0,1,3.37,1L558,291.12a4.49,4.49,0,0,0-2.4-.84,2.84,2.84,0,0,0-1.83.6,4,4,0,0,0-1.17,2.13,30.16,30.16,0,0,0-.43,6.49Z"/><path id="path5569" class="cls-1" d="M561.84,305.47v-26.7H567v14.17l6-6.81h6.29l-6.6,7.07,7.08,12.27H574.2l-4.86-8.69-2.39,2.5v6.19Z"/><path id="path5573" class="cls-1" d="M594.22,299.32l5.1.85a8.36,8.36,0,0,1-3.1,4.27,9.13,9.13,0,0,1-5.31,1.47q-5.05,0-7.47-3.3a11.09,11.09,0,0,1-1.91-6.66,10.69,10.69,0,0,1,2.51-7.53,8.28,8.28,0,0,1,6.36-2.73,8.57,8.57,0,0,1,6.81,2.85c1.66,1.91,2.46,4.81,2.39,8.74H586.77a5.26,5.26,0,0,0,1.24,3.54,3.88,3.88,0,0,0,3,1.26,3.1,3.1,0,0,0,2-.65,4,4,0,0,0,1.24-2.11m.3-5.18a4.92,4.92,0,0,0-1.15-3.37,3.69,3.69,0,0,0-5.43.06,4.77,4.77,0,0,0-1.08,3.31Z"/><path id="path5577" class="cls-1" d="M609.13,278.77v9.82a7.55,7.55,0,0,1,5.92-2.9,7.44,7.44,0,0,1,3.18.66,5.29,5.29,0,0,1,2.14,1.67,6.19,6.19,0,0,1,1,2.26,20.89,20.89,0,0,1,.26,3.85v11.34H616.5V295.26a15.46,15.46,0,0,0-.29-3.87,2.53,2.53,0,0,0-1-1.3,3.3,3.3,0,0,0-1.85-.48,4.28,4.28,0,0,0-2.28.62,3.58,3.58,0,0,0-1.46,1.86,11.23,11.23,0,0,0-.46,3.69v9.69H604v-26.7Z"/><path id="path5581" class="cls-1" d="M632,305.47h-5.12V286.13h4.75v2.75a8.25,8.25,0,0,1,2.2-2.56,4,4,0,0,1,2.22-.62,6.5,6.5,0,0,1,3.36,1l-1.58,4.46a4.49,4.49,0,0,0-2.4-.84,2.84,2.84,0,0,0-1.83.6A4,4,0,0,0,632.4,293a30.16,30.16,0,0,0-.43,6.49Z"/><path id="path5585" class="cls-1" d="M640,300l5.14-.78a3.79,3.79,0,0,0,1.33,2.27,4.46,4.46,0,0,0,2.8.77,5.11,5.11,0,0,0,3-.72,1.63,1.63,0,0,0,.67-1.37l-.36-1a4.24,4.24,0,0,0-1.71-.67q-6.2-1.37-7.85-2.5a5,5,0,0,1-2.3-4.35,5.41,5.41,0,0,1,2-4.23q2-1.71,6.16-1.71a10.71,10.71,0,0,1,5.89,1.3,6.55,6.55,0,0,1,2.66,3.82l-4.82.89a2.94,2.94,0,0,0-1.18-1.72,4.21,4.21,0,0,0-2.47-.61,5.53,5.53,0,0,0-2.89.57l-.58,1,.51.92a18.66,18.66,0,0,0,4.78,1.44,14.25,14.25,0,0,1,5.71,2.28,4.72,4.72,0,0,1,1.6,3.8,5.82,5.82,0,0,1-2.22,4.57c-1.48,1.28-3.68,1.92-6.58,1.92a10.78,10.78,0,0,1-6.25-1.6,7.4,7.4,0,0,1-3-4.36"/><path id="path5589" class="cls-1" d="M667.75,305.47h-5.12V286.13h4.75v2.75a8.25,8.25,0,0,1,2.2-2.56,4,4,0,0,1,2.21-.62,6.51,6.51,0,0,1,3.37,1l-1.58,4.46a4.47,4.47,0,0,0-2.41-.84,2.83,2.83,0,0,0-1.82.6,4.06,4.06,0,0,0-1.17,2.13,30.16,30.16,0,0,0-.43,6.49Z"/><path id="path5593" class="cls-1" d="M681.45,292l-4.65-.84a7.3,7.3,0,0,1,2.7-4.15,9.86,9.86,0,0,1,5.68-1.35,12.21,12.21,0,0,1,5.1.81,5.06,5.06,0,0,1,2.36,2.06,10.52,10.52,0,0,1,.68,4.58l-.05,6a19.92,19.92,0,0,0,.25,3.75,11.11,11.11,0,0,0,.91,2.6h-5.06c-.13-.34-.29-.84-.49-1.51l-.18-.6a9.13,9.13,0,0,1-2.8,1.91,8.15,8.15,0,0,1-3.19.64,6.6,6.6,0,0,1-4.71-1.62,5.38,5.38,0,0,1-1.72-4.1,5.52,5.52,0,0,1,.78-2.92,5.07,5.07,0,0,1,2.2-2,17.3,17.3,0,0,1,4.07-1.19,27.93,27.93,0,0,0,5-1.26v-.51a2.63,2.63,0,0,0-.73-2.1,4.34,4.34,0,0,0-2.75-.63,3.65,3.65,0,0,0-2.13.54,3.7,3.7,0,0,0-1.24,1.88m6.85,4.15a30.72,30.72,0,0,1-3.12.79,9.31,9.31,0,0,0-2.78.89,2.13,2.13,0,0,0-1,1.8,2.48,2.48,0,0,0,.8,1.86,2.79,2.79,0,0,0,2,.78,4.42,4.42,0,0,0,2.64-.91,3.16,3.16,0,0,0,1.22-1.69,10.34,10.34,0,0,0,.2-2.5Z"/><path id="path5597" class="cls-1" d="M711.36,305.47v-2.89a7.36,7.36,0,0,1-2.78,2.43,7.68,7.68,0,0,1-3.63.9,7.08,7.08,0,0,1-3.49-.86,5,5,0,0,1-2.24-2.4,10.56,10.56,0,0,1-.7-4.28V286.13h5.12V295a24.63,24.63,0,0,0,.28,5,2.79,2.79,0,0,0,1,1.46,3.22,3.22,0,0,0,1.89.53,4.07,4.07,0,0,0,2.35-.71,3.7,3.7,0,0,0,1.42-1.79,20.52,20.52,0,0,0,.38-5.22v-8.16h5.12v19.34Z"/><path id="path5601" class="cls-1" d="M721.29,286.13H726v2.64a7.59,7.59,0,0,1,6-3.08,6.47,6.47,0,0,1,3.22.77,5.87,5.87,0,0,1,2.24,2.31,9,9,0,0,1,2.75-2.31,6.73,6.73,0,0,1,3.15-.77,7,7,0,0,1,3.61.87,5.33,5.33,0,0,1,2.2,2.54,11.08,11.08,0,0,1,.53,4v12.36h-5.12V294.42a8.27,8.27,0,0,0-.53-3.72,2.43,2.43,0,0,0-2.18-1.09,3.46,3.46,0,0,0-2,.66,3.6,3.6,0,0,0-1.37,1.92,13.72,13.72,0,0,0-.42,4v9.29H733v-10.6a14.37,14.37,0,0,0-.27-3.64,2.31,2.31,0,0,0-.84-1.22,2.78,2.78,0,0,0-1.57-.4,3.68,3.68,0,0,0-2.12.64,3.43,3.43,0,0,0-1.36,1.84,13.75,13.75,0,0,0-.41,4v9.4h-5.12Z"/><path id="path5605" class="cls-1" d="M.23,245.68l7.7-.74a9.43,9.43,0,0,0,2.81,5.69,8.54,8.54,0,0,0,5.73,1.81,8.85,8.85,0,0,0,5.76-1.61,4.82,4.82,0,0,0,1.94-3.78,3.59,3.59,0,0,0-.82-2.37A6.48,6.48,0,0,0,20.51,243q-1.4-.5-6.34-1.71c-4.23-1.06-7.21-2.34-8.92-3.88a10.19,10.19,0,0,1-3.6-7.88,10,10,0,0,1,1.7-5.59,10.5,10.5,0,0,1,4.89-4,19.5,19.5,0,0,1,7.7-1.36q7.37,0,11.1,3.23A11.41,11.41,0,0,1,31,230.46l-7.91.35a6.76,6.76,0,0,0-2.17-4.35,8.06,8.06,0,0,0-5-1.32,9,9,0,0,0-5.39,1.42A2.85,2.85,0,0,0,9.21,229a3,3,0,0,0,1.17,2.38q1.5,1.26,7.27,2.61a38.46,38.46,0,0,1,8.53,2.82,11,11,0,0,1,4.33,4A11.7,11.7,0,0,1,32.07,247a11.48,11.48,0,0,1-1.87,6.3,11.21,11.21,0,0,1-5.29,4.37,22.23,22.23,0,0,1-8.52,1.43Q9,259.12,5,255.69t-4.76-10"/><path id="path5607" class="cls-1" d="M40.31,219.27h7.51v6.94H40.31Zm0,10.79h7.51v28.37H40.31Z"/><path id="path5611" class="cls-1" d="M83,258.42h-7.5V244A21.86,21.86,0,0,0,75,238a4.1,4.1,0,0,0-1.56-2.09,4.45,4.45,0,0,0-2.6-.75,6,6,0,0,0-3.5,1.07,5.3,5.3,0,0,0-2.12,2.83,24.1,24.1,0,0,0-.58,6.52v12.84H57.1V230.06h7v4.16A11.65,11.65,0,0,1,78,230.31a7.67,7.67,0,0,1,3.11,2.28,8.42,8.42,0,0,1,1.47,3.16A23.81,23.81,0,0,1,83,240.8Z"/><path id="path5615" class="cls-1" d="M91.51,260.29l8.57,1a2.94,2.94,0,0,0,1,2.05,5.56,5.56,0,0,0,3.36.8,8.73,8.73,0,0,0,4.41-.88,3.61,3.61,0,0,0,1.49-1.89,11.46,11.46,0,0,0,.35-3.45v-4.14a10.17,10.17,0,0,1-8.49,4.6,10.48,10.48,0,0,1-9.06-4.84,16.39,16.39,0,0,1-2.62-9.51q0-7.12,3.44-10.9a11.05,11.05,0,0,1,8.53-3.76,10.36,10.36,0,0,1,8.68,4.62v-4h7v25.45a25.46,25.46,0,0,1-.83,7.51,9.27,9.27,0,0,1-2.33,3.9,10.45,10.45,0,0,1-4,2.22,21.19,21.19,0,0,1-6.32.8q-7.22,0-10.23-2.47a7.76,7.76,0,0,1-3-6.27Zm6.71-16.63c0,3,.58,5.21,1.75,6.61a5.41,5.41,0,0,0,4.31,2.09,6,6,0,0,0,4.65-2.15q1.89-2.15,1.89-6.37,0-4.41-1.81-6.54a5.78,5.78,0,0,0-4.6-2.14,5.53,5.53,0,0,0-4.44,2.09q-1.75,2.1-1.75,6.41"/><path id="path5617" class="cls-1" d="M127.26,219.27h7.51v39.16h-7.51Z"/><path id="path5621" class="cls-1" d="M160.53,249.4l7.48,1.25a12.35,12.35,0,0,1-4.56,6.27,13.39,13.39,0,0,1-7.78,2.15q-7.39,0-11-4.84a16.31,16.31,0,0,1-2.8-9.78q0-7,3.69-11a12.14,12.14,0,0,1,9.32-4,12.58,12.58,0,0,1,10,4.18q3.66,4.17,3.5,12.81H149.6a7.62,7.62,0,0,0,1.82,5.19,5.67,5.67,0,0,0,4.33,1.86,4.6,4.6,0,0,0,3-1,5.9,5.9,0,0,0,1.82-3.09m.43-7.59a7.22,7.22,0,0,0-1.69-4.95,5.12,5.12,0,0,0-3.9-1.7,5.24,5.24,0,0,0-4.06,1.79,6.94,6.94,0,0,0-1.58,4.86Z"/><path id="path5625" class="cls-1" d="M193.06,258.42V219.27h29v6.62H201v8.68h19.66v6.6H201v10.66h21.88v6.59Z"/><path id="path5629" class="cls-1" d="M249.8,258.42v-4.24a11,11,0,0,1-4.07,3.58,11.44,11.44,0,0,1-5.33,1.3,10.37,10.37,0,0,1-5.13-1.25,7.38,7.38,0,0,1-3.28-3.53,15.62,15.62,0,0,1-1-6.27V230.06h7.51v13c0,4,.13,6.43.41,7.34a4,4,0,0,0,1.51,2.13,4.62,4.62,0,0,0,2.78.79,6,6,0,0,0,3.45-1,5.47,5.47,0,0,0,2.08-2.62q.56-1.58.56-7.65v-12h7.51v28.36Z"/><path id="path5633" class="cls-1" d="M273.37,258.42h-7.5V230.06h7v4a12.14,12.14,0,0,1,3.22-3.77,5.94,5.94,0,0,1,3.24-.9,9.6,9.6,0,0,1,4.95,1.41l-2.33,6.55a6.6,6.6,0,0,0-3.53-1.23,4.13,4.13,0,0,0-2.66.87,5.83,5.83,0,0,0-1.73,3.14q-.63,2.26-.63,9.5Z"/><path id="path5637" class="cls-1" d="M287.38,243.84a15.37,15.37,0,0,1,1.85-7.24,12.63,12.63,0,0,1,5.22-5.34,15.47,15.47,0,0,1,7.54-1.84,14.17,14.17,0,0,1,10.56,4.18,15.69,15.69,0,0,1-.05,21.23,14,14,0,0,1-10.45,4.23,16.38,16.38,0,0,1-7.44-1.76,12.1,12.1,0,0,1-5.38-5.16,17.25,17.25,0,0,1-1.85-8.3m7.7.4c0,2.82.66,5,2,6.47a6.56,6.56,0,0,0,9.87,0c1.32-1.5,2-3.67,2-6.52a9.37,9.37,0,0,0-2-6.41,6.56,6.56,0,0,0-9.87,0c-1.34,1.49-2,3.65-2,6.46"/><path id="path5641" class="cls-1" d="M341.07,258.42V219.27h12.68q7.22,0,9.41.58a10.27,10.27,0,0,1,5.63,3.84,12.16,12.16,0,0,1,2.27,7.62,12.7,12.7,0,0,1-1.31,6.07,10.86,10.86,0,0,1-3.32,3.86,11.51,11.51,0,0,1-4.1,1.85,45.52,45.52,0,0,1-8.2.56H349v14.77Zm7.9-32.53V237h4.33a20.45,20.45,0,0,0,6.25-.61,5.15,5.15,0,0,0,3.37-5,5.07,5.07,0,0,0-1.26-3.53,5.5,5.5,0,0,0-3.18-1.73,37.57,37.57,0,0,0-5.69-.27Z"/><path id="path5645" class="cls-1" d="M384.75,238.71l-6.81-1.23a10.64,10.64,0,0,1,3.95-6.09q2.81-2,8.34-2c3.34,0,5.83.39,7.47,1.19a7.39,7.39,0,0,1,3.46,3q1,1.83,1,6.72l-.07,8.76a30.51,30.51,0,0,0,.36,5.52,15.79,15.79,0,0,0,1.35,3.81h-7.43c-.2-.5-.44-1.24-.73-2.22-.12-.44-.2-.74-.26-.88a13.54,13.54,0,0,1-4.11,2.8,11.67,11.67,0,0,1-4.68.93,9.67,9.67,0,0,1-6.9-2.37,7.92,7.92,0,0,1-2.52-6,8.14,8.14,0,0,1,1.14-4.29,7.6,7.6,0,0,1,3.22-2.89,25.17,25.17,0,0,1,6-1.74,40.66,40.66,0,0,0,7.29-1.85v-.74a3.87,3.87,0,0,0-1.07-3.09c-.71-.61-2.05-.92-4-.92a5.37,5.37,0,0,0-3.13.79,5.5,5.5,0,0,0-1.81,2.76m10,6.09c-1,.32-2.48.7-4.56,1.15a13.87,13.87,0,0,0-4.09,1.31,3.13,3.13,0,0,0-1.47,2.65,3.68,3.68,0,0,0,1.18,2.72,4.1,4.1,0,0,0,3,1.15,6.51,6.51,0,0,0,3.87-1.34A4.67,4.67,0,0,0,394.5,250a15.18,15.18,0,0,0,.29-3.66Z"/><path id="path5649" class="cls-1" d="M407.65,230.06h8l6.79,20.14,6.62-20.14h7.77l-10,27.3L425,262.3a20.39,20.39,0,0,1-1.88,3.79,8.52,8.52,0,0,1-2.05,2.13,9.07,9.07,0,0,1-2.86,1.26,14.6,14.6,0,0,1-3.84.46,19.39,19.39,0,0,1-4.24-.46l-.67-5.87a16.66,16.66,0,0,0,3.18.35,4.73,4.73,0,0,0,3.87-1.54,10.76,10.76,0,0,0,1.93-3.91Z"/><path id="path5653" class="cls-1" d="M442.71,230.06h6.92v3.87a11.11,11.11,0,0,1,8.84-4.51,9.54,9.54,0,0,1,4.73,1.12,8.65,8.65,0,0,1,3.28,3.39,13.15,13.15,0,0,1,4-3.39,9.85,9.85,0,0,1,4.62-1.12,10.32,10.32,0,0,1,5.28,1.26,7.81,7.81,0,0,1,3.24,3.73,16.37,16.37,0,0,1,.77,5.88v18.14h-7.51V242.21c0-2.81-.25-4.63-.77-5.45a3.55,3.55,0,0,0-3.2-1.6,5.12,5.12,0,0,0-3,1,5.3,5.3,0,0,0-2,2.82,19.86,19.86,0,0,0-.62,5.86v13.63h-7.51V242.88a21.4,21.4,0,0,0-.4-5.34,3.36,3.36,0,0,0-1.23-1.79,4,4,0,0,0-2.29-.59,5.51,5.51,0,0,0-3.13.93,5.14,5.14,0,0,0-2,2.7,19.7,19.7,0,0,0-.61,5.85v13.79h-7.5Z"/><path id="path5657" class="cls-1" d="M510,249.4l7.48,1.25a12.35,12.35,0,0,1-4.56,6.27,13.39,13.39,0,0,1-7.78,2.15c-4.94,0-8.58-1.62-11-4.84a16.24,16.24,0,0,1-2.8-9.78q0-7,3.69-11a12.14,12.14,0,0,1,9.32-4,12.58,12.58,0,0,1,10,4.18c2.43,2.78,3.61,7.05,3.5,12.81H499.05a7.62,7.62,0,0,0,1.82,5.19,5.68,5.68,0,0,0,4.33,1.86,4.6,4.6,0,0,0,3-1A5.9,5.9,0,0,0,510,249.4m.43-7.59a7.22,7.22,0,0,0-1.69-4.95,5.12,5.12,0,0,0-3.9-1.7,5.24,5.24,0,0,0-4.06,1.79,6.94,6.94,0,0,0-1.58,4.86Z"/><path id="path5661" class="cls-1" d="M551.42,258.42h-7.51V244a22.44,22.44,0,0,0-.48-5.95,4.15,4.15,0,0,0-1.56-2.09,4.46,4.46,0,0,0-2.61-.75,6.08,6.08,0,0,0-3.5,1.07,5.35,5.35,0,0,0-2.12,2.83,24.64,24.64,0,0,0-.57,6.52v12.84h-7.51V230.06h7v4.16a11.38,11.38,0,0,1,9.35-4.8,11.18,11.18,0,0,1,4.54.89,7.67,7.67,0,0,1,3.11,2.28,8.12,8.12,0,0,1,1.47,3.16,23,23,0,0,1,.42,5.05Z"/><path id="path5665" class="cls-1" d="M573.68,230.06v6h-5.13v11.43a27.83,27.83,0,0,0,.15,4.05l.67.95a2.08,2.08,0,0,0,1.27.37,9.73,9.73,0,0,0,3-.72l.64,5.82a14.86,14.86,0,0,1-5.93,1.13,9.42,9.42,0,0,1-3.65-.68,5.34,5.34,0,0,1-2.39-1.77,6.86,6.86,0,0,1-1.06-2.92,36.47,36.47,0,0,1-.24-5.29V236h-3.45v-6H561v-5.64l7.53-4.38v10Z"/><path id="path5669" class="cls-1" d="M577.89,250.33l7.53-1.15a5.54,5.54,0,0,0,2,3.33,6.63,6.63,0,0,0,4.11,1.13,7.45,7.45,0,0,0,4.38-1.06,2.39,2.39,0,0,0,1-2,2,2,0,0,0-.53-1.41,6,6,0,0,0-2.51-1q-9.09-2-11.52-3.66a7.31,7.31,0,0,1-3.36-6.39,7.86,7.86,0,0,1,2.91-6.19c1.94-1.68,4.95-2.51,9-2.51q5.82,0,8.65,1.89a9.75,9.75,0,0,1,3.9,5.61l-7.08,1.31a4.37,4.37,0,0,0-1.72-2.54,6.37,6.37,0,0,0-3.62-.88,8.19,8.19,0,0,0-4.25.83,1.77,1.77,0,0,0-.85,1.52,1.64,1.64,0,0,0,.75,1.36q1,.75,7,2.12c4,.9,6.78,2,8.37,3.33a7,7,0,0,1,2.35,5.59,8.56,8.56,0,0,1-3.25,6.7q-3.27,2.81-9.65,2.81-5.79,0-9.17-2.36a10.74,10.74,0,0,1-4.42-6.38"/><path id="path5673" class="cls-1" d="M662.77,258.42h-8.61l-3.41-8.89H635.1l-3.24,8.89h-8.38l15.25-39.15h8.36Zm-14.56-15.49-5.4-14.53-5.28,14.53Z"/><path id="path5677" class="cls-1" d="M675.73,258.42h-7.5V230.06h7v4a12.14,12.14,0,0,1,3.22-3.77,5.94,5.94,0,0,1,3.24-.9,9.6,9.6,0,0,1,5,1.41l-2.33,6.55a6.6,6.6,0,0,0-3.53-1.23,4.13,4.13,0,0,0-2.66.87,5.83,5.83,0,0,0-1.73,3.14q-.63,2.26-.63,9.5Z"/><path id="path5681" class="cls-1" d="M707.91,249.4l7.48,1.25a12.35,12.35,0,0,1-4.56,6.27,13.41,13.41,0,0,1-7.78,2.15q-7.41,0-11-4.84a16.24,16.24,0,0,1-2.8-9.78q0-7,3.68-11a12.15,12.15,0,0,1,9.32-4,12.6,12.6,0,0,1,10,4.18q3.66,4.17,3.5,12.81H697a7.57,7.57,0,0,0,1.82,5.19,5.66,5.66,0,0,0,4.32,1.86,4.61,4.61,0,0,0,3-1,5.9,5.9,0,0,0,1.82-3.09m.42-7.59a7.17,7.17,0,0,0-1.68-4.95,5.14,5.14,0,0,0-3.9-1.7,5.22,5.22,0,0,0-4.06,1.79,6.94,6.94,0,0,0-1.58,4.86Z"/><path id="path5685" class="cls-1" d="M729.15,238.71l-6.81-1.23a10.6,10.6,0,0,1,4-6.09q2.79-2,8.33-2c3.34,0,5.84.39,7.48,1.19a7.41,7.41,0,0,1,3.45,3q1,1.83,1,6.72l-.07,8.76a30.51,30.51,0,0,0,.36,5.52,16.23,16.23,0,0,0,1.35,3.81h-7.43q-.3-.75-.72-2.22c-.13-.44-.21-.74-.27-.88a13.54,13.54,0,0,1-4.11,2.8,11.67,11.67,0,0,1-4.68.93,9.67,9.67,0,0,1-6.9-2.37,7.93,7.93,0,0,1-2.53-6,8.15,8.15,0,0,1,1.15-4.29,7.66,7.66,0,0,1,3.22-2.89,25.17,25.17,0,0,1,6-1.74,40.66,40.66,0,0,0,7.29-1.85v-.74a3.87,3.87,0,0,0-1.07-3.09c-.71-.61-2-.92-4-.92A5.33,5.33,0,0,0,731,236a5.44,5.44,0,0,0-1.82,2.76m10,6.09c-1,.32-2.48.7-4.56,1.15a13.87,13.87,0,0,0-4.09,1.31,3.13,3.13,0,0,0-1.47,2.65,3.68,3.68,0,0,0,1.18,2.72,4.1,4.1,0,0,0,3,1.15,6.51,6.51,0,0,0,3.87-1.34A4.67,4.67,0,0,0,738.9,250a15.18,15.18,0,0,0,.29-3.66Z"/><path id="path5689" class="cls-1" d="M166.63,65.38H115.31q0-12.63-3-16.95Q107.78,42,87.08,42,67,42,60.47,45.72T54,61.78Q54,73,59.73,76.51a24.14,24.14,0,0,0,10.94,2.95L81,80.19q33.27,2.2,41.56,3.1,26.31,2.64,38.15,14,9.3,8.85,11.09,23.13a161.91,161.91,0,0,1,1,19.3q0,24.75-4.72,36.24-8.56,21.08-38.52,26.65Q117.05,205,91.22,205q-43.11,0-60.07-5.14-20.82-6.33-27.46-25.6Q0,163.49,0,138.47H51.32v4.26q0,13.35,7.67,17.17a30,30,0,0,0,12.82,2.79H90.68q14.44,0,18.42-1.48,7.08-2.78,9.3-9a34.51,34.51,0,0,0,1.17-9.87q0-13.53-9.87-16.48-3.69-1.17-34.32-3.24-24.61-1.75-34.18-3.39Q16,114.55,7.62,99.84.24,87.35.25,62q0-19.27,4-30.91T17.07,13.45Q30,4.18,50.26,2.56,67.09,1.09,87.59,1.08q32.31,0,46,3.7,33.5,9,33.5,50.42,0,3.39-.5,10.18"/><path id="path5693" class="cls-1" d="M392.3,205V0H495.07q21.14,0,32.24,3.45Q552.66,11.39,561.36,36q4.5,12.9,4.5,38.84,0,31.19-5,44.83-9.89,27-40.64,31-3.62.62-30.76,1.06l-9.16.3H447.46V205Zm55.16-100.46h34.38c10.91-.39,17.54-1.23,19.93-2.54,3.25-1.79,5.45-5.38,6.53-10.76a90,90,0,0,0,1.05-16q0-13-2.09-19.29-3-8.82-14.25-10.76c-1.5-.2-5.06-.3-10.7-.3H447.46Z"/><path id="path5697" class="cls-1" d="M683.61,169.53H609.85L599.94,205H542.87L604.46,0h83.21L750,205H694.13Zm-11-39.92L646.81,40.76l-25.08,88.85Z"/><path id="path5701" class="cls-2" d="M316.16,28.83a72.52,72.52,0,0,1,56.4,26.9l11.89-25.5A104.24,104.24,0,0,0,312.63,1.82c-43.46,0-80.64,26.25-95.9,63.41H193.54L179.85,94.58h29.83c-.23,2.73-.37,5.45-.37,8.23a96.73,96.73,0,0,0,.51,10h-15l-13.69,29.36h36.3c15.69,36.22,52.41,61.65,95.19,61.65a104.51,104.51,0,0,0,58.14-17.5v-36a72.57,72.57,0,0,1-115.43-8.17h76l13.69-29.36H244.16a74.18,74.18,0,0,1-.8-10.82c0-2.49.13-4.95.37-7.38h109.8l13.69-29.35h-114a72.72,72.72,0,0,1,62.94-36.4"/><path id="path5705" class="cls-1" d="M316.16,29.71a71.56,71.56,0,0,1,55.72,26.58l.89,1.09.6-1.27,11.88-25.5.27-.58-.46-.44A106,106,0,0,0,253.61,18.87a102.25,102.25,0,0,0-37.69,46l.81-.55H193l-.24.51L179.06,94.21l-.59,1.26h31.21l-.88-1c-.25,3-.37,5.76-.37,8.3a100.71,100.71,0,0,0,.51,10.06l.88-1H194.27l-.23.5-13.7,29.36-.58,1.25h37.68l-.81-.53c16.37,37.77,54.05,62.18,96,62.18A105.34,105.34,0,0,0,371.25,187l.39-.26V148l-1.54,1.75a71.7,71.7,0,0,1-114-8.07l-.74,1.36h76.58l.24-.5,13.69-29.36.58-1.25H244.16l.87.75a74.19,74.19,0,0,1-.79-10.7c0-2.41.13-4.86.37-7.29l-.88.8H354.1l.23-.51L368,65.61l.59-1.26H253.22l.76,1.32a72.17,72.17,0,0,1,62.18-36m-62.94,36.4h114l-.8-1.25L352.74,94.21l.79-.5H242.94l-.09.79a74.67,74.67,0,0,0-.37,7.46,76.37,76.37,0,0,0,.81,11l.12.75H345.05l-.8-1.26-13.68,29.36.79-.51H253.71l.9,1.36a73.46,73.46,0,0,0,116.82,8.27l-1.55-.58v36l.39-.72a103.63,103.63,0,0,1-57.64,17.34c-41.25,0-78.3-24-94.38-61.12l-.23-.53H181.14l.8,1.26,13.69-29.36-.8.51h16l-.1-1c-.33-3.32-.5-6.65-.5-9.89,0-2.49.12-5.16.37-8.15l.08-1H179.85l.8,1.25,13.69-29.35-.8.5h23.78l.22-.54A100.56,100.56,0,0,1,254.6,20.33,104.24,104.24,0,0,1,383.85,30.87l-.2-1-11.88,25.5,1.48-.19a73.49,73.49,0,0,0-120.79,9.62l-.77,1.32Z"/></svg>
assets/images/sofort.svg CHANGED
@@ -1 +1 @@
1
- <svg id="svg4722" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 232.5"><defs><style>.cls-1{fill:#ee7f00;}.cls-2{fill:#383a41;}</style></defs><title>sofort</title><g id="layer1"><path id="path66" class="cls-1" d="M248,0a69,69,0,0,0-29.55,6.76c-13.34,6.32-25.44,16.86-35.32,30.84A133.77,133.77,0,0,0,167,69c-8.11,22.22-8,40.24.27,52.12,4.71,6.71,14.48,14.73,34.35,14.75h.08c36.2,0,63.23-23.73,80.34-70.53,4.52-12.38,10.49-35.49-.41-51.08C275,4.8,263.73,0,248,0ZM466.48,0a69,69,0,0,0-29.54,6.76c-13.35,6.32-25.44,16.86-35.32,30.84A133.39,133.39,0,0,0,385.4,69c-8.12,22.22-8,40.24.28,52.12,4.69,6.71,14.46,14.73,34.35,14.75h.06c36.21,0,63.24-23.73,80.34-70.53C505,52.93,510.92,29.82,500,14.23,493.43,4.8,482.17,0,466.48,0ZM131.78,1.88c-11.92,0-23.49,0-33.86,5.26S78.4,22.93,71.35,44a42.11,42.11,0,0,0-2.44,11.82,17.78,17.78,0,0,0,1.77,8.79A25.67,25.67,0,0,0,78.05,73a36.25,36.25,0,0,0,11.22,5.67l5,1.42c2.63.76,5.71,1.66,7.66,2.25a15.94,15.94,0,0,1,3.53,1.49,7.18,7.18,0,0,1,2.81,2.84,6.24,6.24,0,0,1,.67,2.72,9,9,0,0,1-.52,3.16,8.61,8.61,0,0,1-5.24,5.83c-2.78,1.13-6.88,1.49-13.11,1.53H12.29L0,133.65H83.23c7.83,0,22.15,0,35.91-5.85s27-17.52,32.54-40.9c2.1-8.79,1.45-16-2-21.57S140,55.63,130.9,53l-4.43-1.28-6.54-1.88a8.73,8.73,0,0,1-5.18-3.73,7.31,7.31,0,0,1-.77-5.91A8.6,8.6,0,0,1,118.29,35a17.48,17.48,0,0,1,8.42-1.88h48.38c.34-.49.65-1,1-1.52A107,107,0,0,1,207.34,1.88Zm217.45,0c-21.52,0-37.55,10.89-45.12,31.28L267.54,133.65H307.6L326.4,82l35.41,0,10.07-27.67-35.29,0,5.68-16a8.47,8.47,0,0,1,8.16-5.16l41.75,0c.35-.5.66-1,1-1.53C402,19.14,414.53,9,426.24,1.88ZM535.11,2l-48,131.78h40.75l17.44-46.38c.85,1.91,11.14,46.38,11.14,46.38h42.85s-7.79-32.68-13.52-45.88a73.16,73.16,0,0,0-5.07-10.38c12.1-4.49,29.64-14.15,36.91-33.71,4.46-12,4.2-21.75-.76-28.88C610.86,6.23,598.63,2,579.47,2ZM618.7,2a32.59,32.59,0,0,1,6.65,7c4.74,6.83,6.56,15,5.47,24.26h24.27L618.52,133.76h36.54l36.6-100.51h47L750,2ZM562,29.16h6.73c12.3,0,16.88,3.61,12.72,14.83-3.91,10.54-10.94,17-24.3,17h-7L562,29.16Zm-323.53.65h0c12.51,0,15.38,7.28,4.39,37.35h0c-11.3,30.91-19.49,38.69-31.83,38.69h0c-12,0-16.24-7.62-5-38.38,8.4-23,19.28-37.66,32.44-37.66Zm218.44,0h0c12.51,0,15.39,7.28,4.39,37.35-11.29,30.91-19.49,38.69-31.82,38.69h0c-12,0-16.22-7.62-5-38.38,8.39-23,19.27-37.66,32.43-37.66Z"/><path id="path98" class="cls-2" d="M39.62,147.61A9.86,9.86,0,0,0,33.86,149a10.36,10.36,0,0,0-3.23,5c-.83,2.3-1,3.89-.38,4.8s2.16,1.36,4.76,1.36,4.53-.46,5.8-1.42A10.36,10.36,0,0,0,44,153.78c.85-2.33,1-3.93.42-4.83S42.25,147.61,39.62,147.61Zm22.1,0c-2.6,0-4.53.47-5.79,1.39a10.42,10.42,0,0,0-3.21,5c-.83,2.3-1,3.89-.4,4.8s2.14,1.36,4.74,1.36,4.52-.46,5.82-1.42a10.46,10.46,0,0,0,3.22-4.95c.84-2.33,1-3.93.39-4.83S64.31,147.61,61.72,147.61Zm412.47,17.15a35.45,35.45,0,0,0-8.95,1.15,30.25,30.25,0,0,0-8.25,3.52,29.08,29.08,0,0,0-6.86,5.91,26.88,26.88,0,0,0-4.75,8.27,18.26,18.26,0,0,0-1.34,7,11.76,11.76,0,0,0,1.3,5.08,11.92,11.92,0,0,0,3.09,3.69,28,28,0,0,0,4.1,2.75c1.46.81,2.88,1.59,4.27,2.31a19,19,0,0,1,3.57,2.33,6.87,6.87,0,0,1,2.13,2.82,5.27,5.27,0,0,1-.17,3.82,12.17,12.17,0,0,1-2,3.49,12,12,0,0,1-3,2.63,14.53,14.53,0,0,1-3.86,1.64,17.21,17.21,0,0,1-4.56.59,19.57,19.57,0,0,1-6.19-.84,20.25,20.25,0,0,1-6.79-3.69,2.93,2.93,0,0,0-1.71-.83,1.9,1.9,0,0,0-1,.28,3.06,3.06,0,0,0-.95.93,10.1,10.1,0,0,0-.95,1.72c-.33.7-.69,1.59-1.06,2.62a18.72,18.72,0,0,0-1,3.57,2.79,2.79,0,0,0,.25,1.9,6.21,6.21,0,0,0,1.6,1.52,14.75,14.75,0,0,0,3.11,1.64,27.14,27.14,0,0,0,4.64,1.34,30.58,30.58,0,0,0,6.1.55,38,38,0,0,0,9.88-1.31,34.33,34.33,0,0,0,9.11-3.92,31.82,31.82,0,0,0,7.58-6.5,29,29,0,0,0,5.21-9.05,17.51,17.51,0,0,0,1.28-6.84,11.58,11.58,0,0,0-1.35-5.06,12,12,0,0,0-3.16-3.7,32.08,32.08,0,0,0-4.15-2.75c-1.46-.81-2.9-1.57-4.32-2.3a20.51,20.51,0,0,1-3.67-2.33,6.71,6.71,0,0,1-2.17-2.82,5.39,5.39,0,0,1,.19-3.78,10.66,10.66,0,0,1,1.55-2.78,9.63,9.63,0,0,1,2.43-2.24,12.4,12.4,0,0,1,3.23-1.47,14.39,14.39,0,0,1,4-.53,15.5,15.5,0,0,1,4.86.68,18.05,18.05,0,0,1,3.53,1.52,22.62,22.62,0,0,1,2.42,1.54,2.91,2.91,0,0,0,1.52.71,1.64,1.64,0,0,0,1-.31,3.18,3.18,0,0,0,.87-1,13.4,13.4,0,0,0,.85-1.67c.29-.66.63-1.49,1-2.47s.57-1.62.74-2.2a10.11,10.11,0,0,0,.37-1.47,3.8,3.8,0,0,0,0-.93,2.1,2.1,0,0,0-.37-.86,5,5,0,0,0-1.61-1.27,17.4,17.4,0,0,0-3.1-1.37,25.7,25.7,0,0,0-4-.95,28,28,0,0,0-4.52-.35Zm210,0a46.76,46.76,0,0,0-14.89,2.38A47.4,47.4,0,0,0,656,174a51.92,51.92,0,0,0-10.83,10.87,56.71,56.71,0,0,0-7.68,14.44,40.36,40.36,0,0,0-2.78,13.92,19,19,0,0,0,2.76,10.42,17.19,17.19,0,0,0,8.13,6.52,34.19,34.19,0,0,0,13.21,2.25c1.79,0,3.59-.08,5.42-.25s3.68-.42,5.54-.76,3.68-.74,5.47-1.21,3.31-.92,4.57-1.36a6.47,6.47,0,0,0,2.83-1.8,8.82,8.82,0,0,0,1.49-2.66l9.48-26a5.92,5.92,0,0,0,.39-1.8,2.58,2.58,0,0,0-.24-1.34,1.81,1.81,0,0,0-.81-.83,2.8,2.8,0,0,0-1.34-.29H669.53a1.71,1.71,0,0,0-.91.29,3.78,3.78,0,0,0-.92.86,9.1,9.1,0,0,0-.94,1.54,22.49,22.49,0,0,0-1,2.37,10.82,10.82,0,0,0-.91,3.87c.07.76.4,1.14,1,1.14h12.39l-5.53,15.17a23.09,23.09,0,0,1-4.59,1.52,22.28,22.28,0,0,1-4.58.5,18.87,18.87,0,0,1-7.79-1.46,10.26,10.26,0,0,1-4.86-4.36,13.85,13.85,0,0,1-1.57-7.14,30.73,30.73,0,0,1,2.1-9.89,39,39,0,0,1,4.87-9.33,34.87,34.87,0,0,1,6.82-7.23,30.4,30.4,0,0,1,8.27-4.65,28.48,28.48,0,0,1,16.68-.73,29.39,29.39,0,0,1,5.07,2,21.07,21.07,0,0,1,3.17,2,3.37,3.37,0,0,0,1.8.91,1.77,1.77,0,0,0,.87-.25,3.52,3.52,0,0,0,.88-.89,11.68,11.68,0,0,0,1-1.7,23,23,0,0,0,1-2.52,19.26,19.26,0,0,0,1.08-3.82,3,3,0,0,0-.25-2,6.4,6.4,0,0,0-1.79-1.68,16.4,16.4,0,0,0-3.68-1.79,33.79,33.79,0,0,0-5.57-1.41A43.22,43.22,0,0,0,684.15,164.8Zm-413.32.81c-1.72,0-3.07,0-4.07.13a5,5,0,0,0-2.32.68,2.8,2.8,0,0,0-1.15,1.6,15.72,15.72,0,0,0-.54,2.86L256.84,228a5.55,5.55,0,0,0,0,2A1.72,1.72,0,0,0,258,231a8.54,8.54,0,0,0,2.57.51c1.14.08,2.68.12,4.63.12s3.36,0,4.52-.12a11.46,11.46,0,0,0,2.88-.54,4.7,4.7,0,0,0,1.85-1.13,9.46,9.46,0,0,0,1.4-1.9l25-41.46h.1L296.28,228a4.85,4.85,0,0,0,0,2,1.66,1.66,0,0,0,1.06,1.11,8.47,8.47,0,0,0,2.57.51c1.13.08,2.66.12,4.58.12,1.71,0,3.15,0,4.29-.12a13.3,13.3,0,0,0,2.91-.51,5.3,5.3,0,0,0,2-1.11,9,9,0,0,0,1.55-2L351,171a27.78,27.78,0,0,0,1.61-3,1.79,1.79,0,0,0,.11-1.65,2,2,0,0,0-1.54-.68,32.92,32.92,0,0,0-3.41-.13c-1.59,0-2.84,0-3.75.13a8.33,8.33,0,0,0-2.19.46,3.08,3.08,0,0,0-1.28.9,11.55,11.55,0,0,0-.92,1.39l-29.66,50h-.09l5.77-49.76a5,5,0,0,0,0-1.62,1.37,1.37,0,0,0-.8-.93,6.11,6.11,0,0,0-2.06-.43c-1-.07-2.22-.1-3.84-.1s-2.75,0-3.68.13a9.47,9.47,0,0,0-2.32.46,3.56,3.56,0,0,0-1.45.93,9.14,9.14,0,0,0-1.1,1.56l-30,49.76h-.05l6.76-50.11a4.45,4.45,0,0,0,.13-1.49,1,1,0,0,0-.66-.8,5.74,5.74,0,0,0-2-.36c-.91-.05-2.15-.08-3.74-.08Zm157.78,0a29.46,29.46,0,0,0-3.25.15,14.63,14.63,0,0,0-2.19.41,3.69,3.69,0,0,0-1.35.66,2.22,2.22,0,0,0-.67.91l-22.48,61.78a1.15,1.15,0,0,0,0,.91,1.31,1.31,0,0,0,.84.65,8,8,0,0,0,1.9.41,27.12,27.12,0,0,0,3.16.15,30,30,0,0,0,3.29-.15,11.4,11.4,0,0,0,2.16-.41,3.49,3.49,0,0,0,1.34-.65,2.17,2.17,0,0,0,.65-.91l22.49-61.78a1.15,1.15,0,0,0,0-.91,1.43,1.43,0,0,0-.85-.66,8.87,8.87,0,0,0-1.87-.41,27,27,0,0,0-3.18-.15Zm-404.48,0a29.89,29.89,0,0,0-3.3.16,14.52,14.52,0,0,0-2.19.4,3.37,3.37,0,0,0-1.33.66,2.33,2.33,0,0,0-.64.91L2.2,207.53A31,31,0,0,0,0,218.47a13.51,13.51,0,0,0,2.35,7.81A13.24,13.24,0,0,0,8.94,231a31.46,31.46,0,0,0,10.51,1.54,42.32,42.32,0,0,0,12.25-1.72,35.1,35.1,0,0,0,18.45-13A42.6,42.6,0,0,0,55.84,207l14.28-39.23a1.2,1.2,0,0,0,0-.91,1.27,1.27,0,0,0-.82-.66,8.73,8.73,0,0,0-1.85-.4,25.29,25.29,0,0,0-3.11-.16,29.9,29.9,0,0,0-3.26.16,14.05,14.05,0,0,0-2.19.4,3.36,3.36,0,0,0-1.3.66,2.23,2.23,0,0,0-.64.91L42.64,207.12a26.21,26.21,0,0,1-3.17,6.15,20.61,20.61,0,0,1-4.32,4.54,18.07,18.07,0,0,1-5.22,2.81,18.28,18.28,0,0,1-5.95,1,13.26,13.26,0,0,1-5.25-.93,6.93,6.93,0,0,1-3.28-2.81,8.69,8.69,0,0,1-1-4.73,21.87,21.87,0,0,1,1.5-6.75L30,167.74a1.19,1.19,0,0,0,0-.91,1.4,1.4,0,0,0-.85-.66,9.11,9.11,0,0,0-1.87-.4,26.25,26.25,0,0,0-3.13-.16Zm490.51,0a29.69,29.69,0,0,0-3.29.16,12.37,12.37,0,0,0-2.19.4,3.49,3.49,0,0,0-1.34.66,2.31,2.31,0,0,0-.63.91l-14.48,39.78a30.81,30.81,0,0,0-2.18,10.95,13.43,13.43,0,0,0,2.33,7.81,13.27,13.27,0,0,0,6.6,4.68A31.4,31.4,0,0,0,510,232.5a42.44,42.44,0,0,0,12.26-1.71,35.11,35.11,0,0,0,18.44-13A42.46,42.46,0,0,0,546.35,207l14.29-39.23a1.11,1.11,0,0,0-.8-1.57,7.75,7.75,0,0,0-1.85-.4,25.52,25.52,0,0,0-3.11-.16,29.9,29.9,0,0,0-3.26.16,12.16,12.16,0,0,0-2.2.4,3.43,3.43,0,0,0-1.3.66,2.31,2.31,0,0,0-.63.91l-14.33,39.38a26.6,26.6,0,0,1-3.17,6.15,21.07,21.07,0,0,1-4.32,4.54,17.6,17.6,0,0,1-5.22,2.81,18.43,18.43,0,0,1-6,1,13.23,13.23,0,0,1-5.24-.94,6.88,6.88,0,0,1-3.28-2.81,8.49,8.49,0,0,1-1-4.73,21.82,21.82,0,0,1,1.49-6.75l14.06-38.62a1.15,1.15,0,0,0,0-.91,1.41,1.41,0,0,0-.84-.66,8,8,0,0,0-1.88-.4,26.13,26.13,0,0,0-3.13-.16Zm113.69.1c-1.22,0-2.23,0-3,.13a8.46,8.46,0,0,0-2,.43A4,4,0,0,0,622,167a2.23,2.23,0,0,0-.64.91l-11.18,30.69q-1.26,3.49-2.58,7.33t-2.46,7.38h0c-.12-1.35-.24-2.7-.4-4s-.31-2.72-.47-4.12-.36-2.8-.58-4.2-.43-2.82-.64-4.28l-4-23.91a18.82,18.82,0,0,0-.67-3.31,5.24,5.24,0,0,0-1.18-2.09,4.33,4.33,0,0,0-2-1.1,12,12,0,0,0-3.11-.32h-7.13a7,7,0,0,0-3.85,1.18,6.86,6.86,0,0,0-2.68,3.57L557,229.47a1.47,1.47,0,0,0-.09.91,1.17,1.17,0,0,0,.66.68,5.79,5.79,0,0,0,1.67.44,24.23,24.23,0,0,0,2.87.15,28.27,28.27,0,0,0,3-.15,9.89,9.89,0,0,0,2-.44,3.37,3.37,0,0,0,1.21-.68,2.41,2.41,0,0,0,.6-.91l12.47-34.23c.93-2.56,1.8-5.05,2.61-7.45s1.59-4.83,2.34-7.26h.1c0,2,.18,4,.39,6.15s.45,4.06.73,5.88l5.15,30.59a35.12,35.12,0,0,0,.77,4.12,7.21,7.21,0,0,0,1.18,2.52,3.88,3.88,0,0,0,1.91,1.3,10.1,10.1,0,0,0,2.94.35h5.65a7.53,7.53,0,0,0,2-.28,6.58,6.58,0,0,0,1.95-.88,8,8,0,0,0,1.63-1.51,7.15,7.15,0,0,0,1.16-2.08l21.4-58.8a1.4,1.4,0,0,0,.08-.91,1.24,1.24,0,0,0-.63-.71,4.28,4.28,0,0,0-1.64-.43,26.73,26.73,0,0,0-2.82-.13Zm-472,.21a5.69,5.69,0,0,0-3.18,1,6.29,6.29,0,0,0-2.3,3.21l-20.76,57c-.53,1.49-.54,2.56,0,3.21a2.92,2.92,0,0,0,2.44,1h32.86a2,2,0,0,0,.95-.28,3.45,3.45,0,0,0,.94-.88,9,9,0,0,0,1-1.6,23.7,23.7,0,0,0,1-2.45,22.93,22.93,0,0,0,.77-2.45,6.17,6.17,0,0,0,.2-1.6,1.34,1.34,0,0,0-.31-.88,1,1,0,0,0-.73-.27H145.57l6.71-18.46h19.77a2,2,0,0,0,.93-.25,3.21,3.21,0,0,0,.93-.84,7.67,7.67,0,0,0,.94-1.54,22.89,22.89,0,0,0,1-2.42,20.08,20.08,0,0,0,.75-2.41,5.17,5.17,0,0,0,.19-1.56,1.24,1.24,0,0,0-.32-.86,1,1,0,0,0-.73-.28H156l5.8-16h23.36a1.7,1.7,0,0,0,.92-.28,3.73,3.73,0,0,0,.93-.88,9.92,9.92,0,0,0,.95-1.6,23.11,23.11,0,0,0,1-2.4,21.7,21.7,0,0,0,.79-2.5,6.34,6.34,0,0,0,.21-1.62,1.26,1.26,0,0,0-.29-.88,1,1,0,0,0-.71-.25Zm54.86,0a5.6,5.6,0,0,0-3.16,1,6.24,6.24,0,0,0-2.31,3.21l-21.62,59.41a1.25,1.25,0,0,0,0,.91,1.3,1.3,0,0,0,.83.66,8.3,8.3,0,0,0,1.9.4,26.38,26.38,0,0,0,3.15.16,29.69,29.69,0,0,0,3.29-.16,12.68,12.68,0,0,0,2.17-.4,3.75,3.75,0,0,0,1.33-.66,2.19,2.19,0,0,0,.66-.91l9.07-24.93h4.15a8.19,8.19,0,0,1,3.5.66,5,5,0,0,1,2.15,1.95,9.18,9.18,0,0,1,1.07,3.21,43.23,43.23,0,0,1,.48,4.4l.55,14.61a2.92,2.92,0,0,0,.12,1,1.29,1.29,0,0,0,.78.71,6,6,0,0,0,1.85.38c.83.07,1.94.11,3.36.11,1.69,0,3,0,4-.11a11.32,11.32,0,0,0,2.35-.35,2.61,2.61,0,0,0,1.2-.63,2.86,2.86,0,0,0,.54-.94,5.71,5.71,0,0,0,.25-1.39,27.52,27.52,0,0,0,0-2.81L232,212.53a33.94,33.94,0,0,0-.45-4.17,15.36,15.36,0,0,0-1-3.29,8.18,8.18,0,0,0-1.53-2.44,8.51,8.51,0,0,0-2.13-1.72,32.17,32.17,0,0,0,6.33-2.53,27.42,27.42,0,0,0,5.34-3.7,25.25,25.25,0,0,0,4.21-4.82,27.78,27.78,0,0,0,3-6,19.5,19.5,0,0,0,1.35-6.91,10,10,0,0,0-1.47-5.2,10.1,10.1,0,0,0-4.07-3.56,20.27,20.27,0,0,0-6.4-1.93c-.87-.1-1.85-.18-2.94-.25s-2.49-.1-4.21-.1Zm159.74,0a5.66,5.66,0,0,0-3.17,1,6.29,6.29,0,0,0-2.3,3.21l-20.76,57c-.54,1.49-.55,2.56,0,3.21a3,3,0,0,0,2.46,1h32.86a1.92,1.92,0,0,0,.94-.28,3.31,3.31,0,0,0,.94-.88,7.93,7.93,0,0,0,1-1.6,21.51,21.51,0,0,0,1-2.45h0a22.93,22.93,0,0,0,.77-2.45,5.7,5.7,0,0,0,.19-1.6,1.24,1.24,0,0,0-.31-.88,1,1,0,0,0-.73-.27H360.17l6.72-18.46h19.76a1.91,1.91,0,0,0,.93-.25,3.11,3.11,0,0,0,.94-.84,8.16,8.16,0,0,0,.94-1.54,22.89,22.89,0,0,0,1-2.42,21.76,21.76,0,0,0,.74-2.41,5.24,5.24,0,0,0,.2-1.56,1.28,1.28,0,0,0-.32-.86,1,1,0,0,0-.73-.28H370.59l5.81-16h23.35a1.76,1.76,0,0,0,.93-.28,3.71,3.71,0,0,0,.92-.88,8.13,8.13,0,0,0,.95-1.6,22.78,22.78,0,0,0,1-2.4,23.07,23.07,0,0,0,.77-2.5,5.92,5.92,0,0,0,.21-1.62,1.26,1.26,0,0,0-.28-.88,1,1,0,0,0-.72-.25Zm-277.34,0a5.71,5.71,0,0,0-3.17,1,6.3,6.3,0,0,0-2.31,3.21l-20.76,57c-.53,1.49-.55,2.55,0,3.21a2.93,2.93,0,0,0,2.45,1h17.4a52.21,52.21,0,0,0,7.32-.48,41.43,41.43,0,0,0,6.59-1.49,36.68,36.68,0,0,0,6.12-2.58,29.57,29.57,0,0,0,5.41-3.73,29.15,29.15,0,0,0,4.47-5,27,27,0,0,0,3.27-6.32,17.19,17.19,0,0,0,1.18-6,10.54,10.54,0,0,0-1.06-4.67,8.53,8.53,0,0,0-2.91-3.26A12.18,12.18,0,0,0,113,196a22.78,22.78,0,0,0,4.65-2.13,22.21,22.21,0,0,0,4-3,23.12,23.12,0,0,0,3.15-3.81,22.6,22.6,0,0,0,2.24-4.48,16.28,16.28,0,0,0,1.17-7.38,8.34,8.34,0,0,0-2.49-5.18,13.12,13.12,0,0,0-5.92-3.06,38.87,38.87,0,0,0-9.81-1Zm5.48,10h6.72a15.49,15.49,0,0,1,4.72.55A5.25,5.25,0,0,1,113,178a4.13,4.13,0,0,1,.87,2.6,10.06,10.06,0,0,1-.67,3.54,13.78,13.78,0,0,1-1.79,3.36,12.76,12.76,0,0,1-2.71,2.78,12.29,12.29,0,0,1-3.53,1.87,15.12,15.12,0,0,1-4.86.69H92.84Zm117.78.2h6a30.89,30.89,0,0,1,3.52.16,14.76,14.76,0,0,1,2.14.39c2,.62,3.23,1.65,3.67,3.14a8.83,8.83,0,0,1-.52,5.46,14.17,14.17,0,0,1-2.11,3.84,13.29,13.29,0,0,1-3.2,3A15.21,15.21,0,0,1,222,194a18.54,18.54,0,0,1-5.2.68h-6.77ZM89.3,202.58h7.89a19.65,19.65,0,0,1,5.68.65,6.62,6.62,0,0,1,3.07,1.87,5,5,0,0,1,1.11,3,10.13,10.13,0,0,1-.71,4.07,13,13,0,0,1-2.19,3.87,13.62,13.62,0,0,1-3.21,2.82A14.23,14.23,0,0,1,97,220.6a18.29,18.29,0,0,1-4.87.57H82.54Z"/></g></svg>
1
+ <svg id="svg4722" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 232.5" preserveAspectRatio="xMidYMid meet"><defs><style>.cls-1{fill:#ee7f00;}.cls-2{fill:#383a41;}</style></defs><title>sofort</title><g id="layer1"><path id="path66" class="cls-1" d="M248,0a69,69,0,0,0-29.55,6.76c-13.34,6.32-25.44,16.86-35.32,30.84A133.77,133.77,0,0,0,167,69c-8.11,22.22-8,40.24.27,52.12,4.71,6.71,14.48,14.73,34.35,14.75h.08c36.2,0,63.23-23.73,80.34-70.53,4.52-12.38,10.49-35.49-.41-51.08C275,4.8,263.73,0,248,0ZM466.48,0a69,69,0,0,0-29.54,6.76c-13.35,6.32-25.44,16.86-35.32,30.84A133.39,133.39,0,0,0,385.4,69c-8.12,22.22-8,40.24.28,52.12,4.69,6.71,14.46,14.73,34.35,14.75h.06c36.21,0,63.24-23.73,80.34-70.53C505,52.93,510.92,29.82,500,14.23,493.43,4.8,482.17,0,466.48,0ZM131.78,1.88c-11.92,0-23.49,0-33.86,5.26S78.4,22.93,71.35,44a42.11,42.11,0,0,0-2.44,11.82,17.78,17.78,0,0,0,1.77,8.79A25.67,25.67,0,0,0,78.05,73a36.25,36.25,0,0,0,11.22,5.67l5,1.42c2.63.76,5.71,1.66,7.66,2.25a15.94,15.94,0,0,1,3.53,1.49,7.18,7.18,0,0,1,2.81,2.84,6.24,6.24,0,0,1,.67,2.72,9,9,0,0,1-.52,3.16,8.61,8.61,0,0,1-5.24,5.83c-2.78,1.13-6.88,1.49-13.11,1.53H12.29L0,133.65H83.23c7.83,0,22.15,0,35.91-5.85s27-17.52,32.54-40.9c2.1-8.79,1.45-16-2-21.57S140,55.63,130.9,53l-4.43-1.28-6.54-1.88a8.73,8.73,0,0,1-5.18-3.73,7.31,7.31,0,0,1-.77-5.91A8.6,8.6,0,0,1,118.29,35a17.48,17.48,0,0,1,8.42-1.88h48.38c.34-.49.65-1,1-1.52A107,107,0,0,1,207.34,1.88Zm217.45,0c-21.52,0-37.55,10.89-45.12,31.28L267.54,133.65H307.6L326.4,82l35.41,0,10.07-27.67-35.29,0,5.68-16a8.47,8.47,0,0,1,8.16-5.16l41.75,0c.35-.5.66-1,1-1.53C402,19.14,414.53,9,426.24,1.88ZM535.11,2l-48,131.78h40.75l17.44-46.38c.85,1.91,11.14,46.38,11.14,46.38h42.85s-7.79-32.68-13.52-45.88a73.16,73.16,0,0,0-5.07-10.38c12.1-4.49,29.64-14.15,36.91-33.71,4.46-12,4.2-21.75-.76-28.88C610.86,6.23,598.63,2,579.47,2ZM618.7,2a32.59,32.59,0,0,1,6.65,7c4.74,6.83,6.56,15,5.47,24.26h24.27L618.52,133.76h36.54l36.6-100.51h47L750,2ZM562,29.16h6.73c12.3,0,16.88,3.61,12.72,14.83-3.91,10.54-10.94,17-24.3,17h-7L562,29.16Zm-323.53.65h0c12.51,0,15.38,7.28,4.39,37.35h0c-11.3,30.91-19.49,38.69-31.83,38.69h0c-12,0-16.24-7.62-5-38.38,8.4-23,19.28-37.66,32.44-37.66Zm218.44,0h0c12.51,0,15.39,7.28,4.39,37.35-11.29,30.91-19.49,38.69-31.82,38.69h0c-12,0-16.22-7.62-5-38.38,8.39-23,19.27-37.66,32.43-37.66Z"/><path id="path98" class="cls-2" d="M39.62,147.61A9.86,9.86,0,0,0,33.86,149a10.36,10.36,0,0,0-3.23,5c-.83,2.3-1,3.89-.38,4.8s2.16,1.36,4.76,1.36,4.53-.46,5.8-1.42A10.36,10.36,0,0,0,44,153.78c.85-2.33,1-3.93.42-4.83S42.25,147.61,39.62,147.61Zm22.1,0c-2.6,0-4.53.47-5.79,1.39a10.42,10.42,0,0,0-3.21,5c-.83,2.3-1,3.89-.4,4.8s2.14,1.36,4.74,1.36,4.52-.46,5.82-1.42a10.46,10.46,0,0,0,3.22-4.95c.84-2.33,1-3.93.39-4.83S64.31,147.61,61.72,147.61Zm412.47,17.15a35.45,35.45,0,0,0-8.95,1.15,30.25,30.25,0,0,0-8.25,3.52,29.08,29.08,0,0,0-6.86,5.91,26.88,26.88,0,0,0-4.75,8.27,18.26,18.26,0,0,0-1.34,7,11.76,11.76,0,0,0,1.3,5.08,11.92,11.92,0,0,0,3.09,3.69,28,28,0,0,0,4.1,2.75c1.46.81,2.88,1.59,4.27,2.31a19,19,0,0,1,3.57,2.33,6.87,6.87,0,0,1,2.13,2.82,5.27,5.27,0,0,1-.17,3.82,12.17,12.17,0,0,1-2,3.49,12,12,0,0,1-3,2.63,14.53,14.53,0,0,1-3.86,1.64,17.21,17.21,0,0,1-4.56.59,19.57,19.57,0,0,1-6.19-.84,20.25,20.25,0,0,1-6.79-3.69,2.93,2.93,0,0,0-1.71-.83,1.9,1.9,0,0,0-1,.28,3.06,3.06,0,0,0-.95.93,10.1,10.1,0,0,0-.95,1.72c-.33.7-.69,1.59-1.06,2.62a18.72,18.72,0,0,0-1,3.57,2.79,2.79,0,0,0,.25,1.9,6.21,6.21,0,0,0,1.6,1.52,14.75,14.75,0,0,0,3.11,1.64,27.14,27.14,0,0,0,4.64,1.34,30.58,30.58,0,0,0,6.1.55,38,38,0,0,0,9.88-1.31,34.33,34.33,0,0,0,9.11-3.92,31.82,31.82,0,0,0,7.58-6.5,29,29,0,0,0,5.21-9.05,17.51,17.51,0,0,0,1.28-6.84,11.58,11.58,0,0,0-1.35-5.06,12,12,0,0,0-3.16-3.7,32.08,32.08,0,0,0-4.15-2.75c-1.46-.81-2.9-1.57-4.32-2.3a20.51,20.51,0,0,1-3.67-2.33,6.71,6.71,0,0,1-2.17-2.82,5.39,5.39,0,0,1,.19-3.78,10.66,10.66,0,0,1,1.55-2.78,9.63,9.63,0,0,1,2.43-2.24,12.4,12.4,0,0,1,3.23-1.47,14.39,14.39,0,0,1,4-.53,15.5,15.5,0,0,1,4.86.68,18.05,18.05,0,0,1,3.53,1.52,22.62,22.62,0,0,1,2.42,1.54,2.91,2.91,0,0,0,1.52.71,1.64,1.64,0,0,0,1-.31,3.18,3.18,0,0,0,.87-1,13.4,13.4,0,0,0,.85-1.67c.29-.66.63-1.49,1-2.47s.57-1.62.74-2.2a10.11,10.11,0,0,0,.37-1.47,3.8,3.8,0,0,0,0-.93,2.1,2.1,0,0,0-.37-.86,5,5,0,0,0-1.61-1.27,17.4,17.4,0,0,0-3.1-1.37,25.7,25.7,0,0,0-4-.95,28,28,0,0,0-4.52-.35Zm210,0a46.76,46.76,0,0,0-14.89,2.38A47.4,47.4,0,0,0,656,174a51.92,51.92,0,0,0-10.83,10.87,56.71,56.71,0,0,0-7.68,14.44,40.36,40.36,0,0,0-2.78,13.92,19,19,0,0,0,2.76,10.42,17.19,17.19,0,0,0,8.13,6.52,34.19,34.19,0,0,0,13.21,2.25c1.79,0,3.59-.08,5.42-.25s3.68-.42,5.54-.76,3.68-.74,5.47-1.21,3.31-.92,4.57-1.36a6.47,6.47,0,0,0,2.83-1.8,8.82,8.82,0,0,0,1.49-2.66l9.48-26a5.92,5.92,0,0,0,.39-1.8,2.58,2.58,0,0,0-.24-1.34,1.81,1.81,0,0,0-.81-.83,2.8,2.8,0,0,0-1.34-.29H669.53a1.71,1.71,0,0,0-.91.29,3.78,3.78,0,0,0-.92.86,9.1,9.1,0,0,0-.94,1.54,22.49,22.49,0,0,0-1,2.37,10.82,10.82,0,0,0-.91,3.87c.07.76.4,1.14,1,1.14h12.39l-5.53,15.17a23.09,23.09,0,0,1-4.59,1.52,22.28,22.28,0,0,1-4.58.5,18.87,18.87,0,0,1-7.79-1.46,10.26,10.26,0,0,1-4.86-4.36,13.85,13.85,0,0,1-1.57-7.14,30.73,30.73,0,0,1,2.1-9.89,39,39,0,0,1,4.87-9.33,34.87,34.87,0,0,1,6.82-7.23,30.4,30.4,0,0,1,8.27-4.65,28.48,28.48,0,0,1,16.68-.73,29.39,29.39,0,0,1,5.07,2,21.07,21.07,0,0,1,3.17,2,3.37,3.37,0,0,0,1.8.91,1.77,1.77,0,0,0,.87-.25,3.52,3.52,0,0,0,.88-.89,11.68,11.68,0,0,0,1-1.7,23,23,0,0,0,1-2.52,19.26,19.26,0,0,0,1.08-3.82,3,3,0,0,0-.25-2,6.4,6.4,0,0,0-1.79-1.68,16.4,16.4,0,0,0-3.68-1.79,33.79,33.79,0,0,0-5.57-1.41A43.22,43.22,0,0,0,684.15,164.8Zm-413.32.81c-1.72,0-3.07,0-4.07.13a5,5,0,0,0-2.32.68,2.8,2.8,0,0,0-1.15,1.6,15.72,15.72,0,0,0-.54,2.86L256.84,228a5.55,5.55,0,0,0,0,2A1.72,1.72,0,0,0,258,231a8.54,8.54,0,0,0,2.57.51c1.14.08,2.68.12,4.63.12s3.36,0,4.52-.12a11.46,11.46,0,0,0,2.88-.54,4.7,4.7,0,0,0,1.85-1.13,9.46,9.46,0,0,0,1.4-1.9l25-41.46h.1L296.28,228a4.85,4.85,0,0,0,0,2,1.66,1.66,0,0,0,1.06,1.11,8.47,8.47,0,0,0,2.57.51c1.13.08,2.66.12,4.58.12,1.71,0,3.15,0,4.29-.12a13.3,13.3,0,0,0,2.91-.51,5.3,5.3,0,0,0,2-1.11,9,9,0,0,0,1.55-2L351,171a27.78,27.78,0,0,0,1.61-3,1.79,1.79,0,0,0,.11-1.65,2,2,0,0,0-1.54-.68,32.92,32.92,0,0,0-3.41-.13c-1.59,0-2.84,0-3.75.13a8.33,8.33,0,0,0-2.19.46,3.08,3.08,0,0,0-1.28.9,11.55,11.55,0,0,0-.92,1.39l-29.66,50h-.09l5.77-49.76a5,5,0,0,0,0-1.62,1.37,1.37,0,0,0-.8-.93,6.11,6.11,0,0,0-2.06-.43c-1-.07-2.22-.1-3.84-.1s-2.75,0-3.68.13a9.47,9.47,0,0,0-2.32.46,3.56,3.56,0,0,0-1.45.93,9.14,9.14,0,0,0-1.1,1.56l-30,49.76h-.05l6.76-50.11a4.45,4.45,0,0,0,.13-1.49,1,1,0,0,0-.66-.8,5.74,5.74,0,0,0-2-.36c-.91-.05-2.15-.08-3.74-.08Zm157.78,0a29.46,29.46,0,0,0-3.25.15,14.63,14.63,0,0,0-2.19.41,3.69,3.69,0,0,0-1.35.66,2.22,2.22,0,0,0-.67.91l-22.48,61.78a1.15,1.15,0,0,0,0,.91,1.31,1.31,0,0,0,.84.65,8,8,0,0,0,1.9.41,27.12,27.12,0,0,0,3.16.15,30,30,0,0,0,3.29-.15,11.4,11.4,0,0,0,2.16-.41,3.49,3.49,0,0,0,1.34-.65,2.17,2.17,0,0,0,.65-.91l22.49-61.78a1.15,1.15,0,0,0,0-.91,1.43,1.43,0,0,0-.85-.66,8.87,8.87,0,0,0-1.87-.41,27,27,0,0,0-3.18-.15Zm-404.48,0a29.89,29.89,0,0,0-3.3.16,14.52,14.52,0,0,0-2.19.4,3.37,3.37,0,0,0-1.33.66,2.33,2.33,0,0,0-.64.91L2.2,207.53A31,31,0,0,0,0,218.47a13.51,13.51,0,0,0,2.35,7.81A13.24,13.24,0,0,0,8.94,231a31.46,31.46,0,0,0,10.51,1.54,42.32,42.32,0,0,0,12.25-1.72,35.1,35.1,0,0,0,18.45-13A42.6,42.6,0,0,0,55.84,207l14.28-39.23a1.2,1.2,0,0,0,0-.91,1.27,1.27,0,0,0-.82-.66,8.73,8.73,0,0,0-1.85-.4,25.29,25.29,0,0,0-3.11-.16,29.9,29.9,0,0,0-3.26.16,14.05,14.05,0,0,0-2.19.4,3.36,3.36,0,0,0-1.3.66,2.23,2.23,0,0,0-.64.91L42.64,207.12a26.21,26.21,0,0,1-3.17,6.15,20.61,20.61,0,0,1-4.32,4.54,18.07,18.07,0,0,1-5.22,2.81,18.28,18.28,0,0,1-5.95,1,13.26,13.26,0,0,1-5.25-.93,6.93,6.93,0,0,1-3.28-2.81,8.69,8.69,0,0,1-1-4.73,21.87,21.87,0,0,1,1.5-6.75L30,167.74a1.19,1.19,0,0,0,0-.91,1.4,1.4,0,0,0-.85-.66,9.11,9.11,0,0,0-1.87-.4,26.25,26.25,0,0,0-3.13-.16Zm490.51,0a29.69,29.69,0,0,0-3.29.16,12.37,12.37,0,0,0-2.19.4,3.49,3.49,0,0,0-1.34.66,2.31,2.31,0,0,0-.63.91l-14.48,39.78a30.81,30.81,0,0,0-2.18,10.95,13.43,13.43,0,0,0,2.33,7.81,13.27,13.27,0,0,0,6.6,4.68A31.4,31.4,0,0,0,510,232.5a42.44,42.44,0,0,0,12.26-1.71,35.11,35.11,0,0,0,18.44-13A42.46,42.46,0,0,0,546.35,207l14.29-39.23a1.11,1.11,0,0,0-.8-1.57,7.75,7.75,0,0,0-1.85-.4,25.52,25.52,0,0,0-3.11-.16,29.9,29.9,0,0,0-3.26.16,12.16,12.16,0,0,0-2.2.4,3.43,3.43,0,0,0-1.3.66,2.31,2.31,0,0,0-.63.91l-14.33,39.38a26.6,26.6,0,0,1-3.17,6.15,21.07,21.07,0,0,1-4.32,4.54,17.6,17.6,0,0,1-5.22,2.81,18.43,18.43,0,0,1-6,1,13.23,13.23,0,0,1-5.24-.94,6.88,6.88,0,0,1-3.28-2.81,8.49,8.49,0,0,1-1-4.73,21.82,21.82,0,0,1,1.49-6.75l14.06-38.62a1.15,1.15,0,0,0,0-.91,1.41,1.41,0,0,0-.84-.66,8,8,0,0,0-1.88-.4,26.13,26.13,0,0,0-3.13-.16Zm113.69.1c-1.22,0-2.23,0-3,.13a8.46,8.46,0,0,0-2,.43A4,4,0,0,0,622,167a2.23,2.23,0,0,0-.64.91l-11.18,30.69q-1.26,3.49-2.58,7.33t-2.46,7.38h0c-.12-1.35-.24-2.7-.4-4s-.31-2.72-.47-4.12-.36-2.8-.58-4.2-.43-2.82-.64-4.28l-4-23.91a18.82,18.82,0,0,0-.67-3.31,5.24,5.24,0,0,0-1.18-2.09,4.33,4.33,0,0,0-2-1.1,12,12,0,0,0-3.11-.32h-7.13a7,7,0,0,0-3.85,1.18,6.86,6.86,0,0,0-2.68,3.57L557,229.47a1.47,1.47,0,0,0-.09.91,1.17,1.17,0,0,0,.66.68,5.79,5.79,0,0,0,1.67.44,24.23,24.23,0,0,0,2.87.15,28.27,28.27,0,0,0,3-.15,9.89,9.89,0,0,0,2-.44,3.37,3.37,0,0,0,1.21-.68,2.41,2.41,0,0,0,.6-.91l12.47-34.23c.93-2.56,1.8-5.05,2.61-7.45s1.59-4.83,2.34-7.26h.1c0,2,.18,4,.39,6.15s.45,4.06.73,5.88l5.15,30.59a35.12,35.12,0,0,0,.77,4.12,7.21,7.21,0,0,0,1.18,2.52,3.88,3.88,0,0,0,1.91,1.3,10.1,10.1,0,0,0,2.94.35h5.65a7.53,7.53,0,0,0,2-.28,6.58,6.58,0,0,0,1.95-.88,8,8,0,0,0,1.63-1.51,7.15,7.15,0,0,0,1.16-2.08l21.4-58.8a1.4,1.4,0,0,0,.08-.91,1.24,1.24,0,0,0-.63-.71,4.28,4.28,0,0,0-1.64-.43,26.73,26.73,0,0,0-2.82-.13Zm-472,.21a5.69,5.69,0,0,0-3.18,1,6.29,6.29,0,0,0-2.3,3.21l-20.76,57c-.53,1.49-.54,2.56,0,3.21a2.92,2.92,0,0,0,2.44,1h32.86a2,2,0,0,0,.95-.28,3.45,3.45,0,0,0,.94-.88,9,9,0,0,0,1-1.6,23.7,23.7,0,0,0,1-2.45,22.93,22.93,0,0,0,.77-2.45,6.17,6.17,0,0,0,.2-1.6,1.34,1.34,0,0,0-.31-.88,1,1,0,0,0-.73-.27H145.57l6.71-18.46h19.77a2,2,0,0,0,.93-.25,3.21,3.21,0,0,0,.93-.84,7.67,7.67,0,0,0,.94-1.54,22.89,22.89,0,0,0,1-2.42,20.08,20.08,0,0,0,.75-2.41,5.17,5.17,0,0,0,.19-1.56,1.24,1.24,0,0,0-.32-.86,1,1,0,0,0-.73-.28H156l5.8-16h23.36a1.7,1.7,0,0,0,.92-.28,3.73,3.73,0,0,0,.93-.88,9.92,9.92,0,0,0,.95-1.6,23.11,23.11,0,0,0,1-2.4,21.7,21.7,0,0,0,.79-2.5,6.34,6.34,0,0,0,.21-1.62,1.26,1.26,0,0,0-.29-.88,1,1,0,0,0-.71-.25Zm54.86,0a5.6,5.6,0,0,0-3.16,1,6.24,6.24,0,0,0-2.31,3.21l-21.62,59.41a1.25,1.25,0,0,0,0,.91,1.3,1.3,0,0,0,.83.66,8.3,8.3,0,0,0,1.9.4,26.38,26.38,0,0,0,3.15.16,29.69,29.69,0,0,0,3.29-.16,12.68,12.68,0,0,0,2.17-.4,3.75,3.75,0,0,0,1.33-.66,2.19,2.19,0,0,0,.66-.91l9.07-24.93h4.15a8.19,8.19,0,0,1,3.5.66,5,5,0,0,1,2.15,1.95,9.18,9.18,0,0,1,1.07,3.21,43.23,43.23,0,0,1,.48,4.4l.55,14.61a2.92,2.92,0,0,0,.12,1,1.29,1.29,0,0,0,.78.71,6,6,0,0,0,1.85.38c.83.07,1.94.11,3.36.11,1.69,0,3,0,4-.11a11.32,11.32,0,0,0,2.35-.35,2.61,2.61,0,0,0,1.2-.63,2.86,2.86,0,0,0,.54-.94,5.71,5.71,0,0,0,.25-1.39,27.52,27.52,0,0,0,0-2.81L232,212.53a33.94,33.94,0,0,0-.45-4.17,15.36,15.36,0,0,0-1-3.29,8.18,8.18,0,0,0-1.53-2.44,8.51,8.51,0,0,0-2.13-1.72,32.17,32.17,0,0,0,6.33-2.53,27.42,27.42,0,0,0,5.34-3.7,25.25,25.25,0,0,0,4.21-4.82,27.78,27.78,0,0,0,3-6,19.5,19.5,0,0,0,1.35-6.91,10,10,0,0,0-1.47-5.2,10.1,10.1,0,0,0-4.07-3.56,20.27,20.27,0,0,0-6.4-1.93c-.87-.1-1.85-.18-2.94-.25s-2.49-.1-4.21-.1Zm159.74,0a5.66,5.66,0,0,0-3.17,1,6.29,6.29,0,0,0-2.3,3.21l-20.76,57c-.54,1.49-.55,2.56,0,3.21a3,3,0,0,0,2.46,1h32.86a1.92,1.92,0,0,0,.94-.28,3.31,3.31,0,0,0,.94-.88,7.93,7.93,0,0,0,1-1.6,21.51,21.51,0,0,0,1-2.45h0a22.93,22.93,0,0,0,.77-2.45,5.7,5.7,0,0,0,.19-1.6,1.24,1.24,0,0,0-.31-.88,1,1,0,0,0-.73-.27H360.17l6.72-18.46h19.76a1.91,1.91,0,0,0,.93-.25,3.11,3.11,0,0,0,.94-.84,8.16,8.16,0,0,0,.94-1.54,22.89,22.89,0,0,0,1-2.42,21.76,21.76,0,0,0,.74-2.41,5.24,5.24,0,0,0,.2-1.56,1.28,1.28,0,0,0-.32-.86,1,1,0,0,0-.73-.28H370.59l5.81-16h23.35a1.76,1.76,0,0,0,.93-.28,3.71,3.71,0,0,0,.92-.88,8.13,8.13,0,0,0,.95-1.6,22.78,22.78,0,0,0,1-2.4,23.07,23.07,0,0,0,.77-2.5,5.92,5.92,0,0,0,.21-1.62,1.26,1.26,0,0,0-.28-.88,1,1,0,0,0-.72-.25Zm-277.34,0a5.71,5.71,0,0,0-3.17,1,6.3,6.3,0,0,0-2.31,3.21l-20.76,57c-.53,1.49-.55,2.55,0,3.21a2.93,2.93,0,0,0,2.45,1h17.4a52.21,52.21,0,0,0,7.32-.48,41.43,41.43,0,0,0,6.59-1.49,36.68,36.68,0,0,0,6.12-2.58,29.57,29.57,0,0,0,5.41-3.73,29.15,29.15,0,0,0,4.47-5,27,27,0,0,0,3.27-6.32,17.19,17.19,0,0,0,1.18-6,10.54,10.54,0,0,0-1.06-4.67,8.53,8.53,0,0,0-2.91-3.26A12.18,12.18,0,0,0,113,196a22.78,22.78,0,0,0,4.65-2.13,22.21,22.21,0,0,0,4-3,23.12,23.12,0,0,0,3.15-3.81,22.6,22.6,0,0,0,2.24-4.48,16.28,16.28,0,0,0,1.17-7.38,8.34,8.34,0,0,0-2.49-5.18,13.12,13.12,0,0,0-5.92-3.06,38.87,38.87,0,0,0-9.81-1Zm5.48,10h6.72a15.49,15.49,0,0,1,4.72.55A5.25,5.25,0,0,1,113,178a4.13,4.13,0,0,1,.87,2.6,10.06,10.06,0,0,1-.67,3.54,13.78,13.78,0,0,1-1.79,3.36,12.76,12.76,0,0,1-2.71,2.78,12.29,12.29,0,0,1-3.53,1.87,15.12,15.12,0,0,1-4.86.69H92.84Zm117.78.2h6a30.89,30.89,0,0,1,3.52.16,14.76,14.76,0,0,1,2.14.39c2,.62,3.23,1.65,3.67,3.14a8.83,8.83,0,0,1-.52,5.46,14.17,14.17,0,0,1-2.11,3.84,13.29,13.29,0,0,1-3.2,3A15.21,15.21,0,0,1,222,194a18.54,18.54,0,0,1-5.2.68h-6.77ZM89.3,202.58h7.89a19.65,19.65,0,0,1,5.68.65,6.62,6.62,0,0,1,3.07,1.87,5,5,0,0,1,1.11,3,10.13,10.13,0,0,1-.71,4.07,13,13,0,0,1-2.19,3.87,13.62,13.62,0,0,1-3.21,2.82A14.23,14.23,0,0,1,97,220.6a18.29,18.29,0,0,1-4.87.57H82.54Z"/></g></svg>
assets/images/visa.svg ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg viewBox="0 0 750 471" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" preserveAspectRatio="xMidYMid meet">
3
+ <!-- Generator: Sketch 3.3.1 (12005) - http://www.bohemiancoding.com/sketch -->
4
+ <title>Slice 1</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <defs></defs>
7
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
8
+ <g id="visa" sketch:type="MSLayerGroup">
9
+ <rect id="Rectangle-1" fill="#0E4595" sketch:type="MSShapeGroup" x="0" y="0" width="750" height="471" rx="40"></rect>
10
+ <path d="M278.1975,334.2275 L311.5585,138.4655 L364.9175,138.4655 L331.5335,334.2275 L278.1975,334.2275 L278.1975,334.2275 Z" id="Shape" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
11
+ <path d="M524.3075,142.6875 C513.7355,138.7215 497.1715,134.4655 476.4845,134.4655 C423.7605,134.4655 386.6205,161.0165 386.3045,199.0695 C386.0075,227.1985 412.8185,242.8905 433.0585,252.2545 C453.8275,261.8495 460.8105,267.9695 460.7115,276.5375 C460.5795,289.6595 444.1255,295.6545 428.7885,295.6545 C407.4315,295.6545 396.0855,292.6875 378.5625,285.3785 L371.6865,282.2665 L364.1975,326.0905 C376.6605,331.5545 399.7065,336.2895 423.6355,336.5345 C479.7245,336.5345 516.1365,310.2875 516.5505,269.6525 C516.7515,247.3835 502.5355,230.4355 471.7515,216.4645 C453.1005,207.4085 441.6785,201.3655 441.7995,192.1955 C441.7995,184.0585 451.4675,175.3575 472.3565,175.3575 C489.8055,175.0865 502.4445,178.8915 512.2925,182.8575 L517.0745,185.1165 L524.3075,142.6875" id="path13" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
12
+ <path d="M661.6145,138.4655 L620.3835,138.4655 C607.6105,138.4655 598.0525,141.9515 592.4425,154.6995 L513.1975,334.1025 L569.2285,334.1025 C569.2285,334.1025 578.3905,309.9805 580.4625,304.6845 C586.5855,304.6845 641.0165,304.7685 648.7985,304.7685 C650.3945,311.6215 655.2905,334.1025 655.2905,334.1025 L704.8025,334.1025 L661.6145,138.4655 L661.6145,138.4655 Z M596.1975,264.8725 C600.6105,253.5935 617.4565,210.1495 617.4565,210.1495 C617.1415,210.6705 621.8365,198.8155 624.5315,191.4655 L628.1385,208.3435 C628.1385,208.3435 638.3555,255.0725 640.4905,264.8715 L596.1975,264.8715 L596.1975,264.8725 L596.1975,264.8725 Z" id="Path" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
13
+ <path d="M232.9025,138.4655 L180.6625,271.9605 L175.0965,244.8315 C165.3715,213.5575 135.0715,179.6755 101.1975,162.7125 L148.9645,333.9155 L205.4195,333.8505 L289.4235,138.4655 L232.9025,138.4655" id="path16" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
14
+ <path d="M131.9195,138.4655 L45.8785,138.4655 L45.1975,142.5385 C112.1365,158.7425 156.4295,197.9015 174.8155,244.9525 L156.1065,154.9925 C152.8765,142.5965 143.5085,138.8975 131.9195,138.4655" id="path18" fill="#F2AE14" sketch:type="MSShapeGroup"></path>
15
+ </g>
16
+ </g>
17
+ </svg>
assets/images/wechat.svg CHANGED
@@ -1 +1 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 212.01"><defs><style>.cls-1{fill:#2e3233;}.cls-2{fill:#9de60b;}</style></defs><title>wechat</title><path class="cls-1" d="M492.35,67.19c16.29-3.93,36.11-.27,46.75,13.64,4.53,5.45,6.45,12.4,8.14,19.16-7.16.11-14.35.11-21.5.11-3.12-15.41-24.28-21.57-35.51-11-7.91,8.61-9.34,21.4-7.7,32.57,1.75,8.56,5.2,18.52,14,22.07,12.6,4.7,27.48-3.69,29.17-17.26,7.29,0,14.61,0,21.93.14-1.52,13.05-7.82,26.64-20.59,32-19.83,8.61-48.21,6-59.69-14.48,1.82-8.36,3.86-17.07,2-25.62C468.3,112.17,465,106.6,463,100.6c0-16.32,14-30.19,29.39-33.41Z"/><path class="cls-2" d="M274.09,69.57c7.84-.06,15.68-.06,23.52-.09,4.66,20.57,7.25,41.62,12.93,62,5.7-16.87,8.34-34.57,13.19-51.68,1.43-5.19,5.5-10.66,11.45-10.28,6.46-.77,10.84,5.21,12.16,10.84C352,97.15,355,114.39,360.18,131.1c5.94-20.16,9.19-40.95,13.53-61.5,7.66-.09,15.3-.09,23,0-6.41,25.79-13.66,51.36-20.23,77.11-1.62,6.41-4.43,13.73-11.3,16.1-7.77,1.77-14.82-4.41-16.7-11.62-4.84-15.45-8.35-31.32-13.12-46.82-3.84,15.41-7.77,30.78-12,46.07-1.59,6.84-7.59,13.87-15.3,12.51-7.43-.85-11.09-8.23-12.72-14.69-7-26.23-14.19-52.44-21.21-78.67Z"/><path class="cls-1" d="M552.42,69.55l21.09,0c0,7.72-.11,15.45.5,23.13,11.3.8,23.69-2.41,34.1,3.32,9,4.82,14.16,15,14.09,25.05.14,14-.05,28,0,42q-10.26.06-20.48.08c-.14-13.43.16-26.86-.06-40.29.27-4.55-3-9.3-7.64-9.82-6.82-.87-13.71-.41-20.55-.28,0,16.78,0,33.57,0,50.37q-10.54,0-21.07,0c0-31.16,0-62.3,0-93.46Zm161.6,0h20c0,7,0,14,0,21,5.34,0,10.68,0,16,0,0,5.18,0,10.39,0,15.57H733.77c.41,11.86-.89,23.86.68,35.68,3.59,4.43,9.93,3.8,15,5.23-.06,5.3-.09,10.59-.09,15.91-11.47.25-27.16,1.75-33-10.73-5.08-14.7-1.28-30.79-2.41-46-5.14,0-10.28-.07-15.41-.14,0-5.14,0-10.28,0-15.39,5.19-.06,10.37-.11,15.57-.13Q714,80,714,69.53Z"/><path class="cls-2" d="M462.37,131.69c.37-13.43-2.62-28.59-14.5-36.64-15.55-9.88-40.43-8.54-50.91,8.16-8.76,14.73-9.23,35.59,2.63,48.85C411,164.9,431.1,165.58,446,159.15c8.21-3.34,12.73-11.32,15.82-19.14q-9.81-.31-19.64-.09c-5.79,6.88-16,9.66-24.13,5.34-5.16-2.5-6.21-8.54-7.82-13.41,17.38-.27,34.77,0,52.16-.16Zm-52.69-14c2.34-7.16,8.25-13.41,16.46-12.12,8.09-1.31,13.59,5.21,15.86,12.14q-16.15.48-32.32,0Z"/><path class="cls-1" d="M695,114c-.4-12.44-11.38-22.25-23.36-23.53s-25.3-1.22-35.1,6.64c-5.2,3.77-6.86,10.25-8.2,16.18,6.11.17,12.23.19,18.36.14,3.48-10.41,17.1-11.73,25.28-6.36,3.09,2.59,2.82,7,3.7,10.56-12.81.51-26.91-2-38.29,5.41-10.84,6.37-12.82,22-6.53,32.17,4.41,6.61,13,7.84,20.37,7.82,14.64.06,29.27,0,43.91,0C695,146.65,695.45,130.3,695,114Zm-47,29.93c-1-3.59,1.08-6.87,2.27-10.07,8.13-1.84,16.5-2.09,24.84-1.91,0,5.71,0,11.39,0,17.1-9-.58-20.15,2.29-27.14-5.12Z"/><path class="cls-2" d="M145,13.23C118.42-1.72,85.33-4,56.75,6.35,38,13.11,21,25.67,10.48,42.78,1,58.21-2.61,77.45,2,95.1c4.6,19.6,18.18,36,34.72,47-3.11,9-6.18,18.09-9.07,27.2,10.46-5.43,20.79-11.09,31.21-16.62a115.88,115.88,0,0,0,39,5.53,67,67,0,0,1-2.69-31.44c2.5-14.59,10.39-27.94,21.29-37.83,18.36-17.2,44.39-24.46,69.16-22.71C181,43.51,165,24.31,145,13.23ZM73.8,54.42C72,63.31,60,67.6,53.06,61.64,45,56,47.25,41.82,56.74,39,66,35.39,76.59,44.83,73.8,54.42Zm64.49-2.58c.08,10.24-13.56,16.62-21.23,9.67-8-5.7-5.7-19.56,3.64-22.44,8.35-3.28,18.24,3.76,17.59,12.77Z"/><path class="cls-1" d="M250.61,114c-6.48-14.68-18.71-26.31-32.91-33.5a90.58,90.58,0,0,0-81.21.29c-17.37,8.93-31.86,24.9-36,44.33-3.4,14.3-.34,29.7,7.23,42.18C119,186,139.44,198,160.67,201.79c15.37,3.13,31.26,1.29,46.18-3,8.94,3.49,17,9.11,25.63,13.27q-3.33-11.26-7.17-22.36c9.71-6.94,18.56-15.55,23.89-26.38a57.19,57.19,0,0,0,1.41-49.3Zm-87.21,5.61c-2.2,6.93-12.32,9-17.18,3.73-5.38-4.88-3.29-15.1,3.76-17.27,7.84-3.3,16.85,5.71,13.42,13.54Zm51,1c-2.68,6.25-12,7.69-16.65,2.85-2.24-2-2.79-5.06-3.68-7.76,1.19-4.87,4.44-9.93,10-10.15C211.73,104.43,218.44,113.71,214.45,120.54Z"/></svg>
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 212.01" preserveAspectRatio="xMidYMid meet"><defs><style>.cls-1{fill:#2e3233;}.cls-2{fill:#9de60b;}</style></defs><title>wechat</title><path class="cls-1" d="M492.35,67.19c16.29-3.93,36.11-.27,46.75,13.64,4.53,5.45,6.45,12.4,8.14,19.16-7.16.11-14.35.11-21.5.11-3.12-15.41-24.28-21.57-35.51-11-7.91,8.61-9.34,21.4-7.7,32.57,1.75,8.56,5.2,18.52,14,22.07,12.6,4.7,27.48-3.69,29.17-17.26,7.29,0,14.61,0,21.93.14-1.52,13.05-7.82,26.64-20.59,32-19.83,8.61-48.21,6-59.69-14.48,1.82-8.36,3.86-17.07,2-25.62C468.3,112.17,465,106.6,463,100.6c0-16.32,14-30.19,29.39-33.41Z"/><path class="cls-2" d="M274.09,69.57c7.84-.06,15.68-.06,23.52-.09,4.66,20.57,7.25,41.62,12.93,62,5.7-16.87,8.34-34.57,13.19-51.68,1.43-5.19,5.5-10.66,11.45-10.28,6.46-.77,10.84,5.21,12.16,10.84C352,97.15,355,114.39,360.18,131.1c5.94-20.16,9.19-40.95,13.53-61.5,7.66-.09,15.3-.09,23,0-6.41,25.79-13.66,51.36-20.23,77.11-1.62,6.41-4.43,13.73-11.3,16.1-7.77,1.77-14.82-4.41-16.7-11.62-4.84-15.45-8.35-31.32-13.12-46.82-3.84,15.41-7.77,30.78-12,46.07-1.59,6.84-7.59,13.87-15.3,12.51-7.43-.85-11.09-8.23-12.72-14.69-7-26.23-14.19-52.44-21.21-78.67Z"/><path class="cls-1" d="M552.42,69.55l21.09,0c0,7.72-.11,15.45.5,23.13,11.3.8,23.69-2.41,34.1,3.32,9,4.82,14.16,15,14.09,25.05.14,14-.05,28,0,42q-10.26.06-20.48.08c-.14-13.43.16-26.86-.06-40.29.27-4.55-3-9.3-7.64-9.82-6.82-.87-13.71-.41-20.55-.28,0,16.78,0,33.57,0,50.37q-10.54,0-21.07,0c0-31.16,0-62.3,0-93.46Zm161.6,0h20c0,7,0,14,0,21,5.34,0,10.68,0,16,0,0,5.18,0,10.39,0,15.57H733.77c.41,11.86-.89,23.86.68,35.68,3.59,4.43,9.93,3.8,15,5.23-.06,5.3-.09,10.59-.09,15.91-11.47.25-27.16,1.75-33-10.73-5.08-14.7-1.28-30.79-2.41-46-5.14,0-10.28-.07-15.41-.14,0-5.14,0-10.28,0-15.39,5.19-.06,10.37-.11,15.57-.13Q714,80,714,69.53Z"/><path class="cls-2" d="M462.37,131.69c.37-13.43-2.62-28.59-14.5-36.64-15.55-9.88-40.43-8.54-50.91,8.16-8.76,14.73-9.23,35.59,2.63,48.85C411,164.9,431.1,165.58,446,159.15c8.21-3.34,12.73-11.32,15.82-19.14q-9.81-.31-19.64-.09c-5.79,6.88-16,9.66-24.13,5.34-5.16-2.5-6.21-8.54-7.82-13.41,17.38-.27,34.77,0,52.16-.16Zm-52.69-14c2.34-7.16,8.25-13.41,16.46-12.12,8.09-1.31,13.59,5.21,15.86,12.14q-16.15.48-32.32,0Z"/><path class="cls-1" d="M695,114c-.4-12.44-11.38-22.25-23.36-23.53s-25.3-1.22-35.1,6.64c-5.2,3.77-6.86,10.25-8.2,16.18,6.11.17,12.23.19,18.36.14,3.48-10.41,17.1-11.73,25.28-6.36,3.09,2.59,2.82,7,3.7,10.56-12.81.51-26.91-2-38.29,5.41-10.84,6.37-12.82,22-6.53,32.17,4.41,6.61,13,7.84,20.37,7.82,14.64.06,29.27,0,43.91,0C695,146.65,695.45,130.3,695,114Zm-47,29.93c-1-3.59,1.08-6.87,2.27-10.07,8.13-1.84,16.5-2.09,24.84-1.91,0,5.71,0,11.39,0,17.1-9-.58-20.15,2.29-27.14-5.12Z"/><path class="cls-2" d="M145,13.23C118.42-1.72,85.33-4,56.75,6.35,38,13.11,21,25.67,10.48,42.78,1,58.21-2.61,77.45,2,95.1c4.6,19.6,18.18,36,34.72,47-3.11,9-6.18,18.09-9.07,27.2,10.46-5.43,20.79-11.09,31.21-16.62a115.88,115.88,0,0,0,39,5.53,67,67,0,0,1-2.69-31.44c2.5-14.59,10.39-27.94,21.29-37.83,18.36-17.2,44.39-24.46,69.16-22.71C181,43.51,165,24.31,145,13.23ZM73.8,54.42C72,63.31,60,67.6,53.06,61.64,45,56,47.25,41.82,56.74,39,66,35.39,76.59,44.83,73.8,54.42Zm64.49-2.58c.08,10.24-13.56,16.62-21.23,9.67-8-5.7-5.7-19.56,3.64-22.44,8.35-3.28,18.24,3.76,17.59,12.77Z"/><path class="cls-1" d="M250.61,114c-6.48-14.68-18.71-26.31-32.91-33.5a90.58,90.58,0,0,0-81.21.29c-17.37,8.93-31.86,24.9-36,44.33-3.4,14.3-.34,29.7,7.23,42.18C119,186,139.44,198,160.67,201.79c15.37,3.13,31.26,1.29,46.18-3,8.94,3.49,17,9.11,25.63,13.27q-3.33-11.26-7.17-22.36c9.71-6.94,18.56-15.55,23.89-26.38a57.19,57.19,0,0,0,1.41-49.3Zm-87.21,5.61c-2.2,6.93-12.32,9-17.18,3.73-5.38-4.88-3.29-15.1,3.76-17.27,7.84-3.3,16.85,5.71,13.42,13.54Zm51,1c-2.68,6.25-12,7.69-16.65,2.85-2.24-2-2.79-5.06-3.68-7.76,1.19-4.87,4.44-9.93,10-10.15C211.73,104.43,218.44,113.71,214.45,120.54Z"/></svg>
assets/js/stripe.js CHANGED
@@ -90,6 +90,8 @@ jQuery( function( $ ) {
90
  stripe_card.addEventListener( 'change', function( event ) {
91
  wc_stripe_form.onCCFormChange();
92
 
 
 
93
  if ( event.error ) {
94
  $( document.body ).trigger( 'stripeError', event );
95
  }
@@ -130,6 +132,32 @@ jQuery( function( $ ) {
130
  }
131
  },
132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  /**
134
  * Initialize event handlers and UI state.
135
  */
@@ -197,7 +225,7 @@ jQuery( function( $ ) {
197
 
198
  // Check to see if Stripe in general is being used for checkout.
199
  isStripeChosen: function() {
200
- return $( '#payment_method_stripe, #payment_method_stripe_bancontact, #payment_method_stripe_sofort, #payment_method_stripe_giropay, #payment_method_stripe_ideal, #payment_method_stripe_alipay, #payment_method_stripe_sepa, #payment_method_stripe_bitcoin' ).is( ':checked' ) || ( $( '#payment_method_stripe' ).is( ':checked' ) && 'new' === $( 'input[name="wc-stripe-payment-token"]:checked' ).val() ) || ( $( '#payment_method_stripe_sepa' ).is( ':checked' ) && 'new' === $( 'input[name="wc-stripe-payment-token"]:checked' ).val() );
201
  },
202
 
203
  // Currently only support saved cards via credit cards and SEPA. No other payment method.
@@ -243,6 +271,14 @@ jQuery( function( $ ) {
243
  return $( '#payment_method_stripe_p24' ).is( ':checked' );
244
  },
245
 
 
 
 
 
 
 
 
 
246
  hasSource: function() {
247
  return 0 < $( 'input.stripe-source' ).length;
248
  },
@@ -558,7 +594,9 @@ jQuery( function( $ ) {
558
  wc_stripe_form.isIdealChosen() ||
559
  wc_stripe_form.isAlipayChosen() ||
560
  wc_stripe_form.isSofortChosen() ||
561
- wc_stripe_form.isP24Chosen()
 
 
562
  ) {
563
  if ( $( 'form#order_review' ).length ) {
564
  $( 'form#order_review' )
@@ -568,15 +606,11 @@ jQuery( function( $ ) {
568
  );
569
 
570
  wc_stripe_form.form.submit();
 
 
571
  }
572
 
573
  if ( $( 'form.woocommerce-checkout' ).length ) {
574
- $( 'form.woocommerce-checkout' )
575
- .off(
576
- 'submit',
577
- this.onSubmit
578
- );
579
-
580
  return true;
581
  }
582
 
@@ -588,6 +622,8 @@ jQuery( function( $ ) {
588
  );
589
 
590
  wc_stripe_form.form.submit();
 
 
591
  }
592
  }
593
 
90
  stripe_card.addEventListener( 'change', function( event ) {
91
  wc_stripe_form.onCCFormChange();
92
 
93
+ wc_stripe_form.updateCardBrand( event.brand );
94
+
95
  if ( event.error ) {
96
  $( document.body ).trigger( 'stripeError', event );
97
  }
132
  }
133
  },
134
 
135
+ updateCardBrand: function( brand ) {
136
+ var brandClass = {
137
+ 'visa': 'stripe-visa-brand',
138
+ 'mastercard': 'stripe-mastercard-brand',
139
+ 'amex': 'stripe-amex-brand',
140
+ 'discover': 'stripe-discover-brand',
141
+ 'diners': 'stripe-diners-brand',
142
+ 'jcb': 'stripe-jcb-brand',
143
+ 'unknown': 'stripe-credit-card-brand'
144
+ };
145
+
146
+ var imageElement = $( '.stripe-card-brand' ),
147
+ imageClass = 'stripe-credit-card-brand';
148
+
149
+ if ( brand in brandClass ) {
150
+ imageClass = brandClass[ brand ];
151
+ }
152
+
153
+ // Remove existing card brand class.
154
+ $.each( brandClass, function( index, el ) {
155
+ imageElement.removeClass( el );
156
+ } );
157
+
158
+ imageElement.addClass( imageClass );
159
+ },
160
+
161
  /**
162
  * Initialize event handlers and UI state.
163
  */
225
 
226
  // Check to see if Stripe in general is being used for checkout.
227
  isStripeChosen: function() {
228
+ return $( '#payment_method_stripe, #payment_method_stripe_bancontact, #payment_method_stripe_sofort, #payment_method_stripe_giropay, #payment_method_stripe_ideal, #payment_method_stripe_alipay, #payment_method_stripe_sepa, #payment_method_stripe_bitcoin, #payment_method_stripe_eps, #payment_method_stripe_multibanco' ).is( ':checked' ) || ( $( '#payment_method_stripe' ).is( ':checked' ) && 'new' === $( 'input[name="wc-stripe-payment-token"]:checked' ).val() ) || ( $( '#payment_method_stripe_sepa' ).is( ':checked' ) && 'new' === $( 'input[name="wc-stripe-payment-token"]:checked' ).val() );
229
  },
230
 
231
  // Currently only support saved cards via credit cards and SEPA. No other payment method.
271
  return $( '#payment_method_stripe_p24' ).is( ':checked' );
272
  },
273
 
274
+ isEpsChosen: function() {
275
+ return $( '#payment_method_stripe_eps' ).is( ':checked' );
276
+ },
277
+
278
+ isMultibancoChosen: function() {
279
+ return $( '#payment_method_stripe_multibanco' ).is( ':checked' );
280
+ },
281
+
282
  hasSource: function() {
283
  return 0 < $( 'input.stripe-source' ).length;
284
  },
594
  wc_stripe_form.isIdealChosen() ||
595
  wc_stripe_form.isAlipayChosen() ||
596
  wc_stripe_form.isSofortChosen() ||
597
+ wc_stripe_form.isP24Chosen() ||
598
+ wc_stripe_form.isEpsChosen() ||
599
+ wc_stripe_form.isMultibancoChosen()
600
  ) {
601
  if ( $( 'form#order_review' ).length ) {
602
  $( 'form#order_review' )
606
  );
607
 
608
  wc_stripe_form.form.submit();
609
+
610
+ return false;
611
  }
612
 
613
  if ( $( 'form.woocommerce-checkout' ).length ) {
 
 
 
 
 
 
614
  return true;
615
  }
616
 
622
  );
623
 
624
  wc_stripe_form.form.submit();
625
+
626
+ return false;
627
  }
628
  }
629
 
assets/js/stripe.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(e){"use strict";var r,t,o,n=Stripe(wc_stripe_params.key),i=wc_stripe_params.elements_options.length?wc_stripe_params.elements_options:{},s=n.elements(i),a={getAjaxURL:function(e){return wc_stripe_params.ajaxurl.toString().replace("%%endpoint%%","wc_stripe_"+e)},unmountElements:function(){"yes"===wc_stripe_params.inline_cc_form?r.unmount("#stripe-card-element"):(r.unmount("#stripe-card-element"),t.unmount("#stripe-exp-element"),o.unmount("#stripe-cvc-element"))},mountElements:function(){e("#stripe-card-element").length&&("yes"===wc_stripe_params.inline_cc_form?r.mount("#stripe-card-element"):(r.mount("#stripe-card-element"),t.mount("#stripe-exp-element"),o.mount("#stripe-cvc-element")))},createElements:function(){var n={base:{iconColor:"#666EE8",color:"#31325F",fontSize:"15px","::placeholder":{color:"#CFD7E0"}}},i={focus:"focused",empty:"empty",invalid:"invalid"};n=wc_stripe_params.elements_styling?wc_stripe_params.elements_styling:n,i=wc_stripe_params.elements_classes?wc_stripe_params.elements_classes:i,"yes"===wc_stripe_params.inline_cc_form?(r=s.create("card",{style:n,hidePostalCode:!0})).addEventListener("change",function(r){a.onCCFormChange(),r.error&&e(document.body).trigger("stripeError",r)}):(r=s.create("cardNumber",{style:n,classes:i}),t=s.create("cardExpiry",{style:n,classes:i}),o=s.create("cardCvc",{style:n,classes:i}),r.addEventListener("change",function(r){a.onCCFormChange(),r.error&&e(document.body).trigger("stripeError",r)}),t.addEventListener("change",function(r){a.onCCFormChange(),r.error&&e(document.body).trigger("stripeError",r)}),o.addEventListener("change",function(r){a.onCCFormChange(),r.error&&e(document.body).trigger("stripeError",r)})),"yes"===wc_stripe_params.is_checkout?e(document.body).on("updated_checkout",function(){r&&a.unmountElements(),a.mountElements()}):(e("form#add_payment_method").length||e("form#order_review").length)&&a.mountElements()},init:function(){"yes"!==wc_stripe_params.is_change_payment_page&&"yes"!==wc_stripe_params.is_pay_for_order_page||e(document.body).trigger("wc-credit-card-form-init"),this.stripe_checkout_submit=!1,e("form.woocommerce-checkout").length&&(this.form=e("form.woocommerce-checkout")),e("form.woocommerce-checkout").on("checkout_place_order_stripe checkout_place_order_stripe_bancontact checkout_place_order_stripe_sofort checkout_place_order_stripe_giropay checkout_place_order_stripe_ideal checkout_place_order_stripe_alipay checkout_place_order_stripe_sepa checkout_place_order_stripe_bitcoin",this.onSubmit),e("form#order_review").length&&(this.form=e("form#order_review")),e("form#order_review, form#add_payment_method").on("submit",this.onSubmit),e("form#add_payment_method").length&&(this.form=e("form#add_payment_method")),e("form.woocommerce-checkout").on("change",this.reset),e(document).on("stripeError",this.onError).on("checkout_error",this.reset),a.createElements(),"yes"===wc_stripe_params.is_stripe_checkout&&e(document.body).on("click",".wc-stripe-checkout-button",function(){return a.openModal(),!1})},isStripeChosen:function(){return e("#payment_method_stripe, #payment_method_stripe_bancontact, #payment_method_stripe_sofort, #payment_method_stripe_giropay, #payment_method_stripe_ideal, #payment_method_stripe_alipay, #payment_method_stripe_sepa, #payment_method_stripe_bitcoin").is(":checked")||e("#payment_method_stripe").is(":checked")&&"new"===e('input[name="wc-stripe-payment-token"]:checked').val()||e("#payment_method_stripe_sepa").is(":checked")&&"new"===e('input[name="wc-stripe-payment-token"]:checked').val()},isStripeSaveCardChosen:function(){return e("#payment_method_stripe").is(":checked")&&e('input[name="wc-stripe-payment-token"]').is(":checked")&&"new"!==e('input[name="wc-stripe-payment-token"]:checked').val()||e("#payment_method_stripe_sepa").is(":checked")&&e('input[name="wc-stripe_sepa-payment-token"]').is(":checked")&&"new"!==e('input[name="wc-stripe_sepa-payment-token"]:checked').val()},isStripeCardChosen:function(){return e("#payment_method_stripe").is(":checked")},isBancontactChosen:function(){return e("#payment_method_stripe_bancontact").is(":checked")},isGiropayChosen:function(){return e("#payment_method_stripe_giropay").is(":checked")},isIdealChosen:function(){return e("#payment_method_stripe_ideal").is(":checked")},isSofortChosen:function(){return e("#payment_method_stripe_sofort").is(":checked")},isAlipayChosen:function(){return e("#payment_method_stripe_alipay").is(":checked")},isSepaChosen:function(){return e("#payment_method_stripe_sepa").is(":checked")},isBitcoinChosen:function(){return e("#payment_method_stripe_bitcoin").is(":checked")},isP24Chosen:function(){return e("#payment_method_stripe_p24").is(":checked")},hasSource:function(){return 0<e("input.stripe-source").length},hasToken:function(){return 0<e("input.stripe_token").length},isMobile:function(){return!!/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)},isStripeModalNeeded:function(e){var r=a.form.find("input.stripe_token");return(!a.stripe_submit||!r)&&!!a.isStripeChosen()},block:function(){a.isMobile()||a.form.block({message:null,overlayCSS:{background:"#fff",opacity:.6}})},unblock:function(){a.form.unblock()},getSelectedPaymentElement:function(){return e('.payment_methods input[name="payment_method"]:checked')},openModal:function(){var r=a.form,t=e("#stripe-payment-data");a.reset();StripeCheckout.open({key:wc_stripe_params.key,billingAddress:t.data("billing-address"),zipCode:t.data("verify-zip"),amount:t.data("amount"),name:t.data("name"),description:t.data("description"),currency:t.data("currency"),image:t.data("image"),bitcoin:t.data("bitcoin"),locale:t.data("locale"),email:e("#billing_email").val()||t.data("email"),panelLabel:t.data("panel-label"),allowRememberMe:t.data("allow-remember-me"),token:function(e){if(r.find("input.stripe_source").remove(),"token"===e.object)n.createSource({type:"card",token:e.id}).then(a.sourceResponse);else if("source"===e.object){var t={source:e};a.sourceResponse(t)}},closed:a.onClose()})},resetModal:function(){a.reset(),a.stripe_checkout_submit=!1},onClose:function(){a.unblock()},getOwnerDetails:function(){var r=e("#billing_first_name").length?e("#billing_first_name").val():wc_stripe_params.billing_first_name,t=e("#billing_last_name").length?e("#billing_last_name").val():wc_stripe_params.billing_last_name,o={owner:{name:"",address:{},email:"",phone:""}};return o.owner.name=r,r&&t&&(o.owner.name=r+" "+t),o.owner.email=e("#billing_email").val(),o.owner.phone=e("#billing_phone").val(),void 0!==o.owner.phone&&0>=o.owner.phone.length&&delete o.owner.phone,void 0!==o.owner.email&&0>=o.owner.email.length&&delete o.owner.email,void 0!==o.owner.name&&0>=o.owner.name.length&&delete o.owner.name,e("#billing_address_1").length>0?(o.owner.address.line1=e("#billing_address_1").val(),o.owner.address.line2=e("#billing_address_2").val(),o.owner.address.state=e("#billing_state").val(),o.owner.address.city=e("#billing_city").val(),o.owner.address.postal_code=e("#billing_postcode").val(),o.owner.address.country=e("#billing_country").val()):wc_stripe_params.billing_address_1&&(o.owner.address.line1=wc_stripe_params.billing_address_1,o.owner.address.line2=wc_stripe_params.billing_address_2,o.owner.address.state=wc_stripe_params.billing_state,o.owner.address.city=wc_stripe_params.billing_city,o.owner.address.postal_code=wc_stripe_params.billing_postcode,o.owner.address.country=wc_stripe_params.billing_country),o},createSource:function(){var t=a.getOwnerDetails(),o="card";if(a.isBancontactChosen()&&(o="bancontact"),a.isSepaChosen()&&(o="sepa_debit"),a.isIdealChosen()&&(o="ideal"),a.isSofortChosen()&&(o="sofort"),a.isBitcoinChosen()&&(o="bitcoin"),a.isGiropayChosen()&&(o="giropay"),a.isAlipayChosen()&&(o="alipay"),"card"===o)n.createSource(r,t).then(a.sourceResponse);else{switch(o){case"bancontact":case"giropay":case"ideal":case"sofort":case"alipay":t.amount=e("#stripe-"+o+"-payment-data").data("amount"),t.currency=e("#stripe-"+o+"-payment-data").data("currency"),t.redirect={return_url:wc_stripe_params.return_url},wc_stripe_params.statement_descriptor&&(t.statement_descriptor=wc_stripe_params.statement_descriptor)}switch(o){case"sepa_debit":var i=e("#stripe-payment-data"),s=e("#billing_email").length?e("#billing_email").val():i.data("email");t.currency=e("#stripe-"+o+"-payment-data").data("currency"),t.owner.name=e("#stripe-sepa-owner").val(),t.owner.email=s,t.sepa_debit={iban:e("#stripe-sepa-iban").val()},t.mandate={notification_method:wc_stripe_params.sepa_mandate_notification};break;case"ideal":t.ideal={bank:e("#stripe-ideal-bank").val()};break;case"bitcoin":case"alipay":t.currency=e("#stripe-"+o+"-payment-data").data("currency"),t.amount=e("#stripe-"+o+"-payment-data").data("amount");break;case"sofort":t.sofort={country:e("#billing_country").val()}}t.type=o,n.createSource(t).then(a.sourceResponse)}},sourceResponse:function(r){r.error?e(document.body).trigger("stripeError",r):"no"===wc_stripe_params.allow_prepaid_card&&"card"===r.source.type&&"prepaid"===r.source.card.funding?(r.error={message:wc_stripe_params.no_prepaid_card_msg},"yes"===wc_stripe_params.is_stripe_checkout?a.submitError('<ul class="woocommerce-error"><li>'+wc_stripe_params.no_prepaid_card_msg+"</li></ul>"):e(document.body).trigger("stripeError",r)):a.processStripeResponse(r.source)},processStripeResponse:function(r){a.reset(),a.form.append("<input type='hidden' class='stripe-source' name='stripe_source' value='"+r.id+"'/>"),e("form#add_payment_method").length&&e(a.form).off("submit",a.form.onSubmit),a.form.submit()},onSubmit:function(r){if(a.isStripeChosen()){if(!(a.isStripeSaveCardChosen()||a.hasSource()||a.hasToken())){if(r.preventDefault(),a.block(),"yes"===wc_stripe_params.is_stripe_checkout&&a.isStripeModalNeeded()&&a.isStripeCardChosen())return"yes"===wc_stripe_params.is_checkout||(a.openModal(),!1);if(a.isSepaChosen()){if(""===e("#stripe-sepa-owner").val())return e(document.body).trigger("stripeError",{error:{message:wc_stripe_params.no_sepa_owner_msg}}),!1;if(""===e("#stripe-sepa-iban").val())return e(document.body).trigger("stripeError",{error:{message:wc_stripe_params.no_sepa_iban_msg}}),!1}if(a.isBancontactChosen()||a.isGiropayChosen()||a.isIdealChosen()||a.isAlipayChosen()||a.isSofortChosen()||a.isP24Chosen()){if(e("form#order_review").length&&(e("form#order_review").off("submit",this.onSubmit),a.form.submit()),e("form.woocommerce-checkout").length)return e("form.woocommerce-checkout").off("submit",this.onSubmit),!0;e("form#add_payment_method").length&&(e("form#add_payment_method").off("submit",this.onSubmit),a.form.submit())}return a.createSource(),!1}return e("form#add_payment_method").length?(r.preventDefault(),"yes"===wc_stripe_params.is_stripe_checkout&&a.isStripeModalNeeded()&&a.isStripeCardChosen()?(a.openModal(),!1):(a.block(),a.createSource(),!1)):void 0}},onCCFormChange:function(){a.reset()},reset:function(){e(".wc-stripe-error, .stripe-source, .stripe_token").remove(),"yes"===wc_stripe_params.is_stripe_checkout&&(a.stripe_submit=!1)},onError:function(r,t){var o=t.error.message,n=a.getSelectedPaymentElement().parents("li").eq(0).find(".stripe-source-errors");"invalid_request_error"!==t.error.type&&"api_connection_error"!==t.error.type&&"api_error"!==t.error.type&&"authentication_error"!==t.error.type&&"rate_limit_error"!==t.error.type||(o=wc_stripe_params.invalid_request_error),"card_error"===t.error.type&&wc_stripe_params.hasOwnProperty(t.error.code)&&(o=wc_stripe_params[t.error.code]),"validation_error"===t.error.type&&wc_stripe_params.hasOwnProperty(t.error.code)&&(o=wc_stripe_params[t.error.code]),a.reset(),e(".woocommerce-NoticeGroup-checkout").remove(),console.log(t.error.message),e(n).html('<ul class="woocommerce_error woocommerce-error wc-stripe-error"><li>'+o+"</li></ul>"),e(".wc-stripe-error").length&&e("html, body").animate({scrollTop:e(".wc-stripe-error").offset().top-200},200),a.unblock()},submitError:function(r){e(".woocommerce-NoticeGroup-checkout, .woocommerce-error, .woocommerce-message").remove(),a.form.prepend('<div class="woocommerce-NoticeGroup woocommerce-NoticeGroup-checkout">'+r+"</div>"),a.form.removeClass("processing").unblock(),a.form.find(".input-text, select, input:checkbox").blur();var t="";e("#add_payment_method").length&&(t=e("#add_payment_method")),e("#order_review").length&&(t=e("#order_review")),e("form.checkout").length&&(t=e("form.checkout")),t.length&&e("html, body").animate({scrollTop:t.offset().top-100},500),e(document.body).trigger("checkout_error"),a.unblock()}};a.init()});
1
+ jQuery(function(e){"use strict";var r,t,o,n=Stripe(wc_stripe_params.key),i=wc_stripe_params.elements_options.length?wc_stripe_params.elements_options:{},s=n.elements(i),a={getAjaxURL:function(e){return wc_stripe_params.ajaxurl.toString().replace("%%endpoint%%","wc_stripe_"+e)},unmountElements:function(){"yes"===wc_stripe_params.inline_cc_form?r.unmount("#stripe-card-element"):(r.unmount("#stripe-card-element"),t.unmount("#stripe-exp-element"),o.unmount("#stripe-cvc-element"))},mountElements:function(){e("#stripe-card-element").length&&("yes"===wc_stripe_params.inline_cc_form?r.mount("#stripe-card-element"):(r.mount("#stripe-card-element"),t.mount("#stripe-exp-element"),o.mount("#stripe-cvc-element")))},createElements:function(){var n={base:{iconColor:"#666EE8",color:"#31325F",fontSize:"15px","::placeholder":{color:"#CFD7E0"}}},i={focus:"focused",empty:"empty",invalid:"invalid"};n=wc_stripe_params.elements_styling?wc_stripe_params.elements_styling:n,i=wc_stripe_params.elements_classes?wc_stripe_params.elements_classes:i,"yes"===wc_stripe_params.inline_cc_form?(r=s.create("card",{style:n,hidePostalCode:!0})).addEventListener("change",function(r){a.onCCFormChange(),r.error&&e(document.body).trigger("stripeError",r)}):(r=s.create("cardNumber",{style:n,classes:i}),t=s.create("cardExpiry",{style:n,classes:i}),o=s.create("cardCvc",{style:n,classes:i}),r.addEventListener("change",function(r){a.onCCFormChange(),a.updateCardBrand(r.brand),r.error&&e(document.body).trigger("stripeError",r)}),t.addEventListener("change",function(r){a.onCCFormChange(),r.error&&e(document.body).trigger("stripeError",r)}),o.addEventListener("change",function(r){a.onCCFormChange(),r.error&&e(document.body).trigger("stripeError",r)})),"yes"===wc_stripe_params.is_checkout?e(document.body).on("updated_checkout",function(){r&&a.unmountElements(),a.mountElements()}):(e("form#add_payment_method").length||e("form#order_review").length)&&a.mountElements()},updateCardBrand:function(r){var t={visa:"stripe-visa-brand",mastercard:"stripe-mastercard-brand",amex:"stripe-amex-brand",discover:"stripe-discover-brand",diners:"stripe-diners-brand",jcb:"stripe-jcb-brand",unknown:"stripe-credit-card-brand"},o=e(".stripe-card-brand"),n="stripe-credit-card-brand";r in t&&(n=t[r]),e.each(t,function(e,r){o.removeClass(r)}),o.addClass(n)},init:function(){"yes"!==wc_stripe_params.is_change_payment_page&&"yes"!==wc_stripe_params.is_pay_for_order_page||e(document.body).trigger("wc-credit-card-form-init"),this.stripe_checkout_submit=!1,e("form.woocommerce-checkout").length&&(this.form=e("form.woocommerce-checkout")),e("form.woocommerce-checkout").on("checkout_place_order_stripe checkout_place_order_stripe_bancontact checkout_place_order_stripe_sofort checkout_place_order_stripe_giropay checkout_place_order_stripe_ideal checkout_place_order_stripe_alipay checkout_place_order_stripe_sepa checkout_place_order_stripe_bitcoin",this.onSubmit),e("form#order_review").length&&(this.form=e("form#order_review")),e("form#order_review, form#add_payment_method").on("submit",this.onSubmit),e("form#add_payment_method").length&&(this.form=e("form#add_payment_method")),e("form.woocommerce-checkout").on("change",this.reset),e(document).on("stripeError",this.onError).on("checkout_error",this.reset),a.createElements(),"yes"===wc_stripe_params.is_stripe_checkout&&e(document.body).on("click",".wc-stripe-checkout-button",function(){return a.openModal(),!1})},isStripeChosen:function(){return e("#payment_method_stripe, #payment_method_stripe_bancontact, #payment_method_stripe_sofort, #payment_method_stripe_giropay, #payment_method_stripe_ideal, #payment_method_stripe_alipay, #payment_method_stripe_sepa, #payment_method_stripe_bitcoin, #payment_method_stripe_eps, #payment_method_stripe_multibanco").is(":checked")||e("#payment_method_stripe").is(":checked")&&"new"===e('input[name="wc-stripe-payment-token"]:checked').val()||e("#payment_method_stripe_sepa").is(":checked")&&"new"===e('input[name="wc-stripe-payment-token"]:checked').val()},isStripeSaveCardChosen:function(){return e("#payment_method_stripe").is(":checked")&&e('input[name="wc-stripe-payment-token"]').is(":checked")&&"new"!==e('input[name="wc-stripe-payment-token"]:checked').val()||e("#payment_method_stripe_sepa").is(":checked")&&e('input[name="wc-stripe_sepa-payment-token"]').is(":checked")&&"new"!==e('input[name="wc-stripe_sepa-payment-token"]:checked').val()},isStripeCardChosen:function(){return e("#payment_method_stripe").is(":checked")},isBancontactChosen:function(){return e("#payment_method_stripe_bancontact").is(":checked")},isGiropayChosen:function(){return e("#payment_method_stripe_giropay").is(":checked")},isIdealChosen:function(){return e("#payment_method_stripe_ideal").is(":checked")},isSofortChosen:function(){return e("#payment_method_stripe_sofort").is(":checked")},isAlipayChosen:function(){return e("#payment_method_stripe_alipay").is(":checked")},isSepaChosen:function(){return e("#payment_method_stripe_sepa").is(":checked")},isBitcoinChosen:function(){return e("#payment_method_stripe_bitcoin").is(":checked")},isP24Chosen:function(){return e("#payment_method_stripe_p24").is(":checked")},isEpsChosen:function(){return e("#payment_method_stripe_eps").is(":checked")},isMultibancoChosen:function(){return e("#payment_method_stripe_multibanco").is(":checked")},hasSource:function(){return 0<e("input.stripe-source").length},hasToken:function(){return 0<e("input.stripe_token").length},isMobile:function(){return!!/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)},isStripeModalNeeded:function(e){var r=a.form.find("input.stripe_token");return(!a.stripe_submit||!r)&&!!a.isStripeChosen()},block:function(){a.isMobile()||a.form.block({message:null,overlayCSS:{background:"#fff",opacity:.6}})},unblock:function(){a.form.unblock()},getSelectedPaymentElement:function(){return e('.payment_methods input[name="payment_method"]:checked')},openModal:function(){var r=a.form,t=e("#stripe-payment-data");a.reset();StripeCheckout.open({key:wc_stripe_params.key,billingAddress:t.data("billing-address"),zipCode:t.data("verify-zip"),amount:t.data("amount"),name:t.data("name"),description:t.data("description"),currency:t.data("currency"),image:t.data("image"),bitcoin:t.data("bitcoin"),locale:t.data("locale"),email:e("#billing_email").val()||t.data("email"),panelLabel:t.data("panel-label"),allowRememberMe:t.data("allow-remember-me"),token:function(e){if(r.find("input.stripe_source").remove(),"token"===e.object)n.createSource({type:"card",token:e.id}).then(a.sourceResponse);else if("source"===e.object){var t={source:e};a.sourceResponse(t)}},closed:a.onClose()})},resetModal:function(){a.reset(),a.stripe_checkout_submit=!1},onClose:function(){a.unblock()},getOwnerDetails:function(){var r=e("#billing_first_name").length?e("#billing_first_name").val():wc_stripe_params.billing_first_name,t=e("#billing_last_name").length?e("#billing_last_name").val():wc_stripe_params.billing_last_name,o={owner:{name:"",address:{},email:"",phone:""}};return o.owner.name=r,r&&t&&(o.owner.name=r+" "+t),o.owner.email=e("#billing_email").val(),o.owner.phone=e("#billing_phone").val(),void 0!==o.owner.phone&&0>=o.owner.phone.length&&delete o.owner.phone,void 0!==o.owner.email&&0>=o.owner.email.length&&delete o.owner.email,void 0!==o.owner.name&&0>=o.owner.name.length&&delete o.owner.name,e("#billing_address_1").length>0?(o.owner.address.line1=e("#billing_address_1").val(),o.owner.address.line2=e("#billing_address_2").val(),o.owner.address.state=e("#billing_state").val(),o.owner.address.city=e("#billing_city").val(),o.owner.address.postal_code=e("#billing_postcode").val(),o.owner.address.country=e("#billing_country").val()):wc_stripe_params.billing_address_1&&(o.owner.address.line1=wc_stripe_params.billing_address_1,o.owner.address.line2=wc_stripe_params.billing_address_2,o.owner.address.state=wc_stripe_params.billing_state,o.owner.address.city=wc_stripe_params.billing_city,o.owner.address.postal_code=wc_stripe_params.billing_postcode,o.owner.address.country=wc_stripe_params.billing_country),o},createSource:function(){var t=a.getOwnerDetails(),o="card";if(a.isBancontactChosen()&&(o="bancontact"),a.isSepaChosen()&&(o="sepa_debit"),a.isIdealChosen()&&(o="ideal"),a.isSofortChosen()&&(o="sofort"),a.isBitcoinChosen()&&(o="bitcoin"),a.isGiropayChosen()&&(o="giropay"),a.isAlipayChosen()&&(o="alipay"),"card"===o)n.createSource(r,t).then(a.sourceResponse);else{switch(o){case"bancontact":case"giropay":case"ideal":case"sofort":case"alipay":t.amount=e("#stripe-"+o+"-payment-data").data("amount"),t.currency=e("#stripe-"+o+"-payment-data").data("currency"),t.redirect={return_url:wc_stripe_params.return_url},wc_stripe_params.statement_descriptor&&(t.statement_descriptor=wc_stripe_params.statement_descriptor)}switch(o){case"sepa_debit":var i=e("#stripe-payment-data"),s=e("#billing_email").length?e("#billing_email").val():i.data("email");t.currency=e("#stripe-"+o+"-payment-data").data("currency"),t.owner.name=e("#stripe-sepa-owner").val(),t.owner.email=s,t.sepa_debit={iban:e("#stripe-sepa-iban").val()},t.mandate={notification_method:wc_stripe_params.sepa_mandate_notification};break;case"ideal":t.ideal={bank:e("#stripe-ideal-bank").val()};break;case"bitcoin":case"alipay":t.currency=e("#stripe-"+o+"-payment-data").data("currency"),t.amount=e("#stripe-"+o+"-payment-data").data("amount");break;case"sofort":t.sofort={country:e("#billing_country").val()}}t.type=o,n.createSource(t).then(a.sourceResponse)}},sourceResponse:function(r){r.error?e(document.body).trigger("stripeError",r):"no"===wc_stripe_params.allow_prepaid_card&&"card"===r.source.type&&"prepaid"===r.source.card.funding?(r.error={message:wc_stripe_params.no_prepaid_card_msg},"yes"===wc_stripe_params.is_stripe_checkout?a.submitError('<ul class="woocommerce-error"><li>'+wc_stripe_params.no_prepaid_card_msg+"</li></ul>"):e(document.body).trigger("stripeError",r)):a.processStripeResponse(r.source)},processStripeResponse:function(r){a.reset(),a.form.append("<input type='hidden' class='stripe-source' name='stripe_source' value='"+r.id+"'/>"),e("form#add_payment_method").length&&e(a.form).off("submit",a.form.onSubmit),a.form.submit()},onSubmit:function(r){if(a.isStripeChosen()){if(!(a.isStripeSaveCardChosen()||a.hasSource()||a.hasToken())){if(r.preventDefault(),a.block(),"yes"===wc_stripe_params.is_stripe_checkout&&a.isStripeModalNeeded()&&a.isStripeCardChosen())return"yes"===wc_stripe_params.is_checkout||(a.openModal(),!1);if(a.isSepaChosen()){if(""===e("#stripe-sepa-owner").val())return e(document.body).trigger("stripeError",{error:{message:wc_stripe_params.no_sepa_owner_msg}}),!1;if(""===e("#stripe-sepa-iban").val())return e(document.body).trigger("stripeError",{error:{message:wc_stripe_params.no_sepa_iban_msg}}),!1}if(a.isBancontactChosen()||a.isGiropayChosen()||a.isIdealChosen()||a.isAlipayChosen()||a.isSofortChosen()||a.isP24Chosen()||a.isEpsChosen()||a.isMultibancoChosen()){if(e("form#order_review").length)return e("form#order_review").off("submit",this.onSubmit),a.form.submit(),!1;if(e("form.woocommerce-checkout").length)return!0;if(e("form#add_payment_method").length)return e("form#add_payment_method").off("submit",this.onSubmit),a.form.submit(),!1}return a.createSource(),!1}return e("form#add_payment_method").length?(r.preventDefault(),"yes"===wc_stripe_params.is_stripe_checkout&&a.isStripeModalNeeded()&&a.isStripeCardChosen()?(a.openModal(),!1):(a.block(),a.createSource(),!1)):void 0}},onCCFormChange:function(){a.reset()},reset:function(){e(".wc-stripe-error, .stripe-source, .stripe_token").remove(),"yes"===wc_stripe_params.is_stripe_checkout&&(a.stripe_submit=!1)},onError:function(r,t){var o=t.error.message,n=a.getSelectedPaymentElement().parents("li").eq(0).find(".stripe-source-errors");"invalid_request_error"!==t.error.type&&"api_connection_error"!==t.error.type&&"api_error"!==t.error.type&&"authentication_error"!==t.error.type&&"rate_limit_error"!==t.error.type||(o=wc_stripe_params.invalid_request_error),"card_error"===t.error.type&&wc_stripe_params.hasOwnProperty(t.error.code)&&(o=wc_stripe_params[t.error.code]),"validation_error"===t.error.type&&wc_stripe_params.hasOwnProperty(t.error.code)&&(o=wc_stripe_params[t.error.code]),a.reset(),e(".woocommerce-NoticeGroup-checkout").remove(),console.log(t.error.message),e(n).html('<ul class="woocommerce_error woocommerce-error wc-stripe-error"><li>'+o+"</li></ul>"),e(".wc-stripe-error").length&&e("html, body").animate({scrollTop:e(".wc-stripe-error").offset().top-200},200),a.unblock()},submitError:function(r){e(".woocommerce-NoticeGroup-checkout, .woocommerce-error, .woocommerce-message").remove(),a.form.prepend('<div class="woocommerce-NoticeGroup woocommerce-NoticeGroup-checkout">'+r+"</div>"),a.form.removeClass("processing").unblock(),a.form.find(".input-text, select, input:checkbox").blur();var t="";e("#add_payment_method").length&&(t=e("#add_payment_method")),e("#order_review").length&&(t=e("#order_review")),e("form.checkout").length&&(t=e("form.checkout")),t.length&&e("html, body").animate({scrollTop:t.offset().top-100},500),e(document.body).trigger("checkout_error"),a.unblock()}};a.init()});
changelog.txt CHANGED
@@ -1,5 +1,13 @@
1
  *** Changelog ***
2
 
 
 
 
 
 
 
 
 
3
  = 4.1.0 - 2018-04-11 =
4
  * Tweak - Create user session only on product detail page.
5
  * Tweak - Payment Request session handling to bail if session already exists.
1
  *** Changelog ***
2
 
3
+ = 4.1.1 - 2018-04-17 =
4
+ * Tweak - Use payment_complete method when charge is succeeded or captured so other WC related tasks gets triggered.
5
+ * Tweak - Styling for the credit card logos.
6
+ * Add - Subscription change payment method support for SEPA.
7
+ * Add - Credit card branding detection on credit card field.
8
+ * Fix - When checkout form fields fails second time, page refreshes instead of using AJAX.
9
+ * Fix - Potential issue when WC is not activated.
10
+
11
  = 4.1.0 - 2018-04-11 =
12
  * Tweak - Create user session only on product detail page.
13
  * Tweak - Payment Request session handling to bail if session already exists.
includes/abstracts/abstract-wc-stripe-payment-gateway.php CHANGED
@@ -219,12 +219,12 @@ abstract class WC_Stripe_Payment_Gateway extends WC_Payment_Gateway_CC {
219
  */
220
  public function payment_icons() {
221
  return apply_filters( 'wc_stripe_payment_icons', array(
222
- 'visa' => '<img src="' . WC()->plugin_url() . '/assets/images/icons/credit-cards/visa.svg" class="stripe-visa-icon stripe-icon" alt="Visa" />',
223
- 'amex' => '<img src="' . WC()->plugin_url() . '/assets/images/icons/credit-cards/amex.svg" class="stripe-amex-icon stripe-icon" alt="American Express" />',
224
- 'mastercard' => '<img src="' . WC()->plugin_url() . '/assets/images/icons/credit-cards/mastercard.svg" class="stripe-mastercard-icon stripe-icon" alt="Mastercard" />',
225
- 'discover' => '<img src="' . WC()->plugin_url() . '/assets/images/icons/credit-cards/discover.svg" class="stripe-discover-icon stripe-icon" alt="Discover" />',
226
- 'diners' => '<img src="' . WC()->plugin_url() . '/assets/images/icons/credit-cards/diners.svg" class="stripe-diners-icon stripe-icon" alt="Diners" />',
227
- 'jcb' => '<img src="' . WC()->plugin_url() . '/assets/images/icons/credit-cards/jcb.svg" class="stripe-jcb-icon stripe-icon" alt="JCB" />',
228
  'alipay' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/alipay.svg" class="stripe-alipay-icon stripe-icon" alt="Alipay" />',
229
  'wechat' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/wechat.svg" class="stripe-wechat-icon stripe-icon" alt="Wechat Pay" />',
230
  'bitcoin' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/bitcoin.svg" class="stripe-bitcoin-icon stripe-icon" alt="Bitcoin" />',
219
  */
220
  public function payment_icons() {
221
  return apply_filters( 'wc_stripe_payment_icons', array(
222
+ 'visa' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/visa.svg" class="stripe-visa-icon stripe-icon" alt="Visa" />',
223
+ 'amex' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/amex.svg" class="stripe-amex-icon stripe-icon" alt="American Express" />',
224
+ 'mastercard' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/mastercard.svg" class="stripe-mastercard-icon stripe-icon" alt="Mastercard" />',
225
+ 'discover' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/discover.svg" class="stripe-discover-icon stripe-icon" alt="Discover" />',
226
+ 'diners' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/diners.svg" class="stripe-diners-icon stripe-icon" alt="Diners" />',
227
+ 'jcb' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/jcb.svg" class="stripe-jcb-icon stripe-icon" alt="JCB" />',
228
  'alipay' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/alipay.svg" class="stripe-alipay-icon stripe-icon" alt="Alipay" />',
229
  'wechat' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/wechat.svg" class="stripe-wechat-icon stripe-icon" alt="Wechat Pay" />',
230
  'bitcoin' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/bitcoin.svg" class="stripe-bitcoin-icon stripe-icon" alt="Bitcoin" />',
includes/admin/class-wc-stripe-admin-notices.php CHANGED
@@ -100,53 +100,86 @@ class WC_Stripe_Admin_Notices {
100
  * @version 4.0.0
101
  */
102
  public function stripe_check_environment() {
103
- $show_ssl_notice = get_option( 'wc_stripe_show_ssl_notice' );
104
- $show_keys_notice = get_option( 'wc_stripe_show_keys_notice' );
105
- $options = get_option( 'woocommerce_stripe_settings' );
106
- $testmode = ( isset( $options['testmode'] ) && 'yes' === $options['testmode'] ) ? true : false;
107
- $test_pub_key = isset( $options['test_publishable_key'] ) ? $options['test_publishable_key'] : '';
108
- $test_secret_key = isset( $options['test_secret_key'] ) ? $options['test_secret_key'] : '';
109
- $live_pub_key = isset( $options['publishable_key'] ) ? $options['publishable_key'] : '';
110
- $live_secret_key = isset( $options['secret_key'] ) ? $options['secret_key'] : '';
111
-
112
- if ( isset( $options['enabled'] ) && 'yes' === $options['enabled'] && empty( $show_keys_notice ) ) {
113
- $secret = WC_Stripe_API::get_secret_key();
114
-
115
- if ( empty( $secret ) && ! ( isset( $_GET['page'], $_GET['section'] ) && 'wc-settings' === $_GET['page'] && 'stripe' === $_GET['section'] ) ) {
116
- $setting_link = $this->get_setting_link();
117
- /* translators: 1) link */
118
- $this->add_admin_notice( 'keys', 'notice notice-warning', sprintf( __( 'Stripe is almost ready. To get started, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true );
 
 
 
 
 
 
119
  }
120
 
121
- // Check if keys are entered properly per live/test mode.
122
- if ( $testmode ) {
123
- if (
124
- ! empty( $test_pub_key ) && ! preg_match( '/^pk_test_/', $test_pub_key )
125
- || ( ! empty( $test_secret_key ) && ! preg_match( '/^sk_test_/', $test_secret_key )
126
- && ! empty( $test_secret_key ) && ! preg_match( '/^rk_test_/', $test_secret_key ) ) )
127
- {
128
- $setting_link = $this->get_setting_link();
129
- /* translators: 1) link */
130
- $this->add_admin_notice( 'keys', 'notice notice-error', sprintf( __( 'Stripe is in test mode however your test keys may not be valid. Test keys start with pk_test and sk_test or rk_test. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true );
 
 
 
 
131
  }
132
- } else {
133
- if (
134
- ! empty( $live_pub_key ) && ! preg_match( '/^pk_live_/', $live_pub_key )
135
- || ( ! empty( $live_secret_key ) && ! preg_match( '/^sk_live_/', $live_secret_key )
136
- && ! empty( $live_secret_key ) && ! preg_match( '/^rk_live_/', $live_secret_key ) ) )
137
- {
138
  $setting_link = $this->get_setting_link();
139
  /* translators: 1) link */
140
- $this->add_admin_notice( 'keys', 'notice notice-error', sprintf( __( 'Stripe is in live mode however your test keys may not be valid. Live keys start with pk_live and sk_live or rk_live. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
141
  }
142
  }
143
- }
144
 
145
- if ( empty( $show_ssl_notice ) && isset( $options['enabled'] ) && 'yes' === $options['enabled'] ) {
146
- // Show message if enabled and FORCE SSL is disabled and WordpressHTTPS plugin is not detected.
147
- if ( ( function_exists( 'wc_site_is_https' ) && ! wc_site_is_https() ) && ( 'no' === get_option( 'woocommerce_force_ssl_checkout' ) && ! class_exists( 'WordPressHTTPS' ) ) ) {
148
- /* translators: 1) link 2) link */
149
- $this->add_admin_notice( 'ssl', 'notice notice-warning', sprintf( __( 'Stripe is enabled, but the <a href="%1$s">force SSL option</a> is disabled; your checkout may not be secure! Please enable SSL and ensure your server has a valid <a href="%2$s" target="_blank">SSL certificate</a> - Stripe will only work in test mode.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout' ), 'https://en.wikipedia.org/wiki/Transport_Layer_Security' ), true );
 
150
  }
151
  }
152
  }
@@ -192,6 +225,15 @@ class WC_Stripe_Admin_Notices {
192
  $notice = wc_clean( $_GET['wc-stripe-hide-notice'] );
193
 
194
  switch ( $notice ) {
 
 
 
 
 
 
 
 
 
195
  case 'ssl':
196
  update_option( 'wc_stripe_show_ssl_notice', 'no' );
197
  break;
100
  * @version 4.0.0
101
  */
102
  public function stripe_check_environment() {
103
+ $show_ssl_notice = get_option( 'wc_stripe_show_ssl_notice' );
104
+ $show_keys_notice = get_option( 'wc_stripe_show_keys_notice' );
105
+ $show_phpver_notice = get_option( 'wc_stripe_show_phpver_notice' );
106
+ $show_wcver_notice = get_option( 'wc_stripe_show_wcver_notice' );
107
+ $show_curl_notice = get_option( 'wc_stripe_show_curl_notice' );
108
+ $options = get_option( 'woocommerce_stripe_settings' );
109
+ $testmode = ( isset( $options['testmode'] ) && 'yes' === $options['testmode'] ) ? true : false;
110
+ $test_pub_key = isset( $options['test_publishable_key'] ) ? $options['test_publishable_key'] : '';
111
+ $test_secret_key = isset( $options['test_secret_key'] ) ? $options['test_secret_key'] : '';
112
+ $live_pub_key = isset( $options['publishable_key'] ) ? $options['publishable_key'] : '';
113
+ $live_secret_key = isset( $options['secret_key'] ) ? $options['secret_key'] : '';
114
+
115
+ if ( isset( $options['enabled'] ) && 'yes' === $options['enabled'] ) {
116
+ if ( empty( $show_phpver_notice ) ) {
117
+ if ( version_compare( phpversion(), WC_STRIPE_MIN_PHP_VER, '<' ) ) {
118
+ /* translators: 1) int version 2) int version */
119
+ $message = __( 'WooCommerce Stripe - The minimum PHP version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' );
120
+
121
+ $this->add_admin_notice( 'phpver', 'error', sprintf( $message, WC_STRIPE_MIN_PHP_VER, phpversion() ), true );
122
+
123
+ return;
124
+ }
125
  }
126
 
127
+ if ( empty( $show_wcver_notice ) ) {
128
+ if ( version_compare( WC_VERSION, WC_STRIPE_MIN_WC_VER, '<' ) ) {
129
+ /* translators: 1) int version 2) int version */
130
+ $message = __( 'WooCommerce Stripe - The minimum WooCommerce version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' );
131
+
132
+ $this->add_admin_notice( 'wcver', 'notice notice-warning', sprintf( $message, WC_STRIPE_MIN_WC_VER, WC_VERSION ), true );
133
+
134
+ return;
135
+ }
136
+ }
137
+
138
+ if ( empty( $show_curl_notice ) ) {
139
+ if ( ! function_exists( 'curl_init' ) ) {
140
+ $this->add_admin_notice( 'curl', 'notice notice-warning', __( 'WooCommerce Stripe - cURL is not installed.', 'woocommerce-gateway-stripe' ), true );
141
  }
142
+ }
143
+
144
+ if ( empty( $show_keys_notice ) ) {
145
+ $secret = WC_Stripe_API::get_secret_key();
146
+
147
+ if ( empty( $secret ) && ! ( isset( $_GET['page'], $_GET['section'] ) && 'wc-settings' === $_GET['page'] && 'stripe' === $_GET['section'] ) ) {
148
  $setting_link = $this->get_setting_link();
149
  /* translators: 1) link */
150
+ $this->add_admin_notice( 'keys', 'notice notice-warning', sprintf( __( 'Stripe is almost ready. To get started, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true );
151
+ }
152
+
153
+ // Check if keys are entered properly per live/test mode.
154
+ if ( $testmode ) {
155
+ if (
156
+ ! empty( $test_pub_key ) && ! preg_match( '/^pk_test_/', $test_pub_key )
157
+ || ( ! empty( $test_secret_key ) && ! preg_match( '/^sk_test_/', $test_secret_key )
158
+ && ! empty( $test_secret_key ) && ! preg_match( '/^rk_test_/', $test_secret_key ) ) )
159
+ {
160
+ $setting_link = $this->get_setting_link();
161
+ /* translators: 1) link */
162
+ $this->add_admin_notice( 'keys', 'notice notice-error', sprintf( __( 'Stripe is in test mode however your test keys may not be valid. Test keys start with pk_test and sk_test or rk_test. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true );
163
+ }
164
+ } else {
165
+ if (
166
+ ! empty( $live_pub_key ) && ! preg_match( '/^pk_live_/', $live_pub_key )
167
+ || ( ! empty( $live_secret_key ) && ! preg_match( '/^sk_live_/', $live_secret_key )
168
+ && ! empty( $live_secret_key ) && ! preg_match( '/^rk_live_/', $live_secret_key ) ) )
169
+ {
170
+ $setting_link = $this->get_setting_link();
171
+ /* translators: 1) link */
172
+ $this->add_admin_notice( 'keys', 'notice notice-error', sprintf( __( 'Stripe is in live mode however your test keys may not be valid. Live keys start with pk_live and sk_live or rk_live. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true );
173
+ }
174
  }
175
  }
 
176
 
177
+ if ( empty( $show_ssl_notice ) ) {
178
+ // Show message if enabled and FORCE SSL is disabled and WordpressHTTPS plugin is not detected.
179
+ if ( ( function_exists( 'wc_site_is_https' ) && ! wc_site_is_https() ) && ( 'no' === get_option( 'woocommerce_force_ssl_checkout' ) && ! class_exists( 'WordPressHTTPS' ) ) ) {
180
+ /* translators: 1) link 2) link */
181
+ $this->add_admin_notice( 'ssl', 'notice notice-warning', sprintf( __( 'Stripe is enabled, but the <a href="%1$s">force SSL option</a> is disabled; your checkout may not be secure! Please enable SSL and ensure your server has a valid <a href="%2$s" target="_blank">SSL certificate</a> - Stripe will only work in test mode.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout' ), 'https://en.wikipedia.org/wiki/Transport_Layer_Security' ), true );
182
+ }
183
  }
184
  }
185
  }
225
  $notice = wc_clean( $_GET['wc-stripe-hide-notice'] );
226
 
227
  switch ( $notice ) {
228
+ case 'phpver':
229
+ update_option( 'wc_stripe_show_phpver_notice', 'no' );
230
+ break;
231
+ case 'wcver':
232
+ update_option( 'wc_stripe_show_wcver_notice', 'no' );
233
+ break;
234
+ case 'curl':
235
+ update_option( 'wc_stripe_show_curl_notice', 'no' );
236
+ break;
237
  case 'ssl':
238
  update_option( 'wc_stripe_show_ssl_notice', 'no' );
239
  break;
includes/class-wc-gateway-stripe.php CHANGED
@@ -276,6 +276,7 @@ class WC_Gateway_Stripe extends WC_Stripe_Payment_Gateway {
276
  $display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards;
277
  $total = WC()->cart->total;
278
  $user_email = '';
 
279
 
280
  // If paying from order, we need to get total from order not cart.
281
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
@@ -318,14 +319,14 @@ class WC_Gateway_Stripe extends WC_Stripe_Payment_Gateway {
318
  data-three-d-secure="' . esc_attr( $this->three_d_secure ? 'true' : 'false' ) . '"
319
  data-allow-remember-me="' . esc_attr( apply_filters( 'wc_stripe_allow_remember_me', true ) ? 'true' : 'false' ) . '">';
320
 
321
- if ( $this->description ) {
322
  if ( $this->testmode ) {
323
  /* translators: link to Stripe testing page */
324
- $this->description .= ' ' . sprintf( __( 'TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date or check the <a href="%s" target="_blank">Testing Stripe documentation</a> for more card numbers.', 'woocommerce-gateway-stripe' ), 'https://stripe.com/docs/testing' );
325
- $this->description = trim( $this->description );
326
  }
327
 
328
- echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ), $this->id );
329
  }
330
 
331
  if ( $display_tokenization ) {
@@ -372,15 +373,18 @@ class WC_Gateway_Stripe extends WC_Stripe_Payment_Gateway {
372
  </div>
373
  <?php } else { ?>
374
  <div class="form-row form-row-wide">
375
- <label><?php _e( 'Card Number', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
 
 
 
 
376
 
377
- <div id="stripe-card-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
378
- <!-- a Stripe Element will be inserted here. -->
379
  </div>
380
  </div>
381
 
382
  <div class="form-row form-row-first">
383
- <label><?php _e( 'Expiry Date', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
384
 
385
  <div id="stripe-exp-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
386
  <!-- a Stripe Element will be inserted here. -->
@@ -388,7 +392,7 @@ class WC_Gateway_Stripe extends WC_Stripe_Payment_Gateway {
388
  </div>
389
 
390
  <div class="form-row form-row-last">
391
- <label><?php _e( 'Card Code (CVC)', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
392
  <div id="stripe-cvc-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
393
  <!-- a Stripe Element will be inserted here. -->
394
  </div>
276
  $display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards;
277
  $total = WC()->cart->total;
278
  $user_email = '';
279
+ $description = $this->get_description() ? $this->get_description() : '';
280
 
281
  // If paying from order, we need to get total from order not cart.
282
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
319
  data-three-d-secure="' . esc_attr( $this->three_d_secure ? 'true' : 'false' ) . '"
320
  data-allow-remember-me="' . esc_attr( apply_filters( 'wc_stripe_allow_remember_me', true ) ? 'true' : 'false' ) . '">';
321
 
322
+ if ( $description ) {
323
  if ( $this->testmode ) {
324
  /* translators: link to Stripe testing page */
325
+ $description .= ' ' . sprintf( __( 'TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date or check the <a href="%s" target="_blank">Testing Stripe documentation</a> for more card numbers.', 'woocommerce-gateway-stripe' ), 'https://stripe.com/docs/testing' );
326
+ $description = trim( $description );
327
  }
328
 
329
+ echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id );
330
  }
331
 
332
  if ( $display_tokenization ) {
373
  </div>
374
  <?php } else { ?>
375
  <div class="form-row form-row-wide">
376
+ <label><?php esc_html_e( 'Card Number', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
377
+ <div class="stripe-card-group">
378
+ <div id="stripe-card-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
379
+ <!-- a Stripe Element will be inserted here. -->
380
+ </div>
381
 
382
+ <i class="stripe-credit-card-brand stripe-card-brand" alt="Credit Card"></i>
 
383
  </div>
384
  </div>
385
 
386
  <div class="form-row form-row-first">
387
+ <label><?php esc_html_e( 'Expiry Date', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
388
 
389
  <div id="stripe-exp-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
390
  <!-- a Stripe Element will be inserted here. -->
392
  </div>
393
 
394
  <div class="form-row form-row-last">
395
+ <label><?php esc_html_e( 'Card Code (CVC)', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
396
  <div id="stripe-cvc-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
397
  <!-- a Stripe Element will be inserted here. -->
398
  </div>
includes/class-wc-stripe-logger.php CHANGED
@@ -21,6 +21,10 @@ class WC_Stripe_Logger {
21
  * @version 4.0.0
22
  */
23
  public static function log( $message, $start_time = null, $end_time = null ) {
 
 
 
 
24
  if ( apply_filters( 'wc_stripe_logging', true, $message ) ) {
25
  if ( empty( self::$logger ) ) {
26
  self::$logger = new WC_Logger();
21
  * @version 4.0.0
22
  */
23
  public static function log( $message, $start_time = null, $end_time = null ) {
24
+ if ( ! class_exists( 'WC_Logger' ) ) {
25
+ return;
26
+ }
27
+
28
  if ( apply_filters( 'wc_stripe_logging', true, $message ) ) {
29
  if ( empty( self::$logger ) ) {
30
  self::$logger = new WC_Logger();
includes/class-wc-stripe-webhook-handler.php CHANGED
@@ -300,17 +300,19 @@ class WC_Stripe_Webhook_Handler extends WC_Stripe_Payment_Gateway {
300
  $this->update_fees( $order, $notification->data->object->balance_transaction );
301
  }
302
 
303
- if ( is_callable( array( $order, 'save' ) ) ) {
304
- $order->save();
305
- }
306
-
307
- /* translators: transaction id */
308
- $order->update_status( $order->needs_processing() ? 'processing' : 'completed', sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $notification->data->object->id ) );
309
-
310
  // Check and see if capture is partial.
311
  if ( $this->is_partial_capture( $notification ) ) {
312
- $order->set_total( $this->get_partial_amount_to_charge( $notification ) );
313
- $order->add_order_note( __( 'This charge was partially captured via Stripe Dashboard', 'woocommerce-gateway-stripe' ) );
 
 
 
 
 
 
 
 
 
314
  $order->save();
315
  }
316
  }
@@ -351,12 +353,14 @@ class WC_Stripe_Webhook_Handler extends WC_Stripe_Payment_Gateway {
351
  $this->update_fees( $order, $notification->data->object->balance_transaction );
352
  }
353
 
 
 
 
 
 
354
  if ( is_callable( array( $order, 'save' ) ) ) {
355
  $order->save();
356
  }
357
-
358
- /* translators: transaction id */
359
- $order->update_status( $order->needs_processing() ? 'processing' : 'completed', sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $notification->data->object->id ) );
360
  }
361
 
362
  /**
300
  $this->update_fees( $order, $notification->data->object->balance_transaction );
301
  }
302
 
 
 
 
 
 
 
 
303
  // Check and see if capture is partial.
304
  if ( $this->is_partial_capture( $notification ) ) {
305
+ $partial_amount = $this->get_partial_amount_to_charge( $notification );
306
+ $order->set_total( $partial_amount );
307
+ $order->add_order_note( sprintf( __( 'This charge was partially captured via Stripe Dashboard in the amount of: %s', 'woocommerce-gateway-stripe' ), $partial_amount ) );
308
+ } else {
309
+ $order->payment_complete( $notification->data->object->id );
310
+
311
+ /* translators: transaction id */
312
+ $order->add_order_note( sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $notification->data->object->id ) );
313
+ }
314
+
315
+ if ( is_callable( array( $order, 'save' ) ) ) {
316
  $order->save();
317
  }
318
  }
353
  $this->update_fees( $order, $notification->data->object->balance_transaction );
354
  }
355
 
356
+ $order->payment_complete( $notification->data->object->id );
357
+
358
+ /* translators: transaction id */
359
+ $order->add_order_note( sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $notification->data->object->id ) );
360
+
361
  if ( is_callable( array( $order, 'save' ) ) ) {
362
  $order->save();
363
  }
 
 
 
364
  }
365
 
366
  /**
includes/compat/class-wc-stripe-sepa-subs-compat.php CHANGED
@@ -119,6 +119,34 @@ class WC_Stripe_Sepa_Subs_Compat extends WC_Gateway_Stripe_Sepa {
119
  }
120
  }
121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  /**
123
  * Scheduled_subscription_payment function.
124
  *
119
  }
120
  }
121
 
122
+ /**
123
+ * Process the payment method change for subscriptions.
124
+ *
125
+ * @since 4.0.4
126
+ * @param int $order_id
127
+ */
128
+ public function change_subs_payment_method( $order_id ) {
129
+ try {
130
+ $subscription = wc_get_order( $order_id );
131
+ $prepared_source = $this->prepare_source( get_current_user_id(), true );
132
+
133
+ if ( empty( $prepared_source->source ) ) {
134
+ $localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
135
+ throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message );
136
+ }
137
+
138
+ $this->save_source_to_order( $subscription, $prepared_source );
139
+
140
+ return array(
141
+ 'result' => 'success',
142
+ 'redirect' => $this->get_return_url( $subscription ),
143
+ );
144
+ } catch ( WC_Stripe_Exception $e ) {
145
+ wc_add_notice( $e->getLocalizedMessage(), 'error' );
146
+ WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
147
+ }
148
+ }
149
+
150
  /**
151
  * Scheduled_subscription_payment function.
152
  *
includes/payment-methods/class-wc-gateway-stripe-alipay.php CHANGED
@@ -169,8 +169,9 @@ class WC_Gateway_Stripe_Alipay extends WC_Stripe_Payment_Gateway {
169
  * Payment form on checkout page
170
  */
171
  public function payment_fields() {
172
- $user = wp_get_current_user();
173
- $total = WC()->cart->total;
 
174
 
175
  // If paying from order, we need to get total from order not cart.
176
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
@@ -190,8 +191,8 @@ class WC_Gateway_Stripe_Alipay extends WC_Stripe_Payment_Gateway {
190
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
191
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
192
 
193
- if ( $this->description ) {
194
- echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ), $this->id );
195
  }
196
 
197
  echo '</div>';
169
  * Payment form on checkout page
170
  */
171
  public function payment_fields() {
172
+ $user = wp_get_current_user();
173
+ $total = WC()->cart->total;
174
+ $description = $this->get_description();
175
 
176
  // If paying from order, we need to get total from order not cart.
177
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
191
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
192
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
193
 
194
+ if ( $description ) {
195
+ echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id );
196
  }
197
 
198
  echo '</div>';
includes/payment-methods/class-wc-gateway-stripe-bancontact.php CHANGED
@@ -162,8 +162,9 @@ class WC_Gateway_Stripe_Bancontact extends WC_Stripe_Payment_Gateway {
162
  * Payment form on checkout page
163
  */
164
  public function payment_fields() {
165
- $user = wp_get_current_user();
166
- $total = WC()->cart->total;
 
167
 
168
  // If paying from order, we need to get total from order not cart.
169
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
@@ -183,8 +184,8 @@ class WC_Gateway_Stripe_Bancontact extends WC_Stripe_Payment_Gateway {
183
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
184
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
185
 
186
- if ( $this->description ) {
187
- echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ), $this->id );
188
  }
189
 
190
  echo '</div>';
162
  * Payment form on checkout page
163
  */
164
  public function payment_fields() {
165
+ $user = wp_get_current_user();
166
+ $total = WC()->cart->total;
167
+ $description = $this->get_description();
168
 
169
  // If paying from order, we need to get total from order not cart.
170
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
184
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
185
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
186
 
187
+ if ( $description ) {
188
+ echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id );
189
  }
190
 
191
  echo '</div>';
includes/payment-methods/class-wc-gateway-stripe-bitcoin.php CHANGED
@@ -173,8 +173,9 @@ class WC_Gateway_Stripe_Bitcoin extends WC_Stripe_Payment_Gateway {
173
  * Payment form on checkout page
174
  */
175
  public function payment_fields() {
176
- $user = wp_get_current_user();
177
- $total = WC()->cart->total;
 
178
 
179
  // If paying from order, we need to get total from order not cart.
180
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
@@ -194,8 +195,8 @@ class WC_Gateway_Stripe_Bitcoin extends WC_Stripe_Payment_Gateway {
194
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
195
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
196
 
197
- if ( $this->description ) {
198
- echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ), $this->id );
199
  }
200
 
201
  echo '</div>';
173
  * Payment form on checkout page
174
  */
175
  public function payment_fields() {
176
+ $user = wp_get_current_user();
177
+ $total = WC()->cart->total;
178
+ $description = $this->get_description();
179
 
180
  // If paying from order, we need to get total from order not cart.
181
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
195
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
196
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
197
 
198
+ if ( $description ) {
199
+ echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id );
200
  }
201
 
202
  echo '</div>';
includes/payment-methods/class-wc-gateway-stripe-eps.php CHANGED
@@ -162,8 +162,9 @@ class WC_Gateway_Stripe_Eps extends WC_Stripe_Payment_Gateway {
162
  * Payment form on checkout page
163
  */
164
  public function payment_fields() {
165
- $user = wp_get_current_user();
166
- $total = WC()->cart->total;
 
167
 
168
  // If paying from order, we need to get total from order not cart.
169
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
@@ -183,8 +184,8 @@ class WC_Gateway_Stripe_Eps extends WC_Stripe_Payment_Gateway {
183
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
184
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
185
 
186
- if ( $this->description ) {
187
- echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ), $this->id );
188
  }
189
 
190
  echo '</div>';
162
  * Payment form on checkout page
163
  */
164
  public function payment_fields() {
165
+ $user = wp_get_current_user();
166
+ $total = WC()->cart->total;
167
+ $description = $this->get_description();
168
 
169
  // If paying from order, we need to get total from order not cart.
170
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
184
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
185
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
186
 
187
+ if ( $description ) {
188
+ echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id );
189
  }
190
 
191
  echo '</div>';
includes/payment-methods/class-wc-gateway-stripe-giropay.php CHANGED
@@ -162,8 +162,9 @@ class WC_Gateway_Stripe_Giropay extends WC_Stripe_Payment_Gateway {
162
  * Payment form on checkout page
163
  */
164
  public function payment_fields() {
165
- $user = wp_get_current_user();
166
- $total = WC()->cart->total;
 
167
 
168
  // If paying from order, we need to get total from order not cart.
169
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
@@ -183,8 +184,8 @@ class WC_Gateway_Stripe_Giropay extends WC_Stripe_Payment_Gateway {
183
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
184
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
185
 
186
- if ( $this->description ) {
187
- echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ), $this->id );
188
  }
189
 
190
  echo '</div>';
162
  * Payment form on checkout page
163
  */
164
  public function payment_fields() {
165
+ $user = wp_get_current_user();
166
+ $total = WC()->cart->total;
167
+ $description = $this->get_description();
168
 
169
  // If paying from order, we need to get total from order not cart.
170
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
184
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
185
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
186
 
187
+ if ( $description ) {
188
+ echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id );
189
  }
190
 
191
  echo '</div>';
includes/payment-methods/class-wc-gateway-stripe-ideal.php CHANGED
@@ -162,8 +162,9 @@ class WC_Gateway_Stripe_Ideal extends WC_Stripe_Payment_Gateway {
162
  * Payment form on checkout page
163
  */
164
  public function payment_fields() {
165
- $user = wp_get_current_user();
166
- $total = WC()->cart->total;
 
167
 
168
  // If paying from order, we need to get total from order not cart.
169
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
@@ -183,8 +184,8 @@ class WC_Gateway_Stripe_Ideal extends WC_Stripe_Payment_Gateway {
183
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
184
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
185
 
186
- if ( $this->description ) {
187
- echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ), $this->id );
188
  }
189
 
190
  echo '</div>';
162
  * Payment form on checkout page
163
  */
164
  public function payment_fields() {
165
+ $user = wp_get_current_user();
166
+ $total = WC()->cart->total;
167
+ $description = $this->get_description();
168
 
169
  // If paying from order, we need to get total from order not cart.
170
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
184
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
185
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
186
 
187
+ if ( $description ) {
188
+ echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id );
189
  }
190
 
191
  echo '</div>';
includes/payment-methods/class-wc-gateway-stripe-multibanco.php CHANGED
@@ -166,8 +166,9 @@ class WC_Gateway_Stripe_Multibanco extends WC_Stripe_Payment_Gateway {
166
  * Payment form on checkout page
167
  */
168
  public function payment_fields() {
169
- $user = wp_get_current_user();
170
- $total = WC()->cart->total;
 
171
 
172
  // If paying from order, we need to get total from order not cart.
173
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
@@ -187,8 +188,8 @@ class WC_Gateway_Stripe_Multibanco extends WC_Stripe_Payment_Gateway {
187
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
188
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
189
 
190
- if ( $this->description ) {
191
- echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ), $this->id );
192
  }
193
 
194
  echo '</div>';
166
  * Payment form on checkout page
167
  */
168
  public function payment_fields() {
169
+ $user = wp_get_current_user();
170
+ $total = WC()->cart->total;
171
+ $description = $this->get_description();
172
 
173
  // If paying from order, we need to get total from order not cart.
174
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
188
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
189
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
190
 
191
+ if ( $description ) {
192
+ echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id );
193
  }
194
 
195
  echo '</div>';
includes/payment-methods/class-wc-gateway-stripe-p24.php CHANGED
@@ -163,8 +163,9 @@ class WC_Gateway_Stripe_P24 extends WC_Stripe_Payment_Gateway {
163
  * Payment form on checkout page
164
  */
165
  public function payment_fields() {
166
- $user = wp_get_current_user();
167
- $total = WC()->cart->total;
 
168
 
169
  // If paying from order, we need to get total from order not cart.
170
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
@@ -184,8 +185,8 @@ class WC_Gateway_Stripe_P24 extends WC_Stripe_Payment_Gateway {
184
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
185
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
186
 
187
- if ( $this->description ) {
188
- echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ), $this->id );
189
  }
190
 
191
  echo '</div>';
163
  * Payment form on checkout page
164
  */
165
  public function payment_fields() {
166
+ $user = wp_get_current_user();
167
+ $total = WC()->cart->total;
168
+ $description = $this->get_description();
169
 
170
  // If paying from order, we need to get total from order not cart.
171
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
185
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
186
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
187
 
188
+ if ( $description ) {
189
+ echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id );
190
  }
191
 
192
  echo '</div>';
includes/payment-methods/class-wc-gateway-stripe-sepa.php CHANGED
@@ -243,9 +243,9 @@ class WC_Gateway_Stripe_Sepa extends WC_Stripe_Payment_Gateway {
243
  * Payment form on checkout page
244
  */
245
  public function payment_fields() {
246
- $user = wp_get_current_user();
247
  $total = WC()->cart->total;
248
  $display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards;
 
249
 
250
  // If paying from order, we need to get total from order not cart.
251
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
@@ -254,10 +254,7 @@ class WC_Gateway_Stripe_Sepa extends WC_Stripe_Payment_Gateway {
254
  }
255
 
256
  if ( is_add_payment_method_page() ) {
257
- $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' );
258
- $total = '';
259
- } else {
260
- $pay_button_text = '';
261
  }
262
 
263
  echo '<div
@@ -265,12 +262,12 @@ class WC_Gateway_Stripe_Sepa extends WC_Stripe_Payment_Gateway {
265
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
266
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
267
 
268
- if ( $this->description ) {
269
  if ( $this->testmode ) {
270
- $this->description .= ' ' . __( 'TEST MODE ENABLED. In test mode, you can use IBAN number DE89370400440532013000.', 'woocommerce-gateway-stripe' );
271
- $this->description = trim( $this->description );
272
  }
273
- echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ), $this->id );
274
  }
275
 
276
  if ( $display_tokenization ) {
243
  * Payment form on checkout page
244
  */
245
  public function payment_fields() {
 
246
  $total = WC()->cart->total;
247
  $display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards;
248
+ $description = $this->get_description() ? $this->get_description() : '';
249
 
250
  // If paying from order, we need to get total from order not cart.
251
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
254
  }
255
 
256
  if ( is_add_payment_method_page() ) {
257
+ $total = '';
 
 
 
258
  }
259
 
260
  echo '<div
262
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
263
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
264
 
265
+ if ( $description ) {
266
  if ( $this->testmode ) {
267
+ $description .= ' ' . __( 'TEST MODE ENABLED. In test mode, you can use IBAN number DE89370400440532013000.', 'woocommerce-gateway-stripe' );
268
+ $description = trim( $description );
269
  }
270
+ echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id );
271
  }
272
 
273
  if ( $display_tokenization ) {
includes/payment-methods/class-wc-gateway-stripe-sofort.php CHANGED
@@ -162,8 +162,9 @@ class WC_Gateway_Stripe_Sofort extends WC_Stripe_Payment_Gateway {
162
  * Payment form on checkout page
163
  */
164
  public function payment_fields() {
165
- $user = wp_get_current_user();
166
- $total = WC()->cart->total;
 
167
 
168
  // If paying from order, we need to get total from order not cart.
169
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
@@ -183,8 +184,8 @@ class WC_Gateway_Stripe_Sofort extends WC_Stripe_Payment_Gateway {
183
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
184
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
185
 
186
- if ( $this->description ) {
187
- echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ), $this->id );
188
  }
189
 
190
  echo '</div>';
162
  * Payment form on checkout page
163
  */
164
  public function payment_fields() {
165
+ $user = wp_get_current_user();
166
+ $total = WC()->cart->total;
167
+ $description = $this->get_description();
168
 
169
  // If paying from order, we need to get total from order not cart.
170
  if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
184
  data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
185
  data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
186
 
187
+ if ( $description ) {
188
+ echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id );
189
  }
190
 
191
  echo '</div>';
languages/woocommerce-gateway-stripe.pot CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the same license as the WooCommerce Stripe Gateway package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WooCommerce Stripe Gateway 4.1.0\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://github.com/woocommerce/woocommerce-gateway-stripe/issues\n"
8
- "POT-Creation-Date: 2018-04-11 14:14:04+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -29,7 +29,7 @@ msgid "Save payment information to my account for future purchases."
29
  msgstr ""
30
 
31
  #: includes/abstracts/abstract-wc-stripe-payment-gateway.php:253
32
- #: includes/compat/class-wc-stripe-sepa-subs-compat.php:147
33
  #: includes/compat/class-wc-stripe-subs-compat.php:190
34
  #. translators: 1) dollar amount
35
  #. translators: minimum amount
@@ -56,16 +56,17 @@ msgstr ""
56
 
57
  #: includes/abstracts/abstract-wc-stripe-payment-gateway.php:458
58
  #: includes/class-wc-stripe-order-handler.php:249
59
- #: includes/class-wc-stripe-webhook-handler.php:308
60
  #: includes/class-wc-stripe-webhook-handler.php:359
61
  #. translators: transaction id
62
  msgid "Stripe charge complete (Charge ID: %s)"
63
  msgstr ""
64
 
65
  #: includes/abstracts/abstract-wc-stripe-payment-gateway.php:463
66
- #: includes/class-wc-gateway-stripe.php:691
 
67
  #: includes/compat/class-wc-stripe-subs-compat.php:96
68
- #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:328
69
  msgid "Payment processing failed. Please retry."
70
  msgstr ""
71
 
@@ -93,14 +94,32 @@ msgstr ""
93
  msgid "There was a problem adding the card."
94
  msgstr ""
95
 
96
- #: includes/admin/class-wc-stripe-admin-notices.php:118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  #. translators: 1) link
98
  msgid ""
99
  "Stripe is almost ready. To get started, <a href=\"%s\">set your Stripe "
100
  "account keys</a>."
101
  msgstr ""
102
 
103
- #: includes/admin/class-wc-stripe-admin-notices.php:130
104
  #. translators: 1) link
105
  msgid ""
106
  "Stripe is in test mode however your test keys may not be valid. Test keys "
@@ -108,7 +127,7 @@ msgid ""
108
  "<a href=\"%s\">set your Stripe account keys</a>."
109
  msgstr ""
110
 
111
- #: includes/admin/class-wc-stripe-admin-notices.php:140
112
  #. translators: 1) link
113
  msgid ""
114
  "Stripe is in live mode however your test keys may not be valid. Live keys "
@@ -116,7 +135,7 @@ msgid ""
116
  "<a href=\"%s\">set your Stripe account keys</a>."
117
  msgstr ""
118
 
119
- #: includes/admin/class-wc-stripe-admin-notices.php:149
120
  #. translators: 1) link 2) link
121
  msgid ""
122
  "Stripe is enabled, but the <a href=\"%1$s\">force SSL option</a> is "
@@ -125,15 +144,15 @@ msgid ""
125
  "certificate</a> - Stripe will only work in test mode."
126
  msgstr ""
127
 
128
- #: includes/admin/class-wc-stripe-admin-notices.php:171
129
  msgid "%s is enabled - it requires store currency to be set to %s"
130
  msgstr ""
131
 
132
- #: includes/admin/class-wc-stripe-admin-notices.php:185
133
  msgid "Action failed. Please refresh the page and retry."
134
  msgstr ""
135
 
136
- #: includes/admin/class-wc-stripe-admin-notices.php:189
137
  msgid "Cheatin&#8217; huh?"
138
  msgstr ""
139
 
@@ -721,15 +740,15 @@ msgid ""
721
  "to remove any %1$ssaved payment methods%2$s on file and re-add them."
722
  msgstr ""
723
 
724
- #: includes/class-wc-gateway-stripe.php:293
725
  msgid "Add Card"
726
  msgstr ""
727
 
728
- #: includes/class-wc-gateway-stripe.php:296
729
  msgid "Change Payment Method"
730
  msgstr ""
731
 
732
- #: includes/class-wc-gateway-stripe.php:324
733
  #. translators: link to Stripe testing page
734
  msgid ""
735
  "TEST MODE ENABLED. In test mode, you can use the card number "
@@ -738,84 +757,84 @@ msgid ""
738
  "card numbers."
739
  msgstr ""
740
 
741
- #: includes/class-wc-gateway-stripe.php:367
742
  msgid "Credit or debit card"
743
  msgstr ""
744
 
745
- #: includes/class-wc-gateway-stripe.php:375
746
  msgid "Card Number"
747
  msgstr ""
748
 
749
- #: includes/class-wc-gateway-stripe.php:383
750
  msgid "Expiry Date"
751
  msgstr ""
752
 
753
- #: includes/class-wc-gateway-stripe.php:391
754
  msgid "Card Code (CVC)"
755
  msgstr ""
756
 
757
- #: includes/class-wc-gateway-stripe.php:462
758
  msgid "Please accept the terms and conditions first"
759
  msgstr ""
760
 
761
- #: includes/class-wc-gateway-stripe.php:463
762
  msgid "Please fill in required checkout fields first"
763
  msgstr ""
764
 
765
- #: includes/class-wc-gateway-stripe.php:481
766
- #: includes/class-wc-gateway-stripe.php:686
767
  #: includes/compat/class-wc-stripe-subs-compat.php:91
768
  msgid ""
769
  "Sorry, we're not accepting prepaid cards at this time. Your credit card has "
770
  "not been charge. Please try with alternative payment method."
771
  msgstr ""
772
 
773
- #: includes/class-wc-gateway-stripe.php:482
774
  msgid "Please enter your IBAN account name."
775
  msgstr ""
776
 
777
- #: includes/class-wc-gateway-stripe.php:483
778
  msgid "Please enter your IBAN account number."
779
  msgstr ""
780
 
781
- #: includes/class-wc-gateway-stripe.php:578
782
  msgid "Place Order"
783
  msgstr ""
784
 
785
- #: includes/class-wc-gateway-stripe.php:767
786
  #: includes/class-wc-stripe-order-handler.php:140
787
  #: includes/class-wc-stripe-webhook-handler.php:186
788
- #: includes/payment-methods/class-wc-gateway-stripe-sepa.php:351
789
  msgid "This card is no longer available and has been removed."
790
  msgstr ""
791
 
792
- #: includes/class-wc-gateway-stripe.php:786
793
  #: includes/class-wc-stripe-order-handler.php:158
794
  #: includes/class-wc-stripe-webhook-handler.php:205
795
- #: includes/compat/class-wc-stripe-sepa-subs-compat.php:194
796
  #: includes/compat/class-wc-stripe-subs-compat.php:237
797
- #: includes/payment-methods/class-wc-gateway-stripe-sepa.php:371
798
  msgid ""
799
  "Sorry, we are unable to process your payment at this time. Please retry "
800
  "later."
801
  msgstr ""
802
 
803
- #: includes/class-wc-gateway-stripe.php:867
804
  #. translators: error message
805
  msgid "This represents the fee Stripe collects for the transaction."
806
  msgstr ""
807
 
808
- #: includes/class-wc-gateway-stripe.php:868
809
  msgid "Stripe Fee:"
810
  msgstr ""
811
 
812
- #: includes/class-wc-gateway-stripe.php:904
813
  msgid ""
814
  "This represents the net total that will be credited to your Stripe bank "
815
  "account. This may be in the currency that is set in your Stripe account."
816
  msgstr ""
817
 
818
- #: includes/class-wc-gateway-stripe.php:905
819
  msgid "Stripe Payout:"
820
  msgstr ""
821
 
@@ -948,33 +967,33 @@ msgid ""
948
  "Dashboard</a> to review this dispute."
949
  msgstr ""
950
 
951
- #: includes/class-wc-stripe-webhook-handler.php:313
952
- msgid "This charge was partially captured via Stripe Dashboard"
953
  msgstr ""
954
 
955
- #: includes/class-wc-stripe-webhook-handler.php:384
956
  msgid "This payment failed to clear."
957
  msgstr ""
958
 
959
- #: includes/class-wc-stripe-webhook-handler.php:411
960
  msgid "This payment has cancelled."
961
  msgstr ""
962
 
963
- #: includes/class-wc-stripe-webhook-handler.php:445
964
  msgid "Refunded via Stripe Dashboard"
965
  msgstr ""
966
 
967
- #: includes/class-wc-stripe-webhook-handler.php:445
968
- #: includes/class-wc-stripe-webhook-handler.php:471
969
  msgid "Pre-Authorization Released via Stripe Dashboard"
970
  msgstr ""
971
 
972
- #: includes/class-wc-stripe-webhook-handler.php:471
973
  #. translators: 1) dollar amount 2) transaction id 3) refund message
974
  msgid "Refunded %1$s - Refund ID: %2$s - %3$s"
975
  msgstr ""
976
 
977
- #: includes/class-wc-stripe-webhook-handler.php:493
978
  #. translators: 1) The URL to the order. 2) The reason type.
979
  msgid ""
980
  "A review has been opened for this order. Action is needed. Please go to "
@@ -982,7 +1001,7 @@ msgid ""
982
  "Dashboard</a> to review the issue. Reason: (%2$s)"
983
  msgstr ""
984
 
985
- #: includes/class-wc-stripe-webhook-handler.php:517
986
  #. translators: 1) The reason type.
987
  msgid "The opened review for this order is now closed. Reason: (%s)"
988
  msgstr ""
@@ -996,37 +1015,37 @@ msgstr ""
996
  msgid "Stripe Transaction Failed (%s)"
997
  msgstr ""
998
 
999
- #: includes/compat/class-wc-stripe-sepa-subs-compat.php:157
1000
  #: includes/compat/class-wc-stripe-subs-compat.php:200
1001
  msgid "Customer not found"
1002
  msgstr ""
1003
 
1004
- #: includes/compat/class-wc-stripe-sepa-subs-compat.php:321
1005
  #: includes/compat/class-wc-stripe-subs-compat.php:393
1006
  #. translators: error message
1007
  msgid "A \"Stripe Customer ID\" value is required."
1008
  msgstr ""
1009
 
1010
- #: includes/compat/class-wc-stripe-sepa-subs-compat.php:323
1011
  #: includes/compat/class-wc-stripe-subs-compat.php:395
1012
  msgid ""
1013
  "Invalid customer ID. A valid \"Stripe Customer ID\" must begin with "
1014
  "\"cus_\"."
1015
  msgstr ""
1016
 
1017
- #: includes/compat/class-wc-stripe-sepa-subs-compat.php:332
1018
  #: includes/compat/class-wc-stripe-subs-compat.php:404
1019
  msgid ""
1020
  "Invalid source ID. A valid source \"Stripe Source ID\" must begin with "
1021
  "\"src_\" or \"card_\"."
1022
  msgstr ""
1023
 
1024
- #: includes/compat/class-wc-stripe-sepa-subs-compat.php:403
1025
  #. translators: 1) last 4 digits of SEPA Direct Debit
1026
  msgid "Via SEPA Direct Debit ending in %1$s"
1027
  msgstr ""
1028
 
1029
- #: includes/compat/class-wc-stripe-sepa-subs-compat.php:405
1030
  #: includes/compat/class-wc-stripe-subs-compat.php:485
1031
  #: includes/compat/class-wc-stripe-subs-compat.php:487
1032
  #: includes/compat/class-wc-stripe-subs-compat.php:500
@@ -1041,7 +1060,7 @@ msgid "Via %1$s card ending in %2$s"
1041
  msgstr ""
1042
 
1043
  #: includes/payment-methods/class-wc-gateway-stripe-alipay.php:60
1044
- #: woocommerce-gateway-stripe.php:268
1045
  msgid "Stripe Alipay"
1046
  msgstr ""
1047
 
@@ -1059,109 +1078,108 @@ msgstr ""
1059
  msgid "All other general Stripe settings can be adjusted <a href=\"%s\">here</a>."
1060
  msgstr ""
1061
 
1062
- #: includes/payment-methods/class-wc-gateway-stripe-alipay.php:182
1063
- #: includes/payment-methods/class-wc-gateway-stripe-bancontact.php:175
1064
- #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:186
1065
- #: includes/payment-methods/class-wc-gateway-stripe-eps.php:175
1066
- #: includes/payment-methods/class-wc-gateway-stripe-giropay.php:175
1067
- #: includes/payment-methods/class-wc-gateway-stripe-ideal.php:175
1068
- #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:179
1069
- #: includes/payment-methods/class-wc-gateway-stripe-p24.php:176
1070
- #: includes/payment-methods/class-wc-gateway-stripe-sepa.php:257
1071
- #: includes/payment-methods/class-wc-gateway-stripe-sofort.php:175
1072
  msgid "Add Payment"
1073
  msgstr ""
1074
 
1075
  #: includes/payment-methods/class-wc-gateway-stripe-bancontact.php:60
1076
- #: woocommerce-gateway-stripe.php:262
1077
  msgid "Stripe Bancontact"
1078
  msgstr ""
1079
 
1080
  #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:67
1081
- #: woocommerce-gateway-stripe.php:270
1082
  msgid "Stripe Bitcoin"
1083
  msgstr ""
1084
 
1085
- #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:245
1086
- #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:257
1087
  msgid "Please pay the following:"
1088
  msgstr ""
1089
 
1090
- #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:247
1091
- #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:260
1092
  msgid "Bitcoin Amount:"
1093
  msgstr ""
1094
 
1095
- #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:250
1096
- #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:264
1097
  msgid "Receiver:"
1098
  msgstr ""
1099
 
1100
- #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:253
1101
- #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:268
1102
  msgid "URI:"
1103
  msgstr ""
1104
 
1105
- #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:272
1106
  #. translators: link
1107
  msgid "<a href=\"%s\">Pay Bitcoin</a>"
1108
  msgstr ""
1109
 
1110
- #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:340
1111
  msgid "Awaiting Bitcoin payment"
1112
  msgstr ""
1113
 
1114
  #: includes/payment-methods/class-wc-gateway-stripe-eps.php:60
1115
- #: woocommerce-gateway-stripe.php:265
1116
  msgid "Stripe EPS"
1117
  msgstr ""
1118
 
1119
  #: includes/payment-methods/class-wc-gateway-stripe-giropay.php:60
1120
- #: woocommerce-gateway-stripe.php:264
1121
  msgid "Stripe Giropay"
1122
  msgstr ""
1123
 
1124
  #: includes/payment-methods/class-wc-gateway-stripe-ideal.php:60
1125
- #: woocommerce-gateway-stripe.php:266
1126
  msgid "Stripe iDeal"
1127
  msgstr ""
1128
 
1129
  #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:60
1130
- #: woocommerce-gateway-stripe.php:271
1131
  msgid "Stripe Multibanco"
1132
  msgstr ""
1133
 
1134
- #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:238
1135
- #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:250
1136
  msgid "MULTIBANCO INFORMAÇÕES DE ENCOMENDA:"
1137
  msgstr ""
1138
 
1139
- #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:240
1140
- #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:253
1141
  msgid "Montante:"
1142
  msgstr ""
1143
 
1144
- #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:243
1145
- #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:257
1146
  msgid "Entidade:"
1147
  msgstr ""
1148
 
1149
- #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:246
1150
- #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:261
1151
  msgid "Referencia:"
1152
  msgstr ""
1153
 
1154
- #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:362
1155
  msgid "Awaiting Multibanco payment"
1156
  msgstr ""
1157
 
1158
  #: includes/payment-methods/class-wc-gateway-stripe-p24.php:60
1159
- #: woocommerce-gateway-stripe.php:267
1160
  msgid "Stripe P24"
1161
  msgstr ""
1162
 
1163
  #: includes/payment-methods/class-wc-gateway-stripe-sepa.php:75
1164
- #: woocommerce-gateway-stripe.php:269
1165
  msgid "Stripe SEPA Direct Debit"
1166
  msgstr ""
1167
 
@@ -1185,14 +1203,14 @@ msgstr ""
1185
  msgid "IBAN Account Number."
1186
  msgstr ""
1187
 
1188
- #: includes/payment-methods/class-wc-gateway-stripe-sepa.php:270
1189
  msgid ""
1190
  "TEST MODE ENABLED. In test mode, you can use IBAN number "
1191
  "DE89370400440532013000."
1192
  msgstr ""
1193
 
1194
  #: includes/payment-methods/class-wc-gateway-stripe-sofort.php:60
1195
- #: woocommerce-gateway-stripe.php:263
1196
  msgid "Stripe SOFORT"
1197
  msgstr ""
1198
 
@@ -1239,37 +1257,21 @@ msgstr ""
1239
  msgid "Discount"
1240
  msgstr ""
1241
 
1242
- #: woocommerce-gateway-stripe.php:147
1243
- #. translators: 1) int version 2) int version
1244
- msgid ""
1245
- "WooCommerce Stripe - The minimum PHP version required for this plugin is "
1246
- "%1$s. You are running %2$s."
1247
- msgstr ""
1248
-
1249
- #: woocommerce-gateway-stripe.php:153
1250
- msgid "WooCommerce Stripe requires WooCommerce to be activated to work."
1251
- msgstr ""
1252
-
1253
- #: woocommerce-gateway-stripe.php:158
1254
- #. translators: 1) int version 2) int version
1255
  msgid ""
1256
- "WooCommerce Stripe - The minimum WooCommerce version required for this "
1257
- "plugin is %1$s. You are running %2$s."
1258
- msgstr ""
1259
-
1260
- #: woocommerce-gateway-stripe.php:164
1261
- msgid "WooCommerce Stripe - cURL is not installed."
1262
  msgstr ""
1263
 
1264
- #: woocommerce-gateway-stripe.php:207
1265
  msgid "Settings"
1266
  msgstr ""
1267
 
1268
- #: woocommerce-gateway-stripe.php:208
1269
  msgid "Docs"
1270
  msgstr ""
1271
 
1272
- #: woocommerce-gateway-stripe.php:209
1273
  msgid "Support"
1274
  msgstr ""
1275
 
2
  # This file is distributed under the same license as the WooCommerce Stripe Gateway package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce Stripe Gateway 4.1.1\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://github.com/woocommerce/woocommerce-gateway-stripe/issues\n"
8
+ "POT-Creation-Date: 2018-04-18 00:00:54+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
29
  msgstr ""
30
 
31
  #: includes/abstracts/abstract-wc-stripe-payment-gateway.php:253
32
+ #: includes/compat/class-wc-stripe-sepa-subs-compat.php:175
33
  #: includes/compat/class-wc-stripe-subs-compat.php:190
34
  #. translators: 1) dollar amount
35
  #. translators: minimum amount
56
 
57
  #: includes/abstracts/abstract-wc-stripe-payment-gateway.php:458
58
  #: includes/class-wc-stripe-order-handler.php:249
59
+ #: includes/class-wc-stripe-webhook-handler.php:312
60
  #: includes/class-wc-stripe-webhook-handler.php:359
61
  #. translators: transaction id
62
  msgid "Stripe charge complete (Charge ID: %s)"
63
  msgstr ""
64
 
65
  #: includes/abstracts/abstract-wc-stripe-payment-gateway.php:463
66
+ #: includes/class-wc-gateway-stripe.php:695
67
+ #: includes/compat/class-wc-stripe-sepa-subs-compat.php:134
68
  #: includes/compat/class-wc-stripe-subs-compat.php:96
69
+ #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:329
70
  msgid "Payment processing failed. Please retry."
71
  msgstr ""
72
 
94
  msgid "There was a problem adding the card."
95
  msgstr ""
96
 
97
+ #: includes/admin/class-wc-stripe-admin-notices.php:119
98
+ #. translators: 1) int version 2) int version
99
+ msgid ""
100
+ "WooCommerce Stripe - The minimum PHP version required for this plugin is "
101
+ "%1$s. You are running %2$s."
102
+ msgstr ""
103
+
104
+ #: includes/admin/class-wc-stripe-admin-notices.php:130
105
+ #. translators: 1) int version 2) int version
106
+ msgid ""
107
+ "WooCommerce Stripe - The minimum WooCommerce version required for this "
108
+ "plugin is %1$s. You are running %2$s."
109
+ msgstr ""
110
+
111
+ #: includes/admin/class-wc-stripe-admin-notices.php:140
112
+ msgid "WooCommerce Stripe - cURL is not installed."
113
+ msgstr ""
114
+
115
+ #: includes/admin/class-wc-stripe-admin-notices.php:150
116
  #. translators: 1) link
117
  msgid ""
118
  "Stripe is almost ready. To get started, <a href=\"%s\">set your Stripe "
119
  "account keys</a>."
120
  msgstr ""
121
 
122
+ #: includes/admin/class-wc-stripe-admin-notices.php:162
123
  #. translators: 1) link
124
  msgid ""
125
  "Stripe is in test mode however your test keys may not be valid. Test keys "
127
  "<a href=\"%s\">set your Stripe account keys</a>."
128
  msgstr ""
129
 
130
+ #: includes/admin/class-wc-stripe-admin-notices.php:172
131
  #. translators: 1) link
132
  msgid ""
133
  "Stripe is in live mode however your test keys may not be valid. Live keys "
135
  "<a href=\"%s\">set your Stripe account keys</a>."
136
  msgstr ""
137
 
138
+ #: includes/admin/class-wc-stripe-admin-notices.php:181
139
  #. translators: 1) link 2) link
140
  msgid ""
141
  "Stripe is enabled, but the <a href=\"%1$s\">force SSL option</a> is "
144
  "certificate</a> - Stripe will only work in test mode."
145
  msgstr ""
146
 
147
+ #: includes/admin/class-wc-stripe-admin-notices.php:204
148
  msgid "%s is enabled - it requires store currency to be set to %s"
149
  msgstr ""
150
 
151
+ #: includes/admin/class-wc-stripe-admin-notices.php:218
152
  msgid "Action failed. Please refresh the page and retry."
153
  msgstr ""
154
 
155
+ #: includes/admin/class-wc-stripe-admin-notices.php:222
156
  msgid "Cheatin&#8217; huh?"
157
  msgstr ""
158
 
740
  "to remove any %1$ssaved payment methods%2$s on file and re-add them."
741
  msgstr ""
742
 
743
+ #: includes/class-wc-gateway-stripe.php:294
744
  msgid "Add Card"
745
  msgstr ""
746
 
747
+ #: includes/class-wc-gateway-stripe.php:297
748
  msgid "Change Payment Method"
749
  msgstr ""
750
 
751
+ #: includes/class-wc-gateway-stripe.php:325
752
  #. translators: link to Stripe testing page
753
  msgid ""
754
  "TEST MODE ENABLED. In test mode, you can use the card number "
757
  "card numbers."
758
  msgstr ""
759
 
760
+ #: includes/class-wc-gateway-stripe.php:368
761
  msgid "Credit or debit card"
762
  msgstr ""
763
 
764
+ #: includes/class-wc-gateway-stripe.php:376
765
  msgid "Card Number"
766
  msgstr ""
767
 
768
+ #: includes/class-wc-gateway-stripe.php:387
769
  msgid "Expiry Date"
770
  msgstr ""
771
 
772
+ #: includes/class-wc-gateway-stripe.php:395
773
  msgid "Card Code (CVC)"
774
  msgstr ""
775
 
776
+ #: includes/class-wc-gateway-stripe.php:466
777
  msgid "Please accept the terms and conditions first"
778
  msgstr ""
779
 
780
+ #: includes/class-wc-gateway-stripe.php:467
781
  msgid "Please fill in required checkout fields first"
782
  msgstr ""
783
 
784
+ #: includes/class-wc-gateway-stripe.php:485
785
+ #: includes/class-wc-gateway-stripe.php:690
786
  #: includes/compat/class-wc-stripe-subs-compat.php:91
787
  msgid ""
788
  "Sorry, we're not accepting prepaid cards at this time. Your credit card has "
789
  "not been charge. Please try with alternative payment method."
790
  msgstr ""
791
 
792
+ #: includes/class-wc-gateway-stripe.php:486
793
  msgid "Please enter your IBAN account name."
794
  msgstr ""
795
 
796
+ #: includes/class-wc-gateway-stripe.php:487
797
  msgid "Please enter your IBAN account number."
798
  msgstr ""
799
 
800
+ #: includes/class-wc-gateway-stripe.php:582
801
  msgid "Place Order"
802
  msgstr ""
803
 
804
+ #: includes/class-wc-gateway-stripe.php:771
805
  #: includes/class-wc-stripe-order-handler.php:140
806
  #: includes/class-wc-stripe-webhook-handler.php:186
807
+ #: includes/payment-methods/class-wc-gateway-stripe-sepa.php:348
808
  msgid "This card is no longer available and has been removed."
809
  msgstr ""
810
 
811
+ #: includes/class-wc-gateway-stripe.php:790
812
  #: includes/class-wc-stripe-order-handler.php:158
813
  #: includes/class-wc-stripe-webhook-handler.php:205
814
+ #: includes/compat/class-wc-stripe-sepa-subs-compat.php:222
815
  #: includes/compat/class-wc-stripe-subs-compat.php:237
816
+ #: includes/payment-methods/class-wc-gateway-stripe-sepa.php:368
817
  msgid ""
818
  "Sorry, we are unable to process your payment at this time. Please retry "
819
  "later."
820
  msgstr ""
821
 
822
+ #: includes/class-wc-gateway-stripe.php:871
823
  #. translators: error message
824
  msgid "This represents the fee Stripe collects for the transaction."
825
  msgstr ""
826
 
827
+ #: includes/class-wc-gateway-stripe.php:872
828
  msgid "Stripe Fee:"
829
  msgstr ""
830
 
831
+ #: includes/class-wc-gateway-stripe.php:908
832
  msgid ""
833
  "This represents the net total that will be credited to your Stripe bank "
834
  "account. This may be in the currency that is set in your Stripe account."
835
  msgstr ""
836
 
837
+ #: includes/class-wc-gateway-stripe.php:909
838
  msgid "Stripe Payout:"
839
  msgstr ""
840
 
967
  "Dashboard</a> to review this dispute."
968
  msgstr ""
969
 
970
+ #: includes/class-wc-stripe-webhook-handler.php:307
971
+ msgid "This charge was partially captured via Stripe Dashboard in the amount of: %s"
972
  msgstr ""
973
 
974
+ #: includes/class-wc-stripe-webhook-handler.php:388
975
  msgid "This payment failed to clear."
976
  msgstr ""
977
 
978
+ #: includes/class-wc-stripe-webhook-handler.php:415
979
  msgid "This payment has cancelled."
980
  msgstr ""
981
 
982
+ #: includes/class-wc-stripe-webhook-handler.php:449
983
  msgid "Refunded via Stripe Dashboard"
984
  msgstr ""
985
 
986
+ #: includes/class-wc-stripe-webhook-handler.php:449
987
+ #: includes/class-wc-stripe-webhook-handler.php:475
988
  msgid "Pre-Authorization Released via Stripe Dashboard"
989
  msgstr ""
990
 
991
+ #: includes/class-wc-stripe-webhook-handler.php:475
992
  #. translators: 1) dollar amount 2) transaction id 3) refund message
993
  msgid "Refunded %1$s - Refund ID: %2$s - %3$s"
994
  msgstr ""
995
 
996
+ #: includes/class-wc-stripe-webhook-handler.php:497
997
  #. translators: 1) The URL to the order. 2) The reason type.
998
  msgid ""
999
  "A review has been opened for this order. Action is needed. Please go to "
1001
  "Dashboard</a> to review the issue. Reason: (%2$s)"
1002
  msgstr ""
1003
 
1004
+ #: includes/class-wc-stripe-webhook-handler.php:521
1005
  #. translators: 1) The reason type.
1006
  msgid "The opened review for this order is now closed. Reason: (%s)"
1007
  msgstr ""
1015
  msgid "Stripe Transaction Failed (%s)"
1016
  msgstr ""
1017
 
1018
+ #: includes/compat/class-wc-stripe-sepa-subs-compat.php:185
1019
  #: includes/compat/class-wc-stripe-subs-compat.php:200
1020
  msgid "Customer not found"
1021
  msgstr ""
1022
 
1023
+ #: includes/compat/class-wc-stripe-sepa-subs-compat.php:349
1024
  #: includes/compat/class-wc-stripe-subs-compat.php:393
1025
  #. translators: error message
1026
  msgid "A \"Stripe Customer ID\" value is required."
1027
  msgstr ""
1028
 
1029
+ #: includes/compat/class-wc-stripe-sepa-subs-compat.php:351
1030
  #: includes/compat/class-wc-stripe-subs-compat.php:395
1031
  msgid ""
1032
  "Invalid customer ID. A valid \"Stripe Customer ID\" must begin with "
1033
  "\"cus_\"."
1034
  msgstr ""
1035
 
1036
+ #: includes/compat/class-wc-stripe-sepa-subs-compat.php:360
1037
  #: includes/compat/class-wc-stripe-subs-compat.php:404
1038
  msgid ""
1039
  "Invalid source ID. A valid source \"Stripe Source ID\" must begin with "
1040
  "\"src_\" or \"card_\"."
1041
  msgstr ""
1042
 
1043
+ #: includes/compat/class-wc-stripe-sepa-subs-compat.php:431
1044
  #. translators: 1) last 4 digits of SEPA Direct Debit
1045
  msgid "Via SEPA Direct Debit ending in %1$s"
1046
  msgstr ""
1047
 
1048
+ #: includes/compat/class-wc-stripe-sepa-subs-compat.php:433
1049
  #: includes/compat/class-wc-stripe-subs-compat.php:485
1050
  #: includes/compat/class-wc-stripe-subs-compat.php:487
1051
  #: includes/compat/class-wc-stripe-subs-compat.php:500
1060
  msgstr ""
1061
 
1062
  #: includes/payment-methods/class-wc-gateway-stripe-alipay.php:60
1063
+ #: woocommerce-gateway-stripe.php:248
1064
  msgid "Stripe Alipay"
1065
  msgstr ""
1066
 
1078
  msgid "All other general Stripe settings can be adjusted <a href=\"%s\">here</a>."
1079
  msgstr ""
1080
 
1081
+ #: includes/payment-methods/class-wc-gateway-stripe-alipay.php:183
1082
+ #: includes/payment-methods/class-wc-gateway-stripe-bancontact.php:176
1083
+ #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:187
1084
+ #: includes/payment-methods/class-wc-gateway-stripe-eps.php:176
1085
+ #: includes/payment-methods/class-wc-gateway-stripe-giropay.php:176
1086
+ #: includes/payment-methods/class-wc-gateway-stripe-ideal.php:176
1087
+ #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:180
1088
+ #: includes/payment-methods/class-wc-gateway-stripe-p24.php:177
1089
+ #: includes/payment-methods/class-wc-gateway-stripe-sofort.php:176
 
1090
  msgid "Add Payment"
1091
  msgstr ""
1092
 
1093
  #: includes/payment-methods/class-wc-gateway-stripe-bancontact.php:60
1094
+ #: woocommerce-gateway-stripe.php:242
1095
  msgid "Stripe Bancontact"
1096
  msgstr ""
1097
 
1098
  #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:67
1099
+ #: woocommerce-gateway-stripe.php:250
1100
  msgid "Stripe Bitcoin"
1101
  msgstr ""
1102
 
1103
+ #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:246
1104
+ #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:258
1105
  msgid "Please pay the following:"
1106
  msgstr ""
1107
 
1108
+ #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:248
1109
+ #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:261
1110
  msgid "Bitcoin Amount:"
1111
  msgstr ""
1112
 
1113
+ #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:251
1114
+ #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:265
1115
  msgid "Receiver:"
1116
  msgstr ""
1117
 
1118
+ #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:254
1119
+ #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:269
1120
  msgid "URI:"
1121
  msgstr ""
1122
 
1123
+ #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:273
1124
  #. translators: link
1125
  msgid "<a href=\"%s\">Pay Bitcoin</a>"
1126
  msgstr ""
1127
 
1128
+ #: includes/payment-methods/class-wc-gateway-stripe-bitcoin.php:341
1129
  msgid "Awaiting Bitcoin payment"
1130
  msgstr ""
1131
 
1132
  #: includes/payment-methods/class-wc-gateway-stripe-eps.php:60
1133
+ #: woocommerce-gateway-stripe.php:245
1134
  msgid "Stripe EPS"
1135
  msgstr ""
1136
 
1137
  #: includes/payment-methods/class-wc-gateway-stripe-giropay.php:60
1138
+ #: woocommerce-gateway-stripe.php:244
1139
  msgid "Stripe Giropay"
1140
  msgstr ""
1141
 
1142
  #: includes/payment-methods/class-wc-gateway-stripe-ideal.php:60
1143
+ #: woocommerce-gateway-stripe.php:246
1144
  msgid "Stripe iDeal"
1145
  msgstr ""
1146
 
1147
  #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:60
1148
+ #: woocommerce-gateway-stripe.php:251
1149
  msgid "Stripe Multibanco"
1150
  msgstr ""
1151
 
1152
+ #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:239
1153
+ #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:251
1154
  msgid "MULTIBANCO INFORMAÇÕES DE ENCOMENDA:"
1155
  msgstr ""
1156
 
1157
+ #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:241
1158
+ #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:254
1159
  msgid "Montante:"
1160
  msgstr ""
1161
 
1162
+ #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:244
1163
+ #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:258
1164
  msgid "Entidade:"
1165
  msgstr ""
1166
 
1167
+ #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:247
1168
+ #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:262
1169
  msgid "Referencia:"
1170
  msgstr ""
1171
 
1172
+ #: includes/payment-methods/class-wc-gateway-stripe-multibanco.php:363
1173
  msgid "Awaiting Multibanco payment"
1174
  msgstr ""
1175
 
1176
  #: includes/payment-methods/class-wc-gateway-stripe-p24.php:60
1177
+ #: woocommerce-gateway-stripe.php:247
1178
  msgid "Stripe P24"
1179
  msgstr ""
1180
 
1181
  #: includes/payment-methods/class-wc-gateway-stripe-sepa.php:75
1182
+ #: woocommerce-gateway-stripe.php:249
1183
  msgid "Stripe SEPA Direct Debit"
1184
  msgstr ""
1185
 
1203
  msgid "IBAN Account Number."
1204
  msgstr ""
1205
 
1206
+ #: includes/payment-methods/class-wc-gateway-stripe-sepa.php:267
1207
  msgid ""
1208
  "TEST MODE ENABLED. In test mode, you can use IBAN number "
1209
  "DE89370400440532013000."
1210
  msgstr ""
1211
 
1212
  #: includes/payment-methods/class-wc-gateway-stripe-sofort.php:60
1213
+ #: woocommerce-gateway-stripe.php:243
1214
  msgid "Stripe SOFORT"
1215
  msgstr ""
1216
 
1257
  msgid "Discount"
1258
  msgstr ""
1259
 
1260
+ #: woocommerce-gateway-stripe.php:143
 
 
 
 
 
 
 
 
 
 
 
 
1261
  msgid ""
1262
+ "Stripe requires WooCommerce to be installed and active. You can download %s "
1263
+ "here."
 
 
 
 
1264
  msgstr ""
1265
 
1266
+ #: woocommerce-gateway-stripe.php:187
1267
  msgid "Settings"
1268
  msgstr ""
1269
 
1270
+ #: woocommerce-gateway-stripe.php:188
1271
  msgid "Docs"
1272
  msgstr ""
1273
 
1274
+ #: woocommerce-gateway-stripe.php:189
1275
  msgid "Support"
1276
  msgstr ""
1277
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: credit card, stripe, apple pay, payment request, google pay, sepa, sofort,
4
  Requires at least: 4.4
5
  Tested up to: 4.9
6
  Requires PHP: 5.6
7
- Stable tag: 4.1.0
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
  Attributions: thorsten-stripe
@@ -91,10 +91,6 @@ For help setting up and configuring, please refer to our [user guide](https://do
91
 
92
  If you get stuck, you can ask for help in the Plugin Forum.
93
 
94
- = When will the older credit card form ( pre version 4.0.0 ) be deprecated? =
95
-
96
- We will completely remove the older form by version 5.0.
97
-
98
  == Screenshots ==
99
 
100
  1. The settings panel used to configure the gateway.
@@ -105,47 +101,13 @@ We will completely remove the older form by version 5.0.
105
 
106
  == Changelog ==
107
 
108
- = 4.1.0 - 2018-04-11 =
109
- * Tweak - Create user session only on product detail page.
110
- * Tweak - Payment Request session handling to bail if session already exists.
111
- * Tweak - 3DS recommended is now required and 3DS optional is now not required.
112
- * Tweak - Admin notices for currency check are now all dismissible.
113
- * Tweak - Added all color payment logos in svg.
114
- * Tweak - Update Stripe Fee and Stripe Net meta names.
115
- * Tweak - Stripe Checkout Popup Modal will validate checkout before proceeding to payment step.
116
- * Tweak - Verbiage for saving payment information to account.
117
- * Fix - When SEPA was used in subscription payment, it does not show SEPA in payment method table.
118
- * Fix - Refund via Stripe dashboard not reflecting amount in order notes.
119
- * Fix - Potential idempotency issues with subs recurring payment processing.
120
- * Fix - Issue with very old customer id stored pre 3.0 version not able to checkout.
121
- * Add - Multibanco payment method.
122
- * Add - EPS payment method.
123
- * Add - Notice for customer to change saved cards when billing address has been updated.
124
- * Add - Stripe fee and net payout to order line item total section.
125
- * Add - Hook to separately control Stripe Checkout Modal's allow remember me option. `wc_stripe_allow_remember_me` (bool).
126
- * Add - Hook to filter 3DS requirements `wc_stripe_require_3ds`.
127
- * Add - Hook to verify zipcode in Stripe Checkout Modal. `wc_stripe_checkout_verify_zip`. Only works when require address is true.
128
- * Add - Hook to require shipping address on Stripe Checkout Modal. `wc_stripe_checkout_require_shipping_address` (bool).
129
- * Add - Hook to hide Stripe net payout on order line item `wc_stripe_hide_display_order_payout` (bool).
130
- * Add - Hook to hide Stripe fee on order line item `wc_stripe_hide_display_order_fee` (bool).
131
- * Add - Hook to filter out logging messages `wc_stripe_logging` (bool).
132
- * Add - Hook to add content to the Stripe Checkout Receipt Page `wc_stripe_checkout_receipt_page_before_form`.
133
- * Add - Hook to add content to the Stripe Checkout Receipt Page `wc_stripe_checkout_receipt_page_after_form`.
134
- * Add - Hook to add content to the Stripe Checkout Receipt Page `wc_stripe_checkout_receipt_page_before_form_submit`.
135
- * Add - Hook to add content to the Stripe Checkout Receipt Page `wc_stripe_checkout_receipt_page_after_form_submit`.
136
- * Add - Hook to add handling to the Stripe Checkout return handler `wc_stripe_checkout_return_handler`.
137
- * Add - Hook to change save to account checkbox text `wc_stripe_save_to_account_text`.
138
- * Add - Compatibility with Payment Request/Apple Pay and different coupon types such as gift/store credit by Smart Coupons (requires WC 3.2+).
139
- * Add - Compatibility with Payment Request/Apple Pay and Subscription product in cart page.
140
- * Add - Compatibility with Payment Request/Apple Pay and Bookings product in cart page.
141
- * Add - Compatibility with Payment Request/Apple Pay and Composite products in cart page.
142
- * Add - Compatibility with Payment Request/Apple Pay and Product Bundles in cart page.
143
- * Add - Compatibility with Payment Request/Apple Pay and Account Funds in cart page.
144
- * Add - Compatibility with Payment Request/Apple Pay and Mix and Match products in cart page.
145
- * Add - Compatibility with Payment Request/Apple Pay and Product Addons in cart page.
146
- * Add - $post object on hook `wc_stripe_hide_payment_request_on_product_page`.
147
- * Update - Stripe API version to 2018-02-28.
148
- * Remove - Hard deprecated Stripe JS v2 credit card form process.
149
 
150
  [See changelog for all versions](https://raw.githubusercontent.com/woothemes/woocommerce-gateway-stripe/master/changelog.txt).
151
 
4
  Requires at least: 4.4
5
  Tested up to: 4.9
6
  Requires PHP: 5.6
7
+ Stable tag: 4.1.1
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
  Attributions: thorsten-stripe
91
 
92
  If you get stuck, you can ask for help in the Plugin Forum.
93
 
 
 
 
 
94
  == Screenshots ==
95
 
96
  1. The settings panel used to configure the gateway.
101
 
102
  == Changelog ==
103
 
104
+ = 4.1.1 - 2018-04-17 =
105
+ * Tweak - Use payment_complete method when charge is succeeded or captured so other WC related tasks gets triggered.
106
+ * Tweak - Styling for the credit card logos.
107
+ * Add - Subscription change payment method support for SEPA.
108
+ * Add - Credit card branding detection on credit card field.
109
+ * Fix - When checkout form fields fails second time, page refreshes instead of using AJAX.
110
+ * Fix - Potential issue when WC is not activated.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
 
112
  [See changelog for all versions](https://raw.githubusercontent.com/woothemes/woocommerce-gateway-stripe/master/changelog.txt).
113
 
woocommerce-gateway-stripe.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Take credit card payments on your store using Stripe.
6
  * Author: WooCommerce
7
  * Author URI: https://woocommerce.com/
8
- * Version: 4.1.0
9
  * Requires at least: 4.4
10
  * Tested up to: 4.9
11
  * WC requires at least: 2.6
@@ -23,7 +23,7 @@ if ( ! class_exists( 'WC_Stripe' ) ) :
23
  /**
24
  * Required minimums and constants
25
  */
26
- define( 'WC_STRIPE_VERSION', '4.1.0' );
27
  define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' );
28
  define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' );
29
  define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
@@ -86,16 +86,16 @@ if ( ! class_exists( 'WC_Stripe' ) ) :
86
  * @version 4.0.0
87
  */
88
  public function init() {
 
 
 
 
 
89
  require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php' );
90
  require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php' );
91
  require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php' );
92
  include_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php' );
93
 
94
- // Don't hook anything else in the plugin if we're in an incompatible environment.
95
- if ( $this->get_environment_warning() ) {
96
- return;
97
- }
98
-
99
  load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
100
 
101
  require_once( dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php' );
@@ -134,37 +134,13 @@ if ( ! class_exists( 'WC_Stripe' ) ) :
134
  }
135
 
136
  /**
137
- * Checks the environment for compatibility problems.
138
- * Returns a string with the first incompatibility
139
- * found or false if the environment has no problems.
140
  *
141
- * @since 1.0.0
142
- * @version 4.0.0
143
  */
144
- public function get_environment_warning() {
145
- if ( version_compare( phpversion(), WC_STRIPE_MIN_PHP_VER, '<' ) ) {
146
- /* translators: 1) int version 2) int version */
147
- $message = __( 'WooCommerce Stripe - The minimum PHP version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' );
148
-
149
- return sprintf( $message, WC_STRIPE_MIN_PHP_VER, phpversion() );
150
- }
151
-
152
- if ( ! defined( 'WC_VERSION' ) ) {
153
- return __( 'WooCommerce Stripe requires WooCommerce to be activated to work.', 'woocommerce-gateway-stripe' );
154
- }
155
-
156
- if ( version_compare( WC_VERSION, WC_STRIPE_MIN_WC_VER, '<' ) ) {
157
- /* translators: 1) int version 2) int version */
158
- $message = __( 'WooCommerce Stripe - The minimum WooCommerce version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' );
159
-
160
- return sprintf( $message, WC_STRIPE_MIN_WC_VER, WC_VERSION );
161
- }
162
-
163
- if ( ! function_exists( 'curl_init' ) ) {
164
- return __( 'WooCommerce Stripe - cURL is not installed.', 'woocommerce-gateway-stripe' );
165
- }
166
-
167
- return false;
168
  }
169
 
170
  /**
5
  * Description: Take credit card payments on your store using Stripe.
6
  * Author: WooCommerce
7
  * Author URI: https://woocommerce.com/
8
+ * Version: 4.1.1
9
  * Requires at least: 4.4
10
  * Tested up to: 4.9
11
  * WC requires at least: 2.6
23
  /**
24
  * Required minimums and constants
25
  */
26
+ define( 'WC_STRIPE_VERSION', '4.1.1' );
27
  define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' );
28
  define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' );
29
  define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
86
  * @version 4.0.0
87
  */
88
  public function init() {
89
+ if ( function_exists( 'is_woocommerce_active' ) && ! is_woocommerce_active() ) {
90
+ add_action( 'admin_notices', array( $this, 'woocommerce_missing_notice' ) );
91
+ return;
92
+ }
93
+
94
  require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php' );
95
  require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php' );
96
  require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php' );
97
  include_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php' );
98
 
 
 
 
 
 
99
  load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
100
 
101
  require_once( dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php' );
134
  }
135
 
136
  /**
137
+ * WooCommerce fallback notice.
 
 
138
  *
139
+ * @since 4.1.1
140
+ * @return string
141
  */
142
+ public function woocommerce_missing_notice() {
143
+ echo '<div class="error"><p><strong>' . sprintf( esc_html__( 'Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe' ), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>' ) . '</strong></p></div>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  }
145
 
146
  /**