Mollie Payments for WooCommerce - Version 6.0

Version Description

  • 16-12-2020 =

  • Feature - New setting to display payment methods based on country

  • Feature - Notice customers that support for WooCommerce under v3 is dropped

  • Feature - Create mandate for recurring subscriptions

  • Feature - New settings UI

  • Fix - Guzzle library conflicts with other plugins

  • Fix - API keys error with Mollie Components

  • Fix - Voucher works with variation products

  • Fix - Notice on missing voucher option (by @Timollie)

  • Fix - Performance issues related to icons

Download this release

Release Info

Developer carmen222
Plugin Icon wp plugin Mollie Payments for WooCommerce
Version 6.0
Comparing to
See all releases

Code changes from version 5.11.0 to 6.0

Files changed (170) hide show
  1. inc/settings/mollie_advanced_settings.php +78 -0
  2. inc/settings/mollie_apple_pay_button_enabler.php +20 -3
  3. inc/settings/mollie_applepay_settings.php +106 -0
  4. inc/utils.php +11 -8
  5. inc/woocommerce.php +12 -2
  6. mollie-payments-for-woocommerce.php +38 -9
  7. node_modules/.package-lock.json +7 -0
  8. public/css/entrypoints.json +19 -0
  9. public/css/manifest.json +5 -0
  10. public/js/entrypoints.json +34 -0
  11. public/js/manifest.json +8 -0
  12. public/js/mealvoucher.min.js +137 -1
  13. readme.txt +14 -2
  14. src/Mollie/WC/ApplePayButton/AjaxRequests.php +12 -4
  15. src/Mollie/WC/Gateway/Abstract.php +135 -58
  16. src/Mollie/WC/Gateway/AbstractSepaRecurring.php +4 -4
  17. src/Mollie/WC/Gateway/AbstractSubscription.php +18 -18
  18. src/Mollie/WC/Helper/Api.php +9 -8
  19. src/Mollie/WC/Helper/Data.php +14 -14
  20. src/Mollie/WC/Helper/MaybeDisableGateway.php +34 -11
  21. src/Mollie/WC/Helper/OrderLines.php +17 -7
  22. src/Mollie/WC/Helper/PaymentMethodsIconUrl.php +2 -48
  23. src/Mollie/WC/Helper/Settings.php +54 -198
  24. src/Mollie/WC/Payment/Object.php +15 -15
  25. src/Mollie/WC/Payment/Order.php +26 -18
  26. src/Mollie/WC/Payment/Payment.php +8 -8
  27. src/Mollie/WC/Plugin.php +80 -46
  28. src/Mollie/WC/Settings/Page/Mollie.php +171 -0
  29. src/subscriptions_status_check_functions.php +1 -1
  30. vendor/autoload.php +1 -1
  31. vendor/composer/LICENSE +0 -21
  32. vendor/composer/autoload_classmap.php +29 -0
  33. vendor/composer/autoload_files.php +6 -1
  34. vendor/composer/autoload_psr4.php +4 -0
  35. vendor/composer/autoload_real.php +7 -7
  36. vendor/composer/autoload_static.php +63 -6
  37. vendor/composer/ca-bundle/LICENSE +0 -19
  38. vendor/composer/ca-bundle/res/cacert.pem +95 -114
  39. vendor/composer/ca-bundle/src/CaBundle.php +1 -0
  40. vendor/composer/installed.json +494 -37
  41. vendor/guzzlehttp/guzzle/.php_cs +23 -0
  42. vendor/guzzlehttp/guzzle/CHANGELOG.md +1338 -0
  43. vendor/guzzlehttp/guzzle/LICENSE +0 -19
  44. vendor/guzzlehttp/guzzle/phpstan-baseline.neon +0 -230
  45. vendor/guzzlehttp/guzzle/phpstan.neon.dist +0 -7
  46. vendor/guzzlehttp/guzzle/src/Client.php +14 -8
  47. vendor/guzzlehttp/guzzle/src/ClientInterface.php +1 -1
  48. vendor/guzzlehttp/guzzle/src/Exception/RequestException.php +1 -1
  49. vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php +4 -4
  50. vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php +3 -2
  51. vendor/guzzlehttp/guzzle/src/Pool.php +3 -1
  52. vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php +8 -2
  53. vendor/guzzlehttp/guzzle/src/RequestOptions.php +8 -0
  54. vendor/guzzlehttp/guzzle/src/RetryMiddleware.php +2 -2
  55. vendor/guzzlehttp/guzzle/src/Utils.php +92 -0
  56. vendor/guzzlehttp/guzzle/src/functions.php +1 -13
  57. vendor/guzzlehttp/promises/CHANGELOG.md +81 -0
  58. vendor/guzzlehttp/promises/LICENSE +0 -19
  59. vendor/guzzlehttp/promises/src/AggregateException.php +1 -0
  60. vendor/guzzlehttp/promises/src/CancellationException.php +1 -0
  61. vendor/guzzlehttp/promises/src/Coroutine.php +23 -5
  62. vendor/guzzlehttp/promises/src/Create.php +84 -0
  63. vendor/guzzlehttp/promises/src/Each.php +90 -0
  64. vendor/guzzlehttp/promises/src/EachPromise.php +41 -19
  65. vendor/guzzlehttp/promises/src/FulfilledPromise.php +6 -4
  66. vendor/guzzlehttp/promises/src/Is.php +46 -0
  67. vendor/guzzlehttp/promises/src/Promise.php +32 -34
  68. vendor/guzzlehttp/promises/src/PromiseInterface.php +4 -0
  69. vendor/guzzlehttp/promises/src/PromisorInterface.php +1 -0
  70. vendor/guzzlehttp/promises/src/RejectedPromise.php +9 -5
  71. vendor/guzzlehttp/promises/src/RejectionException.php +2 -1
  72. vendor/guzzlehttp/promises/src/TaskQueue.php +3 -2
  73. vendor/guzzlehttp/promises/src/TaskQueueInterface.php +1 -2
  74. vendor/guzzlehttp/promises/src/Utils.php +274 -0
  75. vendor/guzzlehttp/promises/src/functions.php +79 -187
  76. vendor/guzzlehttp/psr7/CHANGELOG.md +270 -0
  77. vendor/guzzlehttp/psr7/LICENSE +0 -19
  78. vendor/guzzlehttp/psr7/src/AppendStream.php +4 -1
  79. vendor/guzzlehttp/psr7/src/BufferStream.php +3 -0
  80. vendor/guzzlehttp/psr7/src/CachingStream.php +2 -1
  81. vendor/guzzlehttp/psr7/src/DroppingStream.php +1 -0
  82. vendor/guzzlehttp/psr7/src/FnStream.php +2 -0
  83. vendor/guzzlehttp/psr7/src/Header.php +71 -0
  84. vendor/guzzlehttp/psr7/src/InflateStream.php +1 -0
  85. vendor/guzzlehttp/psr7/src/LazyOpenStream.php +2 -1
  86. vendor/guzzlehttp/psr7/src/LimitStream.php +1 -0
  87. vendor/guzzlehttp/psr7/src/Message.php +252 -0
  88. vendor/guzzlehttp/psr7/src/MessageTrait.php +4 -3
  89. vendor/guzzlehttp/psr7/src/MimeType.php +140 -0
  90. vendor/guzzlehttp/psr7/src/MultipartStream.php +6 -5
  91. vendor/guzzlehttp/psr7/src/NoSeekStream.php +1 -0
  92. vendor/guzzlehttp/psr7/src/PumpStream.php +4 -1
  93. vendor/guzzlehttp/psr7/src/Query.php +108 -0
  94. vendor/guzzlehttp/psr7/src/Request.php +2 -1
  95. vendor/guzzlehttp/psr7/src/Response.php +3 -2
  96. vendor/guzzlehttp/psr7/src/ServerRequest.php +3 -1
  97. vendor/guzzlehttp/psr7/src/Stream.php +6 -3
  98. vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php +3 -1
  99. vendor/guzzlehttp/psr7/src/StreamWrapper.php +2 -0
  100. vendor/guzzlehttp/psr7/src/UploadedFile.php +10 -1
  101. vendor/guzzlehttp/psr7/src/Uri.php +1 -0
  102. vendor/guzzlehttp/psr7/src/UriNormalizer.php +1 -0
  103. vendor/guzzlehttp/psr7/src/UriResolver.php +1 -0
  104. vendor/guzzlehttp/psr7/src/Utils.php +398 -0
  105. vendor/guzzlehttp/psr7/src/functions.php +130 -612
  106. vendor/mollie/mollie-api-php/.phpstan.ignoreErrors.neon +16 -0
  107. vendor/mollie/mollie-api-php/LICENSE +0 -8
  108. vendor/mollie/mollie-api-php/examples/payments/list-methods.php +1 -1
  109. vendor/mollie/mollie-api-php/examples/shipments/create-shipment-partial.php +1 -1
  110. vendor/mollie/mollie-api-php/phpstan.neon +10 -0
  111. vendor/mollie/mollie-api-php/src/Endpoints/EndpointAbstract.php +1 -1
  112. vendor/mollie/mollie-api-php/src/Endpoints/MandateEndpoint.php +1 -1
  113. vendor/mollie/mollie-api-php/src/Endpoints/OnboardingEndpoint.php +4 -0
  114. vendor/mollie/mollie-api-php/src/Endpoints/OrderEndpoint.php +4 -3
  115. vendor/mollie/mollie-api-php/src/Endpoints/OrderLineEndpoint.php +1 -1
  116. vendor/mollie/mollie-api-php/src/Endpoints/PermissionEndpoint.php +1 -1
  117. vendor/mollie/mollie-api-php/src/Endpoints/SettlementPaymentEndpoint.php +47 -0
  118. vendor/mollie/mollie-api-php/src/Endpoints/ShipmentEndpoint.php +1 -1
  119. vendor/mollie/mollie-api-php/src/Endpoints/SubscriptionEndpoint.php +57 -5
  120. vendor/mollie/mollie-api-php/src/Exceptions/ApiException.php +75 -22
  121. vendor/mollie/mollie-api-php/src/Guzzle/RetryMiddlewareFactory.php +83 -0
  122. vendor/mollie/mollie-api-php/src/MollieApiClient.php +44 -11
  123. vendor/mollie/mollie-api-php/src/Resources/BaseCollection.php +1 -0
  124. vendor/mollie/mollie-api-php/src/Resources/Customer.php +15 -4
  125. vendor/mollie/mollie-api-php/src/Resources/MandateCollection.php +17 -0
  126. vendor/mollie/mollie-api-php/src/Resources/Method.php +7 -0
  127. vendor/mollie/mollie-api-php/src/Resources/MethodPrice.php +3 -3
  128. vendor/mollie/mollie-api-php/src/Resources/Order.php +87 -5
  129. vendor/mollie/mollie-api-php/src/Resources/OrderLine.php +50 -0
  130. vendor/mollie/mollie-api-php/src/Resources/Payment.php +136 -8
  131. vendor/mollie/mollie-api-php/src/Resources/Refund.php +10 -0
  132. vendor/mollie/mollie-api-php/src/Resources/Settlement.php +5 -14
  133. vendor/mollie/mollie-api-php/src/Resources/Subscription.php +26 -0
  134. vendor/mollie/mollie-api-php/src/Types/MandateMethod.php +5 -0
  135. vendor/mollie/mollie-api-php/src/Types/PaymentMethodStatus.php +52 -0
  136. vendor/mollie/mollie-api-php/src/Types/RefundStatus.php +5 -0
  137. vendor/paragonie/random_compat/dist/random_compat.phar.pubkey +5 -0
  138. vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc +11 -0
  139. vendor/paragonie/random_compat/lib/byte_safe_strings.php +195 -0
  140. vendor/paragonie/random_compat/lib/cast_to_int.php +77 -0
  141. vendor/paragonie/random_compat/lib/error_polyfill.php +49 -0
  142. vendor/paragonie/random_compat/lib/random.php +225 -0
  143. vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php +91 -0
  144. vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php +190 -0
  145. vendor/paragonie/random_compat/lib/random_bytes_libsodium.php +91 -0
  146. vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php +93 -0
  147. vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php +79 -0
  148. vendor/paragonie/random_compat/lib/random_int.php +204 -0
  149. vendor/paragonie/random_compat/phpunit-autoload.php +14 -0
  150. vendor/psr/http-message/CHANGELOG.md +36 -0
  151. vendor/psr/http-message/LICENSE +0 -19
  152. vendor/ralouphie/getallheaders/LICENSE +0 -21
  153. vendor/symfony/polyfill-intl-idn/Idn.php +923 -0
  154. vendor/symfony/polyfill-intl-idn/Info.php +23 -0
  155. vendor/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php +375 -0
  156. vendor/symfony/polyfill-intl-idn/Resources/unidata/Regex.php +24 -0
  157. vendor/symfony/polyfill-intl-idn/Resources/unidata/deviation.php +8 -0
  158. vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php +2638 -0
  159. vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php +308 -0
  160. vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php +71 -0
  161. vendor/symfony/polyfill-intl-idn/Resources/unidata/ignored.php +273 -0
  162. vendor/symfony/polyfill-intl-idn/Resources/unidata/mapped.php +5778 -0
  163. vendor/symfony/polyfill-intl-idn/Resources/unidata/virama.php +65 -0
  164. vendor/symfony/polyfill-intl-idn/bootstrap.php +141 -0
  165. vendor/symfony/polyfill-intl-normalizer/Normalizer.php +308 -0
  166. vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php +17 -0
  167. vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php +945 -0
  168. vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php +2065 -0
  169. vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php +876 -0
  170. vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php +3648 -0
inc/settings/mollie_advanced_settings.php ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $pluginName = Mollie_WC_Plugin::PLUGIN_ID;
3
+ return [
4
+ [
5
+ 'id' => $pluginName . '_' .'title',
6
+ 'title' => __('Mollie advanced settings', 'mollie-payments-for-woocommerce'),
7
+ 'type' => 'title',
8
+ 'desc' => '<p>' . __('The following options are required to use the plugin and are used by all Mollie payment methods', 'mollie-payments-for-woocommerce') . '</p>',
9
+ ],
10
+ [
11
+ 'id' => $pluginName . '_' .'order_status_cancelled_payments',
12
+ 'title' => __('Order status after cancelled payment', 'mollie-payments-for-woocommerce'),
13
+ 'type' => 'select',
14
+ 'options' => array(
15
+ 'pending' => __('Pending', 'woocommerce'),
16
+ 'cancelled' => __('Cancelled', 'woocommerce'),
17
+ ),
18
+ 'desc' => __('Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don\'t want customers to re-try paying with a different payment method. This doesn\'t apply to payments for orders via the new Orders API and Klarna payments.', 'mollie-payments-for-woocommerce'),
19
+ 'default' => 'pending',
20
+ ],
21
+ [
22
+ 'id' =>$pluginName . '_' .Mollie_WC_Helper_Settings::SETTING_NAME_PAYMENT_LOCALE,
23
+ 'title' => __('Payment screen language', 'mollie-payments-for-woocommerce'),
24
+ 'type' => 'select',
25
+ 'options' => array(
26
+ Mollie_WC_Helper_Settings::SETTING_LOCALE_WP_LANGUAGE => __(
27
+ 'Automatically send WordPress language',
28
+ 'mollie-payments-for-woocommerce'
29
+ ) . ' (' . __('default', 'mollie-payments-for-woocommerce') . ')',
30
+ Mollie_WC_Helper_Settings::SETTING_LOCALE_DETECT_BY_BROWSER => __(
31
+ 'Detect using browser language',
32
+ 'mollie-payments-for-woocommerce'
33
+ ),
34
+ 'en_US' => __('English', 'mollie-payments-for-woocommerce'),
35
+ 'nl_NL' => __('Dutch', 'mollie-payments-for-woocommerce'),
36
+ 'nl_BE' => __('Flemish (Belgium)', 'mollie-payments-for-woocommerce'),
37
+ 'fr_FR' => __('French', 'mollie-payments-for-woocommerce'),
38
+ 'fr_BE' => __('French (Belgium)', 'mollie-payments-for-woocommerce'),
39
+ 'de_DE' => __('German', 'mollie-payments-for-woocommerce'),
40
+ 'de_AT' => __('Austrian German', 'mollie-payments-for-woocommerce'),
41
+ 'de_CH' => __('Swiss German', 'mollie-payments-for-woocommerce'),
42
+ 'es_ES' => __('Spanish', 'mollie-payments-for-woocommerce'),
43
+ 'ca_ES' => __('Catalan', 'mollie-payments-for-woocommerce'),
44
+ 'pt_PT' => __('Portuguese', 'mollie-payments-for-woocommerce'),
45
+ 'it_IT' => __('Italian', 'mollie-payments-for-woocommerce'),
46
+ 'nb_NO' => __('Norwegian', 'mollie-payments-for-woocommerce'),
47
+ 'sv_SE' => __('Swedish', 'mollie-payments-for-woocommerce'),
48
+ 'fi_FI' => __('Finnish', 'mollie-payments-for-woocommerce'),
49
+ 'da_DK' => __('Danish', 'mollie-payments-for-woocommerce'),
50
+ 'is_IS' => __('Icelandic', 'mollie-payments-for-woocommerce'),
51
+ 'hu_HU' => __('Hungarian', 'mollie-payments-for-woocommerce'),
52
+ 'pl_PL' => __('Polish', 'mollie-payments-for-woocommerce'),
53
+ 'lv_LV' => __('Latvian', 'mollie-payments-for-woocommerce'),
54
+ 'lt_LT' => __('Lithuanian', 'mollie-payments-for-woocommerce'),
55
+ ),
56
+ 'desc' => sprintf(
57
+ __('Sending a language (or locale) is required. The option \'Automatically send WordPress language\' will try to get the customer\'s language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers.', 'mollie-payments-for-woocommerce'),
58
+ '<a href="https://www.mollie.com/nl/docs/reference/payments/create" target="_blank">',
59
+ '</a>'
60
+ ),
61
+ 'default' => Mollie_WC_Helper_Settings::SETTING_LOCALE_WP_LANGUAGE,
62
+ ],
63
+ [
64
+ 'id' => $pluginName . '_' .'customer_details',
65
+ 'title' => __('Store customer details at Mollie', 'mollie-payments-for-woocommerce'),
66
+ /* translators: Placeholder 1: enabled or disabled */
67
+ 'desc' => sprintf(__('Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!', 'mollie-payments-for-woocommerce'), strtolower(__('Enabled', 'mollie-payments-for-woocommerce'))),
68
+ 'type' => 'checkbox',
69
+ 'default' => 'yes',
70
+
71
+ ],
72
+
73
+ [
74
+ 'id' => $pluginName . '_' .'sectionend',
75
+ 'type' => 'sectionend',
76
+ ]
77
+ ];
78
+
inc/settings/mollie_apple_pay_button_enabler.php CHANGED
@@ -1,13 +1,30 @@
1
  <?php
2
-
3
  return [
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  'mollie_apple_pay_button_enabled' => [
5
  'type' => 'checkbox',
6
- 'title' => __('Enable Apple Pay Button', 'mollie-payments-for-woocommerce'),
 
 
 
7
  'description' => __(
8
  'Enable the Apple Pay direct buy button',
9
  'mollie-payments-for-woocommerce'
10
  ),
11
  'default' => 'no',
12
- ],
 
13
  ];
1
  <?php
2
+ $pluginName = Mollie_WC_Plugin::PLUGIN_ID;
3
  return [
4
+ [
5
+ 'id' => $pluginName . '_' . 'title',
6
+ 'title' => __(
7
+ 'Apple Pay button settings',
8
+ 'mollie-payments-for-woocommerce'
9
+ ),
10
+ 'type' => 'title',
11
+ 'desc' => '<p>' . __(
12
+ 'The following options are required to use the Apple Pay button',
13
+ 'mollie-payments-for-woocommerce'
14
+ ) . '</p>',
15
+ ],
16
+
17
  'mollie_apple_pay_button_enabled' => [
18
  'type' => 'checkbox',
19
+ 'title' => __(
20
+ 'Enable Apple Pay Button',
21
+ 'mollie-payments-for-woocommerce'
22
+ ),
23
  'description' => __(
24
  'Enable the Apple Pay direct buy button',
25
  'mollie-payments-for-woocommerce'
26
  ),
27
  'default' => 'no',
28
+ ]
29
+
30
  ];
inc/settings/mollie_applepay_settings.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $pluginName = Mollie_WC_Plugin::PLUGIN_ID;
3
+ $gateway = new Mollie_WC_Gateway_Applepay();
4
+ $title = $gateway->method_title;
5
+ $description = $gateway->method_description;
6
+ $pluginId = Mollie_WC_Plugin::PLUGIN_ID;
7
+ $applePayOption = get_option('mollie_wc_gateway_applepay_settings');
8
+
9
+ return [
10
+ [
11
+ 'id' => $title . '_' .'title',
12
+ 'title' => __($title, 'mollie-payments-for-woocommerce'),
13
+ 'type' => 'title',
14
+ 'desc' => '<p>' . __('The following options are required to use the Apple Pay gateway', 'mollie-payments-for-woocommerce') . '</p>',
15
+ ],
16
+
17
+ [
18
+ 'id' =>'enabled',
19
+ 'title' => __('Enable/Disable', 'mollie-payments-for-woocommerce'),
20
+ /* translators: Placeholder 1: enabled or disabled */
21
+ 'desc' => sprintf(__('Enable %s', 'mollie-payments-for-woocommerce'), $title),
22
+ 'type' => 'checkbox',
23
+ 'default' => 'yes',
24
+ 'value' => $applePayOption['enabled']
25
+
26
+ ],
27
+ [
28
+ 'id' => 'title',
29
+ 'title' => __('Title', 'mollie-payments-for-woocommerce'),
30
+ /* translators: Placeholder 1: enabled or disabled */
31
+ 'desc' => sprintf(
32
+ __(
33
+ 'This controls the title which the user sees during checkout. Default <code>%s</code>',
34
+ 'mollie-payments-for-woocommerce'
35
+ ),
36
+ $title),
37
+ 'desc_tip' => true,
38
+ 'type' => 'text',
39
+ 'default' => $title,
40
+ 'value' => $applePayOption['title']
41
+
42
+ ],
43
+ [
44
+ 'id' => 'display_logo',
45
+ 'title' => __('Display logo', 'mollie-payments-for-woocommerce'),
46
+ /* translators: Placeholder 1: enabled or disabled */
47
+ 'desc' => sprintf(
48
+ __(
49
+ 'Display logo',
50
+ 'mollie-payments-for-woocommerce'
51
+ )),
52
+ 'desc_tip' => true,
53
+ 'type' => 'checkbox',
54
+ 'default' => 'yes',
55
+ 'value' => $applePayOption['display_logo']
56
+
57
+ ],
58
+ [
59
+ 'id' => 'description',
60
+ 'title' => __('Description', 'mollie-payments-for-woocommerce'),
61
+ /* translators: Placeholder 1: enabled or disabled */
62
+ 'desc' => sprintf(
63
+ __(
64
+ 'Payment method description that the customer will see on your checkout. Default <code>%s</code>',
65
+ 'mollie-payments-for-woocommerce'
66
+ ),
67
+ $title),
68
+ 'desc_tip' => true,
69
+ 'type' => 'text',
70
+ 'default' => $description,
71
+ 'value' => $applePayOption['description']
72
+ ],
73
+ [
74
+ 'id' => $pluginId . '_' . 'sectionend',
75
+ 'type' => 'sectionend',
76
+ ],
77
+ [
78
+ 'id' => $title . '_' .'title_button',
79
+ 'title' => __(
80
+ 'Apple Pay button settings',
81
+ 'mollie-payments-for-woocommerce'
82
+ ),
83
+ 'type' => 'title',
84
+ 'desc' => '<p>' . __('The following options are required to use the Apple Pay Direct Button', 'mollie-payments-for-woocommerce') . '</p>',
85
+ ],
86
+ [
87
+ 'id' => 'mollie_apple_pay_button_enabled',
88
+ 'title' => __('Enable Apple Pay Button', 'mollie-payments-for-woocommerce'),
89
+ /* translators: Placeholder 1: enabled or disabled */
90
+ 'desc' => sprintf(
91
+ __(
92
+ 'Enable the Apple Pay direct buy button',
93
+ 'mollie-payments-for-woocommerce'
94
+ ),
95
+ $description),
96
+ 'type' => 'checkbox',
97
+ 'default' => 'no',
98
+ 'value' => $applePayOption['mollie_apple_pay_button_enabled']
99
+
100
+ ],
101
+ [
102
+ 'id' => $pluginName . '_' .'sectionend',
103
+ 'type' => 'sectionend',
104
+ ]
105
+ ];
106
+
inc/utils.php CHANGED
@@ -42,21 +42,24 @@ function mollieWooCommerceIsTestModeEnabled()
42
  }
43
 
44
  /**
 
 
 
45
  * @return CurrentProfile
46
  * @throws ApiException
47
  */
48
  function mollieWooCommerceMerchantProfile()
49
  {
50
- static $profile = null;
51
-
52
- if ($profile === null) {
53
- $isTestMode = mollieWooCommerceIsTestModeEnabled();
54
 
55
- $apiHelper = Mollie_WC_Plugin::getApiHelper();
56
- $profile = $apiHelper->getApiClient($isTestMode)->profiles->getCurrent();
57
- }
58
 
59
- return $profile;
 
 
 
60
  }
61
 
62
  /**
42
  }
43
 
44
  /**
45
+ * If we are calling this the api key has been updated, we need a new api object
46
+ * to retrieve a new profile id
47
+ *
48
  * @return CurrentProfile
49
  * @throws ApiException
50
  */
51
  function mollieWooCommerceMerchantProfile()
52
  {
53
+ $isTestMode = mollieWooCommerceIsTestModeEnabled();
 
 
 
54
 
55
+ $apiHelper = new Mollie_WC_Helper_Api(
56
+ Mollie_WC_Plugin::getSettingsHelper()
57
+ );
58
 
59
+ return $apiHelper->getApiClient(
60
+ $isTestMode,
61
+ true
62
+ )->profiles->getCurrent();
63
  }
64
 
65
  /**
inc/woocommerce.php CHANGED
@@ -42,7 +42,7 @@ function mollieWooCommerceSession()
42
  */
43
  function mollieWooCommerceOrderId(WC_Order $order)
44
  {
45
- return version_compare(WC_VERSION, '3.0', '<')
46
  ? $order->id
47
  : $order->get_id();
48
  }
@@ -54,11 +54,21 @@ function mollieWooCommerceOrderId(WC_Order $order)
54
  */
55
  function mollieWooCommerceOrderKey(WC_Order $order)
56
  {
57
- return version_compare(WC_VERSION, '3.0', '<')
58
  ? $order->order_key
59
  : $order->get_order_key();
60
  }
61
 
 
 
 
 
 
 
 
 
 
 
62
  /**
63
  * Mimics wc_string_to_bool
64
  * @param $string
42
  */
43
  function mollieWooCommerceOrderId(WC_Order $order)
44
  {
45
+ return version_compare(mollieWooCommerceWcVersion(), '3.0', '<')
46
  ? $order->id
47
  : $order->get_id();
48
  }
54
  */
55
  function mollieWooCommerceOrderKey(WC_Order $order)
56
  {
57
+ return version_compare(mollieWooCommerceWcVersion(), '3.0', '<')
58
  ? $order->order_key
59
  : $order->get_order_key();
60
  }
61
 
62
+ /**
63
+ * Retrieve the version of WooCommerce currently active.
64
+ *
65
+ * @return string The version number.
66
+ */
67
+ function mollieWooCommerceWcVersion()
68
+ {
69
+ return (string) WC_VERSION;
70
+ }
71
+
72
  /**
73
  * Mimics wc_string_to_bool
74
  * @param $string
mollie-payments-for-woocommerce.php CHANGED
@@ -3,16 +3,16 @@
3
  * Plugin Name: Mollie Payments for WooCommerce
4
  * Plugin URI: https://www.mollie.com
5
  * Description: Accept payments in WooCommerce with the official Mollie plugin
6
- * Version: 5.11.0
7
  * Author: Mollie
8
  * Author URI: https://www.mollie.com
9
  * Requires at least: 3.8
10
- * Tested up to: 5.5
11
  * Text Domain: mollie-payments-for-woocommerce
12
  * Domain Path: /languages
13
  * License: GPLv2 or later
14
  * WC requires at least: 2.2.0
15
- * WC tested up to: 4.7
16
  */
17
 
18
  use Mollie\Api\CompatibilityChecker;
@@ -39,7 +39,7 @@ function mollie_wc_plugin_activation_hook()
39
  return;
40
  }
41
 
42
- if (!isWooCommerceCompatible()) {
43
  add_action('admin_notices', 'mollie_wc_plugin_inactive');
44
  return;
45
  }
@@ -55,10 +55,38 @@ function mollie_wc_plugin_activation_hook()
55
  return;
56
  }
57
 
58
- deleteWPTranslationFiles();
59
  }
60
 
61
- function deleteWPTranslationFiles()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  {
63
  WP_Filesystem();
64
  global $wp_filesystem;
@@ -89,7 +117,7 @@ function deleteWPTranslationFiles()
89
  }
90
  }
91
 
92
- function isWooCommerceCompatible()
93
  {
94
  $wooCommerceVersion = get_option('woocommerce_version');
95
  $isWooCommerceVersionCompatible = version_compare(
@@ -226,10 +254,11 @@ $bootstrap = Closure::bind(
226
  return;
227
  }
228
 
229
- if (!isWooCommerceCompatible()) {
230
  add_action('admin_notices', 'mollie_wc_plugin_inactive');
231
  return;
232
  }
 
233
 
234
  add_action(
235
  'init',
@@ -239,7 +268,7 @@ $bootstrap = Closure::bind(
239
  }
240
  );
241
 
242
- add_action( 'core_upgrade_preamble', 'deleteWPTranslationFiles' );
243
  add_filter(
244
  'site_transient_update_plugins',
245
  function ($value) {
3
  * Plugin Name: Mollie Payments for WooCommerce
4
  * Plugin URI: https://www.mollie.com
5
  * Description: Accept payments in WooCommerce with the official Mollie plugin
6
+ * Version: 6.0
7
  * Author: Mollie
8
  * Author URI: https://www.mollie.com
9
  * Requires at least: 3.8
10
+ * Tested up to: 5.6
11
  * Text Domain: mollie-payments-for-woocommerce
12
  * Domain Path: /languages
13
  * License: GPLv2 or later
14
  * WC requires at least: 2.2.0
15
+ * WC tested up to: 4.8
16
  */
17
 
18
  use Mollie\Api\CompatibilityChecker;
39
  return;
40
  }
41
 
42
+ if (!mollieIsWooCommerceCompatible()) {
43
  add_action('admin_notices', 'mollie_wc_plugin_inactive');
44
  return;
45
  }
55
  return;
56
  }
57
 
58
+ mollieDeleteWPTranslationFiles();
59
  }
60
 
61
+
62
+ function showWcDroppingNotice()
63
+ {
64
+ if (get_option('mollie-payments-for-woocommerce-wc-drop')) {
65
+ return false;
66
+ }
67
+ $notice = new Mollie_WC_Notice_AdminNotice();
68
+ $message = sprintf(
69
+ esc_html__(
70
+ '%1$sMollie Payments for WooCommerce is dropping WooCommerce support for version 2.x.%2$s Please %3$supdate WooCommerce to version 3.0 or newer &raquo;%4$s. %5$sContact our support team if any questions remain%6$s',
71
+ 'mollie-payments-for-woocommerce'
72
+ ),
73
+ '<strong>',
74
+ '</strong>',
75
+ '<a href="' . esc_url(admin_url('plugins.php')) . '">',
76
+ '</a>',
77
+ '<a href="' . esc_url('https://mollie.inpsyde.com/docs/how-to-request-support-via-website-widget/') . '">',
78
+ '</a>'
79
+ );
80
+ if (version_compare(get_option('woocommerce_version'), '3.0', '<')) {
81
+ $notice->addAdminNotice('notice-error is-dismissible', $message);
82
+ }
83
+
84
+ update_option('mollie-payments-for-woocommerce-wc-drop', 'yes', true);
85
+ return false;
86
+ }
87
+
88
+
89
+ function mollieDeleteWPTranslationFiles()
90
  {
91
  WP_Filesystem();
92
  global $wp_filesystem;
117
  }
118
  }
119
 
120
+ function mollieIsWooCommerceCompatible()
121
  {
122
  $wooCommerceVersion = get_option('woocommerce_version');
123
  $isWooCommerceVersionCompatible = version_compare(
254
  return;
255
  }
256
 
257
+ if (!mollieIsWooCommerceCompatible()) {
258
  add_action('admin_notices', 'mollie_wc_plugin_inactive');
259
  return;
260
  }
261
+ showWcDroppingNotice();
262
 
263
  add_action(
264
  'init',
268
  }
269
  );
270
 
271
+ add_action( 'core_upgrade_preamble', 'mollieDeleteWPTranslationFiles' );
272
  add_filter(
273
  'site_transient_update_plugins',
274
  function ($value) {
node_modules/.package-lock.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ {
2
+ "name": "mollie-payments-for-woocommerce",
3
+ "version": "5.6.1",
4
+ "lockfileVersion": 2,
5
+ "requires": true,
6
+ "packages": {}
7
+ }
public/css/entrypoints.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "entrypoints": {
3
+ "mollie-components.min": {
4
+ "css": [
5
+ "/public/css/mollie-components.min.css"
6
+ ]
7
+ },
8
+ "unabledButton.min": {
9
+ "css": [
10
+ "/public/css/unabledButton.min.css"
11
+ ]
12
+ },
13
+ "mollie-applepaydirect.min": {
14
+ "css": [
15
+ "/public/css/mollie-applepaydirect.min.css"
16
+ ]
17
+ }
18
+ }
19
+ }
public/css/manifest.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ {
2
+ "public/css/mollie-applepaydirect.min.css": "/public/css/mollie-applepaydirect.min.css",
3
+ "public/css/mollie-components.min.css": "/public/css/mollie-components.min.css",
4
+ "public/css/unabledButton.min.css": "/public/css/unabledButton.min.css"
5
+ }
public/js/entrypoints.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "entrypoints": {
3
+ "babel-polyfill.min": {
4
+ "js": [
5
+ "/public/js/babel-polyfill.min.js"
6
+ ]
7
+ },
8
+ "applepay.min": {
9
+ "js": [
10
+ "/public/js/applepay.min.js"
11
+ ]
12
+ },
13
+ "applepayDirect.min": {
14
+ "js": [
15
+ "/public/js/applepayDirect.min.js"
16
+ ]
17
+ },
18
+ "applepayDirectCart.min": {
19
+ "js": [
20
+ "/public/js/applepayDirectCart.min.js"
21
+ ]
22
+ },
23
+ "settings.min": {
24
+ "js": [
25
+ "/public/js/settings.min.js"
26
+ ]
27
+ },
28
+ "mollie-components.min": {
29
+ "js": [
30
+ "/public/js/mollie-components.min.js"
31
+ ]
32
+ }
33
+ }
34
+ }
public/js/manifest.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "public/js/applepay.min.js": "/public/js/applepay.min.js",
3
+ "public/js/applepayDirect.min.js": "/public/js/applepayDirect.min.js",
4
+ "public/js/applepayDirectCart.min.js": "/public/js/applepayDirectCart.min.js",
5
+ "public/js/babel-polyfill.min.js": "/public/js/babel-polyfill.min.js",
6
+ "public/js/mollie-components.min.js": "/public/js/mollie-components.min.js",
7
+ "public/js/settings.min.js": "/public/js/settings.min.js"
8
+ }
public/js/mealvoucher.min.js CHANGED
@@ -1 +1,137 @@
1
- !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/public/js/",n(n.s="XwO7")}({XwO7:function(e,t){!function(e){var t=e._,n=e.mealvoucherSettings,r=e.jQuery;if(!t.isEmpty(n)){var o=n.message,a=n.productsWithCategory,i=void 0===a?0:a;r("body").on("updated_checkout",(function(){var e=document.getElementById("place_order"),t=document.getElementById("payment");r('input[name="payment_method"]').change((function(){if("mollie_wc_gateway_mealvoucher"===r('form[name="checkout"] input[name="payment_method"]:checked').val()){if("1"===i){e.disabled=!0,e.classList.add("buttonDisabled");var n=document.createElement("div");n.classList.add("error"),n.setAttribute("id","mealvoucher-error-notice");var a=document.createElement("p");a.appendChild(document.createTextNode(o)),n.appendChild(a),t.parentNode.insertBefore(n,t.nextSibling)}}else{e.disabled=!1,e.classList.remove("buttonDisabled");var u=document.getElementById("mealvoucher-error-notice");u&&t.parentNode.removeChild(u)}}))}))}}(window)}});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /******/ (function(modules) { // webpackBootstrap
2
+ /******/ // The module cache
3
+ /******/ var installedModules = {};
4
+ /******/
5
+ /******/ // The require function
6
+ /******/ function __webpack_require__(moduleId) {
7
+ /******/
8
+ /******/ // Check if module is in cache
9
+ /******/ if(installedModules[moduleId]) {
10
+ /******/ return installedModules[moduleId].exports;
11
+ /******/ }
12
+ /******/ // Create a new module (and put it into the cache)
13
+ /******/ var module = installedModules[moduleId] = {
14
+ /******/ i: moduleId,
15
+ /******/ l: false,
16
+ /******/ exports: {}
17
+ /******/ };
18
+ /******/
19
+ /******/ // Execute the module function
20
+ /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
21
+ /******/
22
+ /******/ // Flag the module as loaded
23
+ /******/ module.l = true;
24
+ /******/
25
+ /******/ // Return the exports of the module
26
+ /******/ return module.exports;
27
+ /******/ }
28
+ /******/
29
+ /******/
30
+ /******/ // expose the modules object (__webpack_modules__)
31
+ /******/ __webpack_require__.m = modules;
32
+ /******/
33
+ /******/ // expose the module cache
34
+ /******/ __webpack_require__.c = installedModules;
35
+ /******/
36
+ /******/ // define getter function for harmony exports
37
+ /******/ __webpack_require__.d = function(exports, name, getter) {
38
+ /******/ if(!__webpack_require__.o(exports, name)) {
39
+ /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
40
+ /******/ }
41
+ /******/ };
42
+ /******/
43
+ /******/ // define __esModule on exports
44
+ /******/ __webpack_require__.r = function(exports) {
45
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
46
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
47
+ /******/ }
48
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
49
+ /******/ };
50
+ /******/
51
+ /******/ // create a fake namespace object
52
+ /******/ // mode & 1: value is a module id, require it
53
+ /******/ // mode & 2: merge all properties of value into the ns
54
+ /******/ // mode & 4: return value when already ns object
55
+ /******/ // mode & 8|1: behave like require
56
+ /******/ __webpack_require__.t = function(value, mode) {
57
+ /******/ if(mode & 1) value = __webpack_require__(value);
58
+ /******/ if(mode & 8) return value;
59
+ /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
60
+ /******/ var ns = Object.create(null);
61
+ /******/ __webpack_require__.r(ns);
62
+ /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
63
+ /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
64
+ /******/ return ns;
65
+ /******/ };
66
+ /******/
67
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
68
+ /******/ __webpack_require__.n = function(module) {
69
+ /******/ var getter = module && module.__esModule ?
70
+ /******/ function getDefault() { return module['default']; } :
71
+ /******/ function getModuleExports() { return module; };
72
+ /******/ __webpack_require__.d(getter, 'a', getter);
73
+ /******/ return getter;
74
+ /******/ };
75
+ /******/
76
+ /******/ // Object.prototype.hasOwnProperty.call
77
+ /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
78
+ /******/
79
+ /******/ // __webpack_public_path__
80
+ /******/ __webpack_require__.p = "/public/js/";
81
+ /******/
82
+ /******/
83
+ /******/ // Load entry module and return exports
84
+ /******/ return __webpack_require__(__webpack_require__.s = "./resources/js/mealvoucher.js");
85
+ /******/ })
86
+ /************************************************************************/
87
+ /******/ ({
88
+
89
+ /***/ "./resources/js/mealvoucher.js":
90
+ /*!*************************************!*\
91
+ !*** ./resources/js/mealvoucher.js ***!
92
+ \*************************************/
93
+ /*! no static exports found */
94
+ /***/ (function(module, exports) {
95
+
96
+ (function (_ref) {
97
+ var _ = _ref._,
98
+ mealvoucherSettings = _ref.mealvoucherSettings,
99
+ jQuery = _ref.jQuery;
100
+
101
+ if (_.isEmpty(mealvoucherSettings)) {
102
+ return;
103
+ }
104
+
105
+ var message = mealvoucherSettings.message,
106
+ _mealvoucherSettings$ = mealvoucherSettings.productsWithCategory,
107
+ productsWithCategory = _mealvoucherSettings$ === void 0 ? 0 : _mealvoucherSettings$;
108
+ jQuery('body').on('updated_checkout', function () {
109
+ var button = document.getElementById("place_order");
110
+ var element = document.getElementById("payment");
111
+ jQuery('input[name="payment_method"]').change(function () {
112
+ if (jQuery('form[name="checkout"] input[name="payment_method"]:checked').val() === 'mollie_wc_gateway_mealvoucher') {
113
+ if (productsWithCategory === '1') {
114
+ button.disabled = true;
115
+ button.classList.add("buttonDisabled");
116
+ var div = document.createElement('div');
117
+ div.classList.add('error');
118
+ div.setAttribute('id', 'mealvoucher-error-notice');
119
+ var p = document.createElement('p');
120
+ p.appendChild(document.createTextNode(message));
121
+ div.appendChild(p);
122
+ element.parentNode.insertBefore(div, element.nextSibling);
123
+ }
124
+ } else {
125
+ button.disabled = false;
126
+ button.classList.remove("buttonDisabled");
127
+ var errorNotice = document.getElementById('mealvoucher-error-notice');
128
+ errorNotice && element.parentNode.removeChild(errorNotice);
129
+ }
130
+ });
131
+ });
132
+ })(window);
133
+
134
+ /***/ })
135
+
136
+ /******/ });
137
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vd2VicGFjay9ib290c3RyYXAiLCJ3ZWJwYWNrOi8vLy4vcmVzb3VyY2VzL2pzL21lYWx2b3VjaGVyLmpzIl0sIm5hbWVzIjpbIl8iLCJtZWFsdm91Y2hlclNldHRpbmdzIiwialF1ZXJ5IiwiaXNFbXB0eSIsIm1lc3NhZ2UiLCJwcm9kdWN0c1dpdGhDYXRlZ29yeSIsIm9uIiwiYnV0dG9uIiwiZG9jdW1lbnQiLCJnZXRFbGVtZW50QnlJZCIsImVsZW1lbnQiLCJjaGFuZ2UiLCJ2YWwiLCJkaXNhYmxlZCIsImNsYXNzTGlzdCIsImFkZCIsImRpdiIsImNyZWF0ZUVsZW1lbnQiLCJzZXRBdHRyaWJ1dGUiLCJwIiwiYXBwZW5kQ2hpbGQiLCJjcmVhdGVUZXh0Tm9kZSIsInBhcmVudE5vZGUiLCJpbnNlcnRCZWZvcmUiLCJuZXh0U2libGluZyIsInJlbW92ZSIsImVycm9yTm90aWNlIiwicmVtb3ZlQ2hpbGQiLCJ3aW5kb3ciXSwibWFwcGluZ3MiOiI7UUFBQTtRQUNBOztRQUVBO1FBQ0E7O1FBRUE7UUFDQTtRQUNBO1FBQ0E7UUFDQTtRQUNBO1FBQ0E7UUFDQTtRQUNBO1FBQ0E7O1FBRUE7UUFDQTs7UUFFQTtRQUNBOztRQUVBO1FBQ0E7UUFDQTs7O1FBR0E7UUFDQTs7UUFFQTtRQUNBOztRQUVBO1FBQ0E7UUFDQTtRQUNBLDBDQUEwQyxnQ0FBZ0M7UUFDMUU7UUFDQTs7UUFFQTtRQUNBO1FBQ0E7UUFDQSx3REFBd0Qsa0JBQWtCO1FBQzFFO1FBQ0EsaURBQWlELGNBQWM7UUFDL0Q7O1FBRUE7UUFDQTtRQUNBO1FBQ0E7UUFDQTtRQUNBO1FBQ0E7UUFDQTtRQUNBO1FBQ0E7UUFDQTtRQUNBLHlDQUF5QyxpQ0FBaUM7UUFDMUUsZ0hBQWdILG1CQUFtQixFQUFFO1FBQ3JJO1FBQ0E7O1FBRUE7UUFDQTtRQUNBO1FBQ0EsMkJBQTJCLDBCQUEwQixFQUFFO1FBQ3ZELGlDQUFpQyxlQUFlO1FBQ2hEO1FBQ0E7UUFDQTs7UUFFQTtRQUNBLHNEQUFzRCwrREFBK0Q7O1FBRXJIO1FBQ0E7OztRQUdBO1FBQ0E7Ozs7Ozs7Ozs7OztBQ2xGQSxDQUNJLGdCQUE0QztBQUFBLE1BQWpDQSxDQUFpQyxRQUFqQ0EsQ0FBaUM7QUFBQSxNQUE5QkMsbUJBQThCLFFBQTlCQSxtQkFBOEI7QUFBQSxNQUFUQyxNQUFTLFFBQVRBLE1BQVM7O0FBQ3hDLE1BQUlGLENBQUMsQ0FBQ0csT0FBRixDQUFVRixtQkFBVixDQUFKLEVBQW9DO0FBQ2hDO0FBQ0g7O0FBSHVDLE1BS2pDRyxPQUxpQyxHQUtJSCxtQkFMSixDQUtqQ0csT0FMaUM7QUFBQSw4QkFLSUgsbUJBTEosQ0FLeEJJLG9CQUx3QjtBQUFBLE1BS3hCQSxvQkFMd0Isc0NBS0QsQ0FMQztBQU94Q0gsUUFBTSxDQUFDLE1BQUQsQ0FBTixDQUNLSSxFQURMLENBQ1Esa0JBRFIsRUFDNEIsWUFBWTtBQUNoQyxRQUFJQyxNQUFNLEdBQUdDLFFBQVEsQ0FBQ0MsY0FBVCxDQUF3QixhQUF4QixDQUFiO0FBQ0EsUUFBTUMsT0FBTyxHQUFHRixRQUFRLENBQUNDLGNBQVQsQ0FBd0IsU0FBeEIsQ0FBaEI7QUFDQVAsVUFBTSxDQUFDLDhCQUFELENBQU4sQ0FBdUNTLE1BQXZDLENBQThDLFlBQVk7QUFDdEQsVUFBSVQsTUFBTSxDQUFDLDREQUFELENBQU4sQ0FBcUVVLEdBQXJFLE9BQStFLCtCQUFuRixFQUFvSDtBQUNoSCxZQUFJUCxvQkFBb0IsS0FBSyxHQUE3QixFQUFrQztBQUM5QkUsZ0JBQU0sQ0FBQ00sUUFBUCxHQUFrQixJQUFsQjtBQUNBTixnQkFBTSxDQUFDTyxTQUFQLENBQWlCQyxHQUFqQixDQUFxQixnQkFBckI7QUFDQSxjQUFJQyxHQUFHLEdBQUdSLFFBQVEsQ0FBQ1MsYUFBVCxDQUF1QixLQUF2QixDQUFWO0FBQ0FELGFBQUcsQ0FBQ0YsU0FBSixDQUFjQyxHQUFkLENBQWtCLE9BQWxCO0FBQ0FDLGFBQUcsQ0FBQ0UsWUFBSixDQUFpQixJQUFqQixFQUF1QiwwQkFBdkI7QUFDQSxjQUFJQyxDQUFDLEdBQUdYLFFBQVEsQ0FBQ1MsYUFBVCxDQUF1QixHQUF2QixDQUFSO0FBQ0FFLFdBQUMsQ0FBQ0MsV0FBRixDQUFjWixRQUFRLENBQUNhLGNBQVQsQ0FBd0JqQixPQUF4QixDQUFkO0FBQ0FZLGFBQUcsQ0FBQ0ksV0FBSixDQUFnQkQsQ0FBaEI7QUFDQVQsaUJBQU8sQ0FBQ1ksVUFBUixDQUFtQkMsWUFBbkIsQ0FBZ0NQLEdBQWhDLEVBQXFDTixPQUFPLENBQUNjLFdBQTdDO0FBQ0g7QUFDSixPQVpELE1BWU87QUFDSGpCLGNBQU0sQ0FBQ00sUUFBUCxHQUFrQixLQUFsQjtBQUNBTixjQUFNLENBQUNPLFNBQVAsQ0FBaUJXLE1BQWpCLENBQXdCLGdCQUF4QjtBQUNBLFlBQUlDLFdBQVcsR0FBR2xCLFFBQVEsQ0FBQ0MsY0FBVCxDQUF3QiwwQkFBeEIsQ0FBbEI7QUFDQWlCLG1CQUFXLElBQUloQixPQUFPLENBQUNZLFVBQVIsQ0FBbUJLLFdBQW5CLENBQStCRCxXQUEvQixDQUFmO0FBQ0g7QUFDSixLQW5CRDtBQW9CSCxHQXhCTDtBQXlCSCxDQWpDTCxFQW9DSUUsTUFwQ0osRSIsImZpbGUiOiJtZWFsdm91Y2hlci5taW4uanMiLCJzb3VyY2VzQ29udGVudCI6WyIgXHQvLyBUaGUgbW9kdWxlIGNhY2hlXG4gXHR2YXIgaW5zdGFsbGVkTW9kdWxlcyA9IHt9O1xuXG4gXHQvLyBUaGUgcmVxdWlyZSBmdW5jdGlvblxuIFx0ZnVuY3Rpb24gX193ZWJwYWNrX3JlcXVpcmVfXyhtb2R1bGVJZCkge1xuXG4gXHRcdC8vIENoZWNrIGlmIG1vZHVsZSBpcyBpbiBjYWNoZVxuIFx0XHRpZihpbnN0YWxsZWRNb2R1bGVzW21vZHVsZUlkXSkge1xuIFx0XHRcdHJldHVybiBpbnN0YWxsZWRNb2R1bGVzW21vZHVsZUlkXS5leHBvcnRzO1xuIFx0XHR9XG4gXHRcdC8vIENyZWF0ZSBhIG5ldyBtb2R1bGUgKGFuZCBwdXQgaXQgaW50byB0aGUgY2FjaGUpXG4gXHRcdHZhciBtb2R1bGUgPSBpbnN0YWxsZWRNb2R1bGVzW21vZHVsZUlkXSA9IHtcbiBcdFx0XHRpOiBtb2R1bGVJZCxcbiBcdFx0XHRsOiBmYWxzZSxcbiBcdFx0XHRleHBvcnRzOiB7fVxuIFx0XHR9O1xuXG4gXHRcdC8vIEV4ZWN1dGUgdGhlIG1vZHVsZSBmdW5jdGlvblxuIFx0XHRtb2R1bGVzW21vZHVsZUlkXS5jYWxsKG1vZHVsZS5leHBvcnRzLCBtb2R1bGUsIG1vZHVsZS5leHBvcnRzLCBfX3dlYnBhY2tfcmVxdWlyZV9fKTtcblxuIFx0XHQvLyBGbGFnIHRoZSBtb2R1bGUgYXMgbG9hZGVkXG4gXHRcdG1vZHVsZS5sID0gdHJ1ZTtcblxuIFx0XHQvLyBSZXR1cm4gdGhlIGV4cG9ydHMgb2YgdGhlIG1vZHVsZVxuIFx0XHRyZXR1cm4gbW9kdWxlLmV4cG9ydHM7XG4gXHR9XG5cblxuIFx0Ly8gZXhwb3NlIHRoZSBtb2R1bGVzIG9iamVjdCAoX193ZWJwYWNrX21vZHVsZXNfXylcbiBcdF9fd2VicGFja19yZXF1aXJlX18ubSA9IG1vZHVsZXM7XG5cbiBcdC8vIGV4cG9zZSB0aGUgbW9kdWxlIGNhY2hlXG4gXHRfX3dlYnBhY2tfcmVxdWlyZV9fLmMgPSBpbnN0YWxsZWRNb2R1bGVzO1xuXG4gXHQvLyBkZWZpbmUgZ2V0dGVyIGZ1bmN0aW9uIGZvciBoYXJtb255IGV4cG9ydHNcbiBcdF9fd2VicGFja19yZXF1aXJlX18uZCA9IGZ1bmN0aW9uKGV4cG9ydHMsIG5hbWUsIGdldHRlcikge1xuIFx0XHRpZighX193ZWJwYWNrX3JlcXVpcmVfXy5vKGV4cG9ydHMsIG5hbWUpKSB7XG4gXHRcdFx0T2JqZWN0LmRlZmluZVByb3BlcnR5KGV4cG9ydHMsIG5hbWUsIHsgZW51bWVyYWJsZTogdHJ1ZSwgZ2V0OiBnZXR0ZXIgfSk7XG4gXHRcdH1cbiBcdH07XG5cbiBcdC8vIGRlZmluZSBfX2VzTW9kdWxlIG9uIGV4cG9ydHNcbiBcdF9fd2VicGFja19yZXF1aXJlX18uciA9IGZ1bmN0aW9uKGV4cG9ydHMpIHtcbiBcdFx0aWYodHlwZW9mIFN5bWJvbCAhPT0gJ3VuZGVmaW5lZCcgJiYgU3ltYm9sLnRvU3RyaW5nVGFnKSB7XG4gXHRcdFx0T2JqZWN0LmRlZmluZVByb3BlcnR5KGV4cG9ydHMsIFN5bWJvbC50b1N0cmluZ1RhZywgeyB2YWx1ZTogJ01vZHVsZScgfSk7XG4gXHRcdH1cbiBcdFx0T2JqZWN0LmRlZmluZVByb3BlcnR5KGV4cG9ydHMsICdfX2VzTW9kdWxlJywgeyB2YWx1ZTogdHJ1ZSB9KTtcbiBcdH07XG5cbiBcdC8vIGNyZWF0ZSBhIGZha2UgbmFtZXNwYWNlIG9iamVjdFxuIFx0Ly8gbW9kZSAmIDE6IHZhbHVlIGlzIGEgbW9kdWxlIGlkLCByZXF1aXJlIGl0XG4gXHQvLyBtb2RlICYgMjogbWVyZ2UgYWxsIHByb3BlcnRpZXMgb2YgdmFsdWUgaW50byB0aGUgbnNcbiBcdC8vIG1vZGUgJiA0OiByZXR1cm4gdmFsdWUgd2hlbiBhbHJlYWR5IG5zIG9iamVjdFxuIFx0Ly8gbW9kZSAmIDh8MTogYmVoYXZlIGxpa2UgcmVxdWlyZVxuIFx0X193ZWJwYWNrX3JlcXVpcmVfXy50ID0gZnVuY3Rpb24odmFsdWUsIG1vZGUpIHtcbiBcdFx0aWYobW9kZSAmIDEpIHZhbHVlID0gX193ZWJwYWNrX3JlcXVpcmVfXyh2YWx1ZSk7XG4gXHRcdGlmKG1vZGUgJiA4KSByZXR1cm4gdmFsdWU7XG4gXHRcdGlmKChtb2RlICYgNCkgJiYgdHlwZW9mIHZhbHVlID09PSAnb2JqZWN0JyAmJiB2YWx1ZSAmJiB2YWx1ZS5fX2VzTW9kdWxlKSByZXR1cm4gdmFsdWU7XG4gXHRcdHZhciBucyA9IE9iamVjdC5jcmVhdGUobnVsbCk7XG4gXHRcdF9fd2VicGFja19yZXF1aXJlX18ucihucyk7XG4gXHRcdE9iamVjdC5kZWZpbmVQcm9wZXJ0eShucywgJ2RlZmF1bHQnLCB7IGVudW1lcmFibGU6IHRydWUsIHZhbHVlOiB2YWx1ZSB9KTtcbiBcdFx0aWYobW9kZSAmIDIgJiYgdHlwZW9mIHZhbHVlICE9ICdzdHJpbmcnKSBmb3IodmFyIGtleSBpbiB2YWx1ZSkgX193ZWJwYWNrX3JlcXVpcmVfXy5kKG5zLCBrZXksIGZ1bmN0aW9uKGtleSkgeyByZXR1cm4gdmFsdWVba2V5XTsgfS5iaW5kKG51bGwsIGtleSkpO1xuIFx0XHRyZXR1cm4gbnM7XG4gXHR9O1xuXG4gXHQvLyBnZXREZWZhdWx0RXhwb3J0IGZ1bmN0aW9uIGZvciBjb21wYXRpYmlsaXR5IHdpdGggbm9uLWhhcm1vbnkgbW9kdWxlc1xuIFx0X193ZWJwYWNrX3JlcXVpcmVfXy5uID0gZnVuY3Rpb24obW9kdWxlKSB7XG4gXHRcdHZhciBnZXR0ZXIgPSBtb2R1bGUgJiYgbW9kdWxlLl9fZXNNb2R1bGUgP1xuIFx0XHRcdGZ1bmN0aW9uIGdldERlZmF1bHQoKSB7IHJldHVybiBtb2R1bGVbJ2RlZmF1bHQnXTsgfSA6XG4gXHRcdFx0ZnVuY3Rpb24gZ2V0TW9kdWxlRXhwb3J0cygpIHsgcmV0dXJuIG1vZHVsZTsgfTtcbiBcdFx0X193ZWJwYWNrX3JlcXVpcmVfXy5kKGdldHRlciwgJ2EnLCBnZXR0ZXIpO1xuIFx0XHRyZXR1cm4gZ2V0dGVyO1xuIFx0fTtcblxuIFx0Ly8gT2JqZWN0LnByb3RvdHlwZS5oYXNPd25Qcm9wZXJ0eS5jYWxsXG4gXHRfX3dlYnBhY2tfcmVxdWlyZV9fLm8gPSBmdW5jdGlvbihvYmplY3QsIHByb3BlcnR5KSB7IHJldHVybiBPYmplY3QucHJvdG90eXBlLmhhc093blByb3BlcnR5LmNhbGwob2JqZWN0LCBwcm9wZXJ0eSk7IH07XG5cbiBcdC8vIF9fd2VicGFja19wdWJsaWNfcGF0aF9fXG4gXHRfX3dlYnBhY2tfcmVxdWlyZV9fLnAgPSBcIi9wdWJsaWMvanMvXCI7XG5cblxuIFx0Ly8gTG9hZCBlbnRyeSBtb2R1bGUgYW5kIHJldHVybiBleHBvcnRzXG4gXHRyZXR1cm4gX193ZWJwYWNrX3JlcXVpcmVfXyhfX3dlYnBhY2tfcmVxdWlyZV9fLnMgPSBcIi4vcmVzb3VyY2VzL2pzL21lYWx2b3VjaGVyLmpzXCIpO1xuIiwiKFxuICAgIGZ1bmN0aW9uICh7XywgbWVhbHZvdWNoZXJTZXR0aW5ncywgalF1ZXJ5fSkge1xuICAgICAgICBpZiAoXy5pc0VtcHR5KG1lYWx2b3VjaGVyU2V0dGluZ3MpKSB7XG4gICAgICAgICAgICByZXR1cm5cbiAgICAgICAgfVxuXG4gICAgICAgIGNvbnN0IHttZXNzYWdlLCBwcm9kdWN0c1dpdGhDYXRlZ29yeSA9IDB9ID0gbWVhbHZvdWNoZXJTZXR0aW5nc1xuXG4gICAgICAgIGpRdWVyeSgnYm9keScpXG4gICAgICAgICAgICAub24oJ3VwZGF0ZWRfY2hlY2tvdXQnLCBmdW5jdGlvbiAoKSB7XG4gICAgICAgICAgICAgICAgbGV0IGJ1dHRvbiA9IGRvY3VtZW50LmdldEVsZW1lbnRCeUlkKFwicGxhY2Vfb3JkZXJcIik7XG4gICAgICAgICAgICAgICAgY29uc3QgZWxlbWVudCA9IGRvY3VtZW50LmdldEVsZW1lbnRCeUlkKFwicGF5bWVudFwiKTtcbiAgICAgICAgICAgICAgICBqUXVlcnkoJ2lucHV0W25hbWU9XCJwYXltZW50X21ldGhvZFwiXScpLmNoYW5nZShmdW5jdGlvbiAoKSB7XG4gICAgICAgICAgICAgICAgICAgIGlmIChqUXVlcnkoJ2Zvcm1bbmFtZT1cImNoZWNrb3V0XCJdIGlucHV0W25hbWU9XCJwYXltZW50X21ldGhvZFwiXTpjaGVja2VkJykudmFsKCkgPT09ICdtb2xsaWVfd2NfZ2F0ZXdheV9tZWFsdm91Y2hlcicpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIGlmIChwcm9kdWN0c1dpdGhDYXRlZ29yeSA9PT0gJzEnKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgYnV0dG9uLmRpc2FibGVkID0gdHJ1ZTtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBidXR0b24uY2xhc3NMaXN0LmFkZChcImJ1dHRvbkRpc2FibGVkXCIpO1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGxldCBkaXYgPSBkb2N1bWVudC5jcmVhdGVFbGVtZW50KCdkaXYnKTtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBkaXYuY2xhc3NMaXN0LmFkZCgnZXJyb3InKTtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBkaXYuc2V0QXR0cmlidXRlKCdpZCcsICdtZWFsdm91Y2hlci1lcnJvci1ub3RpY2UnKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGxldCBwID0gZG9jdW1lbnQuY3JlYXRlRWxlbWVudCgncCcpO1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHAuYXBwZW5kQ2hpbGQoZG9jdW1lbnQuY3JlYXRlVGV4dE5vZGUobWVzc2FnZSkpO1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGRpdi5hcHBlbmRDaGlsZChwKTtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBlbGVtZW50LnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGRpdiwgZWxlbWVudC5uZXh0U2libGluZyk7XG4gICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgICAgICAgICAgICBidXR0b24uZGlzYWJsZWQgPSBmYWxzZTtcbiAgICAgICAgICAgICAgICAgICAgICAgIGJ1dHRvbi5jbGFzc0xpc3QucmVtb3ZlKFwiYnV0dG9uRGlzYWJsZWRcIik7XG4gICAgICAgICAgICAgICAgICAgICAgICBsZXQgZXJyb3JOb3RpY2UgPSBkb2N1bWVudC5nZXRFbGVtZW50QnlJZCgnbWVhbHZvdWNoZXItZXJyb3Itbm90aWNlJylcbiAgICAgICAgICAgICAgICAgICAgICAgIGVycm9yTm90aWNlICYmIGVsZW1lbnQucGFyZW50Tm9kZS5yZW1vdmVDaGlsZChlcnJvck5vdGljZSlcbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIH0pO1xuICAgICAgICAgICAgfSk7XG4gICAgfVxuKVxuKFxuICAgIHdpbmRvd1xuKVxuXG4iXSwic291cmNlUm9vdCI6IiJ9
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: daanvm, danielhuesken, davdebcom, dinamiko, inpsyde, l.vangunst, ndijkstra, robin-mollie, wido, carmen222
3
  Tags: mollie, payments, payment gateway, woocommerce, credit card, ideal, bancontact, klarna, sofort, giropay, woocommerce subscriptions
4
  Requires at least: 3.8
5
- Tested up to: 5.5
6
- Stable tag: 5.11.0
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -181,6 +181,18 @@ Automatic updates should work like a charm; as always though, ensure you backup
181
 
182
  == Changelog ==
183
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  = 5.11.0 - 11-11-2020 =
185
 
186
  * Fix - Google analytics duplicated tracking events
2
  Contributors: daanvm, danielhuesken, davdebcom, dinamiko, inpsyde, l.vangunst, ndijkstra, robin-mollie, wido, carmen222
3
  Tags: mollie, payments, payment gateway, woocommerce, credit card, ideal, bancontact, klarna, sofort, giropay, woocommerce subscriptions
4
  Requires at least: 3.8
5
+ Tested up to: 5.6
6
+ Stable tag: 6.0
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
181
 
182
  == Changelog ==
183
 
184
+ = 6.0 - 16-12-2020 =
185
+
186
+ * Feature - New setting to display payment methods based on country
187
+ * Feature - Notice customers that support for WooCommerce under v3 is dropped
188
+ * Feature - Create mandate for recurring subscriptions
189
+ * Feature - New settings UI
190
+ * Fix - Guzzle library conflicts with other plugins
191
+ * Fix - API keys error with Mollie Components
192
+ * Fix - Voucher works with variation products
193
+ * Fix - Notice on missing voucher option (by @Timollie)
194
+ * Fix - Performance issues related to icons
195
+
196
  = 5.11.0 - 11-11-2020 =
197
 
198
  * Fix - Google analytics duplicated tracking events
src/Mollie/WC/ApplePayButton/AjaxRequests.php CHANGED
@@ -454,16 +454,24 @@ class Mollie_WC_ApplePayButton_AjaxRequests
454
  $base_location = wc_get_base_location();
455
  $shopCountryCode = $base_location['country'];
456
  WC()->customer->set_shipping_country(
457
- $address['country'] ?: $shopCountryCode
 
 
458
  );
459
  WC()->customer->set_billing_country(
460
- $address['country'] ?: $shopCountryCode
 
 
461
  );
462
  WC()->customer->set_shipping_postcode(
463
- $address['postcode'] ?: ''
 
 
464
  );
465
  WC()->customer->set_shipping_city(
466
- $address['city'] ?: ''
 
 
467
  );
468
  }
469
 
454
  $base_location = wc_get_base_location();
455
  $shopCountryCode = $base_location['country'];
456
  WC()->customer->set_shipping_country(
457
+ isset($address['country'])
458
+ ? $address['country']
459
+ : $shopCountryCode
460
  );
461
  WC()->customer->set_billing_country(
462
+ isset($address['country'])
463
+ ? $address['country']
464
+ : $shopCountryCode
465
  );
466
  WC()->customer->set_shipping_postcode(
467
+ isset($address['postcode'])
468
+ ? $address['postcode']
469
+ : $shopCountryCode
470
  );
471
  WC()->customer->set_shipping_city(
472
+ isset($address['city'])
473
+ ? $address['city']
474
+ : $shopCountryCode
475
  );
476
  }
477
 
src/Mollie/WC/Gateway/Abstract.php CHANGED
@@ -124,6 +124,13 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
124
  'default' => $this->getDefaultDescription(),
125
  'desc_tip' => true,
126
  ),
 
 
 
 
 
 
 
127
  );
128
 
129
  if ($this->paymentConfirmationAfterCoupleOfDays())
@@ -151,11 +158,9 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
151
  */
152
  public function getIconUrl()
153
  {
154
- $svg = $this->iconFactory()->svgUrlForPaymentMethod(
155
  $this->getMollieMethodId()
156
  );
157
-
158
- return $svg;
159
  }
160
 
161
  protected function _initIcon ()
@@ -179,20 +184,93 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
179
  $this->description = $description;
180
  }
181
 
182
- public function admin_options ()
183
  {
184
- if (!$this->enabled && count($this->errors))
185
- {
186
  echo '<div class="inline error"><p><strong>' . __('Gateway Disabled', 'mollie-payments-for-woocommerce') . '</strong>: '
187
- . implode('<br/>', $this->errors)
188
- . '</p></div>';
189
 
190
  return;
191
  }
192
 
193
- parent::admin_options();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  }
195
 
 
196
  /**
197
  * Check if this gateway can be used
198
  *
@@ -297,11 +375,14 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
297
  $currency = get_woocommerce_currency();
298
  }
299
 
300
- global $woocommerce;
301
- $billing_country = (version_compare(WC_VERSION, '3.0',
302
- '<')) ? $woocommerce->customer->get_country() : WC()->customer->get_billing_country();
303
- $billing_country = apply_filters(Mollie_WC_Plugin::PLUGIN_ID . '_is_available_billing_country_for_payment_gateways',
304
- $billing_country);
 
 
 
305
 
306
  // Get current locale for this user
307
  $payment_locale = Mollie_WC_Plugin::getSettingsHelper()->getPaymentLocale();
@@ -320,7 +401,12 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
320
 
321
  // For regular payments, check available payment methods, but ignore SSD gateway (not shown in checkout)
322
  $status = ($this->id !== 'mollie_wc_gateway_directdebit') ? $this->isAvailableMethodInCheckout($filters) : false;
323
-
 
 
 
 
 
324
  // Do extra checks if WooCommerce Subscriptions is installed
325
  if (class_exists('WC_Subscriptions') && class_exists('WC_Subscriptions_Admin')) {
326
 
@@ -402,7 +488,8 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
402
  * @return array
403
  */
404
  public function process_payment( $order_id ) {
405
- $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
 
406
 
407
  if ( ! $order ) {
408
  Mollie_WC_Plugin::debug( $this->id . ': Could not process payment, order ' . $order_id . ' not found.' );
@@ -432,7 +519,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
432
  //
433
  // PROCESS SUBSCRIPTION SWITCH - If this is a subscription switch and customer has a valid mandate, process the order internally
434
  //
435
- if ( ( '0.00' === $order->get_total() ) && ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order_id ) == true ) &&
436
  0 != $order->get_user_id() && ( wcs_order_contains_switch( $order ) )
437
  ) {
438
 
@@ -510,11 +597,19 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
510
  $test_mode
511
  );
512
 
513
- $this->saveMollieInfo( $order, $paymentObject );
514
 
515
- do_action( Mollie_WC_Plugin::PLUGIN_ID . '_payment_created', $paymentObject, $order );
516
- Mollie_WC_Plugin::debug( "{$this->id}: Mollie payment object {$paymentObject->id} ({$paymentObject->mode}) created for order {$orderId}" );
 
 
 
 
 
 
517
 
 
 
518
 
519
  // Update initial order status for payment methods where the payment status will be delivered after a couple of days.
520
  // See: https://www.mollie.com/nl/docs/status#expiry-times-per-payment-method
@@ -525,7 +620,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
525
  // This adds support for WooCommerce Deposits (by Webtomizer)
526
  // See https://github.com/mollie/WooCommerce/issues/138
527
 
528
- $order_status = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? $order->status : $order->get_status();
529
 
530
  if ( $order_status != 'wc-partially-paid ' ) {
531
 
@@ -576,7 +671,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
576
  * @param $payment
577
  */
578
  protected function saveMollieInfo( $order, $payment ) {
579
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
580
  // Get correct Mollie Payment Object
581
  $payment_object = Mollie_WC_Plugin::getPaymentFactoryHelper()->getPaymentObject( $payment );
582
 
@@ -610,7 +705,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
610
  */
611
  protected function getUserMollieCustomerId($order, $test_mode)
612
  {
613
- $order_customer_id = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? $order->customer_user : $order->get_customer_id();
614
 
615
  return Mollie_WC_Plugin::getDataHelper()->getUserMollieCustomerId($order_customer_id, $test_mode);
616
  }
@@ -641,7 +736,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
641
  {
642
  $order->update_status($new_status, $note);
643
 
644
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
645
 
646
  switch ($new_status)
647
  {
@@ -782,7 +877,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
782
  }
783
 
784
  // Log a message that webhook was called, doesn't mean the payment is actually processed
785
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
786
  Mollie_WC_Plugin::debug($this->id . ": Mollie payment object {$payment->id} (" . $payment->mode . ") webhook call for order {$order->id}.", true);
787
  } else {
788
  Mollie_WC_Plugin::debug($this->id . ": Mollie payment object {$payment->id} (" . $payment->mode . ") webhook call for order {$order->get_id()}.", true);
@@ -834,7 +929,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
834
  // Duplicate webhook call
835
  Mollie_WC_Plugin::setHttpResponseCode( 204 );
836
 
837
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
838
  $order_id = $order->id;
839
  } else {
840
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order );
@@ -852,7 +947,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
852
  protected function processRefunds(WC_Order $order, $payment)
853
  {
854
  // Get order ID in the correct way depending on WooCommerce version
855
- if (version_compare(WC_VERSION, '3.0', '<')) {
856
  $orderId = $order->id;
857
  } else {
858
  $orderId = $order->get_id();
@@ -988,7 +1083,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
988
  protected function processChargebacks(WC_Order $order, $payment)
989
  {
990
  // Get order ID in the correct way depending on WooCommerce version
991
- if (version_compare(WC_VERSION, '3.0', '<')) {
992
  $orderId = $order->id;
993
  } else {
994
  $orderId = $order->get_id();
@@ -1423,7 +1518,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
1423
  public function displayInstructions( WC_Order $order, $admin_instructions = false, $plain_text = false ) {
1424
 
1425
  if ( ! self::$alreadyDisplayedInstructions ) {
1426
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1427
  $order_payment_method = $order->payment_method;
1428
  } else {
1429
  $order_payment_method = $order->get_payment_method();
@@ -1434,7 +1529,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
1434
  return;
1435
  }
1436
 
1437
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1438
  $payment = Mollie_WC_Plugin::getPaymentObject()->getActiveMolliePayment( $order->id );
1439
  } else {
1440
  $payment = Mollie_WC_Plugin::getPaymentObject()->getActiveMolliePayment( $order->get_id() );
@@ -1516,7 +1611,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
1516
  return $title;
1517
  }
1518
 
1519
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1520
  $order_key_db = $order->order_key;
1521
  } else {
1522
  $order_key_db = $order->get_order_key();
@@ -1533,7 +1628,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
1533
 
1534
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order );
1535
 
1536
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1537
  $order_payment_method = $order->payment_method;
1538
  } else {
1539
  $order_payment_method = $order->get_payment_method();
@@ -1552,7 +1647,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
1552
  }
1553
 
1554
  // Checks and title for pending/open orders
1555
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1556
  $payment = Mollie_WC_Plugin::getPaymentObject()->getActiveMolliePayment( $order->id );
1557
  } else {
1558
  $payment = Mollie_WC_Plugin::getPaymentObject()->getActiveMolliePayment( $order->get_id() );
@@ -1605,7 +1700,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
1605
  return $text;
1606
  }
1607
 
1608
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1609
  $order_payment_method = $order->payment_method;
1610
  } else {
1611
  $order_payment_method = $order->get_payment_method();
@@ -1633,7 +1728,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
1633
  */
1634
  protected function orderNeedsPayment( WC_Order $order ) {
1635
 
1636
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1637
  $order_id = $order->id;
1638
  } else {
1639
  $order_id = $order->get_id();
@@ -1905,7 +2000,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
1905
  */
1906
  protected function isOrderPaidAndProcessed( WC_Order $order ) {
1907
 
1908
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1909
  $order_id = $order->id;
1910
  $paid_and_processed = get_post_meta( $order_id, '_mollie_paid_and_processed', $single = true );
1911
  } else {
@@ -1921,7 +2016,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
1921
  */
1922
  protected function isOrderPaidByOtherGateway( WC_Order $order ) {
1923
 
1924
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1925
  $order_id = $order->id;
1926
  $paid_by_other_gateway = get_post_meta( $order_id, '_mollie_paid_by_other_gateway', $single = true );
1927
  } else {
@@ -2018,7 +2113,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
2018
  public function get_transaction_url( $order ) {
2019
 
2020
  // Get order ID in the correct way depending on WooCommerce version
2021
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
2022
  $resource = (get_post_meta( $order->id, '_mollie_order_id', true )) ? 'orders' : 'payments';
2023
  } else {
2024
  $resource = ($order->get_meta( '_mollie_order_id', true )) ? 'orders' : 'payments';
@@ -2097,30 +2192,12 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
2097
  {
2098
  static $factory = null;
2099
  if ($factory === null){
2100
- $paymentMethods = array_filter((array)mollieWooCommerceAvailablePaymentMethods());
2101
- $paymentMethodsImages = $this->associativePaymentMethodsImages($paymentMethods);
2102
- $factory = new Mollie_WC_Helper_PaymentMethodsIconUrl($paymentMethodsImages);
2103
  }
2104
 
2105
  return $factory;
2106
  }
2107
 
2108
- /**
2109
- * @param $paymentMethods
2110
- * @return array
2111
- */
2112
- protected function associativePaymentMethodsImages(array $paymentMethods)
2113
- {
2114
- $list = [];
2115
- if($paymentMethods){
2116
- $listIds = array_column($paymentMethods, 'id');
2117
- $listImg = array_column($paymentMethods, 'image');
2118
- $list = array_combine($listIds, $listImg);
2119
- }
2120
-
2121
- return $list;
2122
- }
2123
-
2124
  /**
2125
  * @param $order_id
2126
  * @param $order_key
@@ -2446,7 +2523,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
2446
  }
2447
  } catch (Mollie\Api\Exceptions\ApiException $e) {
2448
  // Don't try to create a Mollie Payment for Klarna payment methods
2449
- $order_payment_method = (version_compare(WC_VERSION, '3.0', '<'))
2450
  ? $order->payment_method : $order->get_payment_method();
2451
 
2452
  if ($order_payment_method == 'mollie_wc_gateway_klarnapaylater'
124
  'default' => $this->getDefaultDescription(),
125
  'desc_tip' => true,
126
  ),
127
+ 'allowed_countries' => array(
128
+ 'title' => __( 'Sell to specific countries', 'mollie-payments-for-woocommerce' ),
129
+ 'desc' => '',
130
+ 'css' => 'min-width: 350px;',
131
+ 'default' => [],
132
+ 'type' => 'multi_select_countries',
133
+ ),
134
  );
135
 
136
  if ($this->paymentConfirmationAfterCoupleOfDays())
158
  */
159
  public function getIconUrl()
160
  {
161
+ return $this->iconFactory()->svgUrlForPaymentMethod(
162
  $this->getMollieMethodId()
163
  );
 
 
164
  }
165
 
166
  protected function _initIcon ()
184
  $this->description = $description;
185
  }
186
 
187
+ public function admin_options()
188
  {
189
+ if (!$this->enabled && count($this->errors)) {
 
190
  echo '<div class="inline error"><p><strong>' . __('Gateway Disabled', 'mollie-payments-for-woocommerce') . '</strong>: '
191
+ . implode('<br/>', $this->errors)
192
+ . '</p></div>';
193
 
194
  return;
195
  }
196
 
197
+ $html = '';
198
+ foreach ($this->get_form_fields() as $k => $v) {
199
+ $type = $this->get_field_type($v);
200
+
201
+ if ($type === 'multi_select_countries') {
202
+ $html .= $this->multiSelectCountry();
203
+ } else {
204
+ if (method_exists($this, 'generate_' . $type . '_html')) {
205
+ $html .= $this->{'generate_' . $type . '_html'}($k, $v);
206
+ } else {
207
+ $html .= $this->generate_text_html($k, $v);
208
+ }
209
+ }
210
+ }
211
+
212
+ echo '<h2>' . esc_html($this->get_method_title());
213
+ wc_back_link(__('Return to payments', 'mollie-payments-for-woocommerce'), admin_url('admin.php?page=wc-settings&tab=checkout'));
214
+ echo '</h2>';
215
+ echo wp_kses_post(wpautop($this->get_method_description()));
216
+ echo '<table class="form-table">'
217
+ .
218
+ $html
219
+ .
220
+ '</table>';
221
+ }
222
+
223
+ public function multiSelectCountry()
224
+ {
225
+
226
+ $selections = (array)$this->get_option('allowed_countries', []);
227
+ $gatewayId = $this->getMollieMethodId();
228
+ $id = 'mollie_wc_gateway_'.$gatewayId.'_allowed_countries';
229
+ $title = __('Sell to specific countries', 'mollie-payments-for-woocommerce');
230
+ $description = '<span class="description">' . wp_kses_post($this->get_option('description', '')) . '</span>';
231
+ $countries = WC()->countries->countries;
232
+ asort($countries);
233
+ ob_start();
234
+ ?>
235
+ <tr valign="top">
236
+ <th scope="row" class="titledesc">
237
+ <label for="<?php echo esc_attr($id); ?>"><?php echo esc_html($title); ?> </label>
238
+ </th>
239
+ <td class="forminp">
240
+ <select multiple="multiple" name="<?php echo esc_attr($id); ?>[]" style="width:350px"
241
+ data-placeholder="<?php esc_attr_e('Choose countries&hellip;', 'mollie-payments-for-woocommerce'); ?>"
242
+ aria-label="<?php esc_attr_e('Country', 'mollie-payments-for-woocommerce'); ?>" class="wc-enhanced-select">
243
+ <?php
244
+ if (!empty($countries)) {
245
+ foreach ($countries as $key => $val) {
246
+ echo '<option value="' . esc_attr($key) . '"' . wc_selected($key, $selections) . '>' . esc_html($val) . '</option>';
247
+ }
248
+ }
249
+ ?>
250
+ </select> <?php echo ($description) ? $description : ''; ?> <br/><a class="select_all button"
251
+ href="#"><?php esc_html_e('Select all', 'mollie-payments-for-woocommerce'); ?></a>
252
+ <a class="select_none button" href="#"><?php esc_html_e('Select none', 'mollie-payments-for-woocommerce'); ?></a>
253
+ </td>
254
+ </tr>
255
+ <?php
256
+
257
+ return ob_get_clean();
258
+ }
259
+
260
+ /**
261
+ * Validates the multiselect country field.
262
+ * Overrides the one called by get_field_value() on WooCommerce abstract-wc-settings-api.php
263
+ *
264
+ * @param $key
265
+ * @param $value
266
+ * @return array|string
267
+ */
268
+ public function validate_multi_select_countries_field($key, $value)
269
+ {
270
+ return is_array($value) ? array_map('wc_clean', array_map('stripslashes', $value)) : '';
271
  }
272
 
273
+
274
  /**
275
  * Check if this gateway can be used
276
  *
375
  $currency = get_woocommerce_currency();
376
  }
377
 
378
+ global $woocommerce;
379
+ $billing_country = version_compare(mollieWooCommerceWcVersion(), '3.0', '<')
380
+ ? $woocommerce->customer->get_country()
381
+ : WC()->customer->get_billing_country();
382
+ $billing_country = apply_filters(
383
+ Mollie_WC_Plugin::PLUGIN_ID . '_is_available_billing_country_for_payment_gateways',
384
+ $billing_country
385
+ );
386
 
387
  // Get current locale for this user
388
  $payment_locale = Mollie_WC_Plugin::getSettingsHelper()->getPaymentLocale();
401
 
402
  // For regular payments, check available payment methods, but ignore SSD gateway (not shown in checkout)
403
  $status = ($this->id !== 'mollie_wc_gateway_directdebit') ? $this->isAvailableMethodInCheckout($filters) : false;
404
+ $allowedCountries = $this->get_option('allowed_countries', []);
405
+ //if no country is selected then this does not apply
406
+ $bCountryIsAllowed = empty($allowedCountries) ? true : in_array($billing_country, $allowedCountries);
407
+ if (!$bCountryIsAllowed) {
408
+ $status = false;
409
+ }
410
  // Do extra checks if WooCommerce Subscriptions is installed
411
  if (class_exists('WC_Subscriptions') && class_exists('WC_Subscriptions_Admin')) {
412
 
488
  * @return array
489
  */
490
  public function process_payment( $order_id ) {
491
+ $dataHelper = Mollie_WC_Plugin::getDataHelper();
492
+ $order = $dataHelper->getWcOrder( $order_id );
493
 
494
  if ( ! $order ) {
495
  Mollie_WC_Plugin::debug( $this->id . ': Could not process payment, order ' . $order_id . ' not found.' );
519
  //
520
  // PROCESS SUBSCRIPTION SWITCH - If this is a subscription switch and customer has a valid mandate, process the order internally
521
  //
522
+ if ( ( '0.00' === $order->get_total() ) && ( Mollie_WC_Plugin::getDataHelper()->isWcSubscription($order_id ) == true ) &&
523
  0 != $order->get_user_id() && ( wcs_order_contains_switch( $order ) )
524
  ) {
525
 
597
  $test_mode
598
  );
599
 
600
+ $this->saveMollieInfo( $order, $paymentObject );
601
 
602
+ if ($dataHelper->isSubscription($orderId)) {
603
+ $mandates = Mollie_WC_Plugin::getApiHelper()->getApiClient( $test_mode )->customers->get( $customer_id )->mandates();
604
+ $mandate = $mandates[0];
605
+ $customerId = $mandate->customerId;
606
+ $mandateId = $mandate->id;
607
+ Mollie_WC_Plugin::debug("Mollie Subscription in the order: customer id {$customerId} and mandate id {$mandateId} ");
608
+ do_action(Mollie_WC_Plugin::PLUGIN_ID . '_after_mandate_created', $paymentObject, $order, $customerId, $mandateId);
609
+ }
610
 
611
+ do_action( Mollie_WC_Plugin::PLUGIN_ID . '_payment_created', $paymentObject, $order );
612
+ Mollie_WC_Plugin::debug( $this->id . ': Mollie payment object ' . $paymentObject->id . ' (' . $paymentObject->mode . ') created for order ' . $orderId );
613
 
614
  // Update initial order status for payment methods where the payment status will be delivered after a couple of days.
615
  // See: https://www.mollie.com/nl/docs/status#expiry-times-per-payment-method
620
  // This adds support for WooCommerce Deposits (by Webtomizer)
621
  // See https://github.com/mollie/WooCommerce/issues/138
622
 
623
+ $order_status = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? $order->status : $order->get_status();
624
 
625
  if ( $order_status != 'wc-partially-paid ' ) {
626
 
671
  * @param $payment
672
  */
673
  protected function saveMollieInfo( $order, $payment ) {
674
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
675
  // Get correct Mollie Payment Object
676
  $payment_object = Mollie_WC_Plugin::getPaymentFactoryHelper()->getPaymentObject( $payment );
677
 
705
  */
706
  protected function getUserMollieCustomerId($order, $test_mode)
707
  {
708
+ $order_customer_id = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? $order->customer_user : $order->get_customer_id();
709
 
710
  return Mollie_WC_Plugin::getDataHelper()->getUserMollieCustomerId($order_customer_id, $test_mode);
711
  }
736
  {
737
  $order->update_status($new_status, $note);
738
 
739
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
740
 
741
  switch ($new_status)
742
  {
877
  }
878
 
879
  // Log a message that webhook was called, doesn't mean the payment is actually processed
880
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
881
  Mollie_WC_Plugin::debug($this->id . ": Mollie payment object {$payment->id} (" . $payment->mode . ") webhook call for order {$order->id}.", true);
882
  } else {
883
  Mollie_WC_Plugin::debug($this->id . ": Mollie payment object {$payment->id} (" . $payment->mode . ") webhook call for order {$order->get_id()}.", true);
929
  // Duplicate webhook call
930
  Mollie_WC_Plugin::setHttpResponseCode( 204 );
931
 
932
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
933
  $order_id = $order->id;
934
  } else {
935
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order );
947
  protected function processRefunds(WC_Order $order, $payment)
948
  {
949
  // Get order ID in the correct way depending on WooCommerce version
950
+ if (version_compare(mollieWooCommerceWcVersion(), '3.0', '<')) {
951
  $orderId = $order->id;
952
  } else {
953
  $orderId = $order->get_id();
1083
  protected function processChargebacks(WC_Order $order, $payment)
1084
  {
1085
  // Get order ID in the correct way depending on WooCommerce version
1086
+ if (version_compare(mollieWooCommerceWcVersion(), '3.0', '<')) {
1087
  $orderId = $order->id;
1088
  } else {
1089
  $orderId = $order->get_id();
1518
  public function displayInstructions( WC_Order $order, $admin_instructions = false, $plain_text = false ) {
1519
 
1520
  if ( ! self::$alreadyDisplayedInstructions ) {
1521
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
1522
  $order_payment_method = $order->payment_method;
1523
  } else {
1524
  $order_payment_method = $order->get_payment_method();
1529
  return;
1530
  }
1531
 
1532
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
1533
  $payment = Mollie_WC_Plugin::getPaymentObject()->getActiveMolliePayment( $order->id );
1534
  } else {
1535
  $payment = Mollie_WC_Plugin::getPaymentObject()->getActiveMolliePayment( $order->get_id() );
1611
  return $title;
1612
  }
1613
 
1614
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
1615
  $order_key_db = $order->order_key;
1616
  } else {
1617
  $order_key_db = $order->get_order_key();
1628
 
1629
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order );
1630
 
1631
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
1632
  $order_payment_method = $order->payment_method;
1633
  } else {
1634
  $order_payment_method = $order->get_payment_method();
1647
  }
1648
 
1649
  // Checks and title for pending/open orders
1650
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
1651
  $payment = Mollie_WC_Plugin::getPaymentObject()->getActiveMolliePayment( $order->id );
1652
  } else {
1653
  $payment = Mollie_WC_Plugin::getPaymentObject()->getActiveMolliePayment( $order->get_id() );
1700
  return $text;
1701
  }
1702
 
1703
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
1704
  $order_payment_method = $order->payment_method;
1705
  } else {
1706
  $order_payment_method = $order->get_payment_method();
1728
  */
1729
  protected function orderNeedsPayment( WC_Order $order ) {
1730
 
1731
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
1732
  $order_id = $order->id;
1733
  } else {
1734
  $order_id = $order->get_id();
2000
  */
2001
  protected function isOrderPaidAndProcessed( WC_Order $order ) {
2002
 
2003
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
2004
  $order_id = $order->id;
2005
  $paid_and_processed = get_post_meta( $order_id, '_mollie_paid_and_processed', $single = true );
2006
  } else {
2016
  */
2017
  protected function isOrderPaidByOtherGateway( WC_Order $order ) {
2018
 
2019
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
2020
  $order_id = $order->id;
2021
  $paid_by_other_gateway = get_post_meta( $order_id, '_mollie_paid_by_other_gateway', $single = true );
2022
  } else {
2113
  public function get_transaction_url( $order ) {
2114
 
2115
  // Get order ID in the correct way depending on WooCommerce version
2116
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
2117
  $resource = (get_post_meta( $order->id, '_mollie_order_id', true )) ? 'orders' : 'payments';
2118
  } else {
2119
  $resource = ($order->get_meta( '_mollie_order_id', true )) ? 'orders' : 'payments';
2192
  {
2193
  static $factory = null;
2194
  if ($factory === null){
2195
+ $factory = new Mollie_WC_Helper_PaymentMethodsIconUrl();
 
 
2196
  }
2197
 
2198
  return $factory;
2199
  }
2200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2201
  /**
2202
  * @param $order_id
2203
  * @param $order_key
2523
  }
2524
  } catch (Mollie\Api\Exceptions\ApiException $e) {
2525
  // Don't try to create a Mollie Payment for Klarna payment methods
2526
+ $order_payment_method = (version_compare(mollieWooCommerceWcVersion(), '3.0', '<'))
2527
  ? $order->payment_method : $order->get_payment_method();
2528
 
2529
  if ($order_payment_method == 'mollie_wc_gateway_klarnapaylater'
src/Mollie/WC/Gateway/AbstractSepaRecurring.php CHANGED
@@ -95,7 +95,7 @@ abstract class Mollie_WC_Gateway_AbstractSepaRecurring extends Mollie_WC_Gateway
95
  $period = 'P'.self::WAITING_CONFIRMATION_PERIOD_DAYS . 'D';
96
  $confirmationDate->add(new DateInterval($period));
97
 
98
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
99
  $wpdb->insert(
100
  $wpdb->mollie_pending_payment,
101
  array(
@@ -123,7 +123,7 @@ abstract class Mollie_WC_Gateway_AbstractSepaRecurring extends Mollie_WC_Gateway
123
  {
124
  $payment_method_title = parent::getPaymentMethodTitle($payment);
125
  $orderId = $payment->metadata->order_id;
126
- if ($orderId && Mollie_WC_Plugin::getDataHelper()->isSubscription($orderId) && $payment->method == $this->getRecurringMollieMethodId()){
127
  $payment_method_title = $this->getRecurringMollieMethodTitle();
128
  }
129
 
@@ -136,12 +136,12 @@ abstract class Mollie_WC_Gateway_AbstractSepaRecurring extends Mollie_WC_Gateway
136
  */
137
  protected function handlePaidOrderWebhook($order, $payment)
138
  {
139
- $orderId = version_compare(WC_VERSION, '3.0', '<')
140
  ? $order->id
141
  : $order->get_id();
142
 
143
  // Duplicate webhook call
144
- if (Mollie_WC_Plugin::getDataHelper()->isSubscription($orderId)
145
  && isset($payment->sequenceType)
146
  && $payment->sequenceType == SequenceType::SEQUENCETYPE_RECURRING
147
  ) {
95
  $period = 'P'.self::WAITING_CONFIRMATION_PERIOD_DAYS . 'D';
96
  $confirmationDate->add(new DateInterval($period));
97
 
98
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
99
  $wpdb->insert(
100
  $wpdb->mollie_pending_payment,
101
  array(
123
  {
124
  $payment_method_title = parent::getPaymentMethodTitle($payment);
125
  $orderId = $payment->metadata->order_id;
126
+ if ($orderId && Mollie_WC_Plugin::getDataHelper()->isWcSubscription($orderId) && $payment->method == $this->getRecurringMollieMethodId()){
127
  $payment_method_title = $this->getRecurringMollieMethodTitle();
128
  }
129
 
136
  */
137
  protected function handlePaidOrderWebhook($order, $payment)
138
  {
139
+ $orderId = version_compare(mollieWooCommerceWcVersion(), '3.0', '<')
140
  ? $order->id
141
  : $order->get_id();
142
 
143
  // Duplicate webhook call
144
+ if (Mollie_WC_Plugin::getDataHelper()->isWcSubscription($orderId)
145
  && isset($payment->sequenceType)
146
  && $payment->sequenceType == SequenceType::SEQUENCETYPE_RECURRING
147
  ) {
src/Mollie/WC/Gateway/AbstractSubscription.php CHANGED
@@ -76,7 +76,7 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
76
  $return_url = $this->getReturnUrl( $order );
77
  $webhook_url = $this->getWebhookUrl( $order );
78
 
79
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
80
 
81
  $data = array_filter( array (
82
  'amount' => array (
@@ -127,17 +127,17 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
127
  public function update_subscription_status_for_direct_debit( $renewal_order ) {
128
 
129
  // Get renewal order id
130
- $renewal_order_id = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? $renewal_order->id : $renewal_order->get_id();
131
 
132
  // Make sure order is a renewal order with subscription
133
  if ( wcs_order_contains_renewal( $renewal_order_id ) ) {
134
 
135
  // Get required information about order and subscription
136
  $renewal_order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $renewal_order_id );
137
- $mollie_payment_id = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? get_post_meta( $renewal_order_id, '_mollie_payment_id', $single = true ) : $renewal_order->get_meta( '_mollie_payment_id', $single = true );
138
- $subscription_id = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? get_post_meta( $renewal_order_id, '_subscription_renewal', $single = true ) : $renewal_order->get_meta( '_subscription_renewal', $single = true );
139
  $subscription = wcs_get_subscription( $subscription_id );
140
- $current_method = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? get_post_meta( $renewal_order_id, '_payment_method', $single = true ) : $subscription->get_payment_method();
141
 
142
  // Check that subscription status isn't already active
143
  if ( $subscription->get_status() == 'active' ) {
@@ -212,7 +212,7 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
212
  return array ( 'result' => 'failure' );
213
  }
214
 
215
- $renewal_order_id = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? $renewal_order->id : $renewal_order->get_id();
216
 
217
  // Allow developers to hook into the subscription renewal payment before it processed
218
  do_action(Mollie_WC_Plugin::PLUGIN_ID . '_before_renewal_payment_created', $renewal_order);
@@ -234,8 +234,8 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
234
 
235
  $subscriptions = wcs_get_subscriptions_for_renewal_order( $renewal_order->get_id() );
236
  $subscription = array_pop( $subscriptions ); // Just need one valid subscription
237
- $subscription_id = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? $subscription->id : $subscription->get_id();
238
- $subscription_mollie_payment_id = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? get_post_meta( $subscription_id, '_mollie_payment_id', $single = true ) : $subscription->get_meta( '_mollie_payment_id' );
239
 
240
  if ( ! empty( $subscription_mollie_payment_id ) && ! empty( $subscription ) ) {
241
  $customer_id = $this->restore_mollie_customer_id_and_mandate( $customer_id, $subscription_mollie_payment_id, $subscription );
@@ -335,7 +335,7 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
335
  {
336
  $result = false;
337
  $subscriptions = array();
338
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
339
  if ( wcs_order_contains_renewal( $order->id) ) {
340
  $subscriptions = wcs_get_subscriptions_for_renewal_order( $order->id );
341
  }
@@ -404,7 +404,7 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
404
 
405
  $current_method = get_post_meta( $renewal_order_id, '_payment_method', $single = true );
406
  if ( in_array( $current_method, $methods_needing_update ) && $payment->method == 'directdebit' ) {
407
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
408
  update_post_meta( $renewal_order_id, '_payment_method', 'mollie_wc_gateway_directdebit' );
409
  update_post_meta( $renewal_order_id, '_payment_method_title', 'SEPA Direct Debit' );
410
  } else {
@@ -435,7 +435,7 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
435
  */
436
  public function getOrderMollieCustomerId($order)
437
  {
438
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
439
  $customerId = get_post_meta( $order->id, '_mollie_customer_id', true );
440
  } else {
441
  $customerId = $order->get_meta( '_mollie_customer_id', true );
@@ -481,7 +481,7 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
481
  */
482
  public function delete_renewal_meta( $renewal_order )
483
  {
484
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
485
  delete_post_meta( $renewal_order->id, '_mollie_payment_id' );
486
  delete_post_meta( $renewal_order->id, '_mollie_cancelled_payment_id' );
487
  } else {
@@ -502,7 +502,7 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
502
  */
503
  public function add_subscription_payment_meta( $payment_meta, $subscription ) {
504
 
505
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
506
  $mollie_payment_id = get_post_meta( $subscription->id, '_mollie_payment_id', true );
507
  $mollie_payment_mode = get_post_meta( $subscription->id, '_mollie_payment_mode', true );
508
  $mollie_customer_id = get_post_meta( $subscription->id, '_mollie_customer_id', true );
@@ -554,7 +554,7 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
554
  */
555
  public function update_failing_payment_method( $subscription, $renewal_order )
556
  {
557
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
558
  update_post_meta( $subscription->id, '_mollie_customer_id', $renewal_order->mollie_customer_id );
559
  update_post_meta( $subscription->id, '_mollie_payment_id', $renewal_order->mollie_payment_id );
560
  } else {
@@ -574,7 +574,7 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
574
  */
575
  public function process_payment ($order_id)
576
  {
577
- $isSubscription = Mollie_WC_Plugin::getDataHelper()->isSubscription($order_id);
578
  if ($isSubscription){
579
  $result = $this->process_subscription_payment($order_id);
580
  return $result;
@@ -596,7 +596,7 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
596
 
597
  try {
598
  // Get subscription ID
599
- $subscription_id = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? $subscription->id : $subscription->get_id();
600
 
601
  // Get full payment object from Mollie API
602
  $payment_object_resource = Mollie_WC_Plugin::getPaymentFactoryHelper()->getPaymentObject( $mollie_payment_id );
@@ -682,8 +682,8 @@ abstract class Mollie_WC_Gateway_AbstractSubscription extends Mollie_WC_Gateway_
682
  // consumerName can be empty for Bancontact payments, in that case use the WooCommerce customer name
683
  if ( empty( $options['consumerName'] ) ) {
684
 
685
- $billing_first_name = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? $subscription->billing_first_name : $subscription->get_billing_first_name();
686
- $billing_last_name = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? $subscription->billing_last_name : $subscription->get_billing_last_name();
687
 
688
  $options['consumerName'] = $billing_first_name . ' ' . $billing_last_name;
689
  }
76
  $return_url = $this->getReturnUrl( $order );
77
  $webhook_url = $this->getWebhookUrl( $order );
78
 
79
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
80
 
81
  $data = array_filter( array (
82
  'amount' => array (
127
  public function update_subscription_status_for_direct_debit( $renewal_order ) {
128
 
129
  // Get renewal order id
130
+ $renewal_order_id = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? $renewal_order->id : $renewal_order->get_id();
131
 
132
  // Make sure order is a renewal order with subscription
133
  if ( wcs_order_contains_renewal( $renewal_order_id ) ) {
134
 
135
  // Get required information about order and subscription
136
  $renewal_order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $renewal_order_id );
137
+ $mollie_payment_id = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? get_post_meta( $renewal_order_id, '_mollie_payment_id', $single = true ) : $renewal_order->get_meta( '_mollie_payment_id', $single = true );
138
+ $subscription_id = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? get_post_meta( $renewal_order_id, '_subscription_renewal', $single = true ) : $renewal_order->get_meta( '_subscription_renewal', $single = true );
139
  $subscription = wcs_get_subscription( $subscription_id );
140
+ $current_method = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? get_post_meta( $renewal_order_id, '_payment_method', $single = true ) : $subscription->get_payment_method();
141
 
142
  // Check that subscription status isn't already active
143
  if ( $subscription->get_status() == 'active' ) {
212
  return array ( 'result' => 'failure' );
213
  }
214
 
215
+ $renewal_order_id = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? $renewal_order->id : $renewal_order->get_id();
216
 
217
  // Allow developers to hook into the subscription renewal payment before it processed
218
  do_action(Mollie_WC_Plugin::PLUGIN_ID . '_before_renewal_payment_created', $renewal_order);
234
 
235
  $subscriptions = wcs_get_subscriptions_for_renewal_order( $renewal_order->get_id() );
236
  $subscription = array_pop( $subscriptions ); // Just need one valid subscription
237
+ $subscription_id = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? $subscription->id : $subscription->get_id();
238
+ $subscription_mollie_payment_id = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? get_post_meta( $subscription_id, '_mollie_payment_id', $single = true ) : $subscription->get_meta( '_mollie_payment_id' );
239
 
240
  if ( ! empty( $subscription_mollie_payment_id ) && ! empty( $subscription ) ) {
241
  $customer_id = $this->restore_mollie_customer_id_and_mandate( $customer_id, $subscription_mollie_payment_id, $subscription );
335
  {
336
  $result = false;
337
  $subscriptions = array();
338
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
339
  if ( wcs_order_contains_renewal( $order->id) ) {
340
  $subscriptions = wcs_get_subscriptions_for_renewal_order( $order->id );
341
  }
404
 
405
  $current_method = get_post_meta( $renewal_order_id, '_payment_method', $single = true );
406
  if ( in_array( $current_method, $methods_needing_update ) && $payment->method == 'directdebit' ) {
407
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
408
  update_post_meta( $renewal_order_id, '_payment_method', 'mollie_wc_gateway_directdebit' );
409
  update_post_meta( $renewal_order_id, '_payment_method_title', 'SEPA Direct Debit' );
410
  } else {
435
  */
436
  public function getOrderMollieCustomerId($order)
437
  {
438
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
439
  $customerId = get_post_meta( $order->id, '_mollie_customer_id', true );
440
  } else {
441
  $customerId = $order->get_meta( '_mollie_customer_id', true );
481
  */
482
  public function delete_renewal_meta( $renewal_order )
483
  {
484
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
485
  delete_post_meta( $renewal_order->id, '_mollie_payment_id' );
486
  delete_post_meta( $renewal_order->id, '_mollie_cancelled_payment_id' );
487
  } else {
502
  */
503
  public function add_subscription_payment_meta( $payment_meta, $subscription ) {
504
 
505
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
506
  $mollie_payment_id = get_post_meta( $subscription->id, '_mollie_payment_id', true );
507
  $mollie_payment_mode = get_post_meta( $subscription->id, '_mollie_payment_mode', true );
508
  $mollie_customer_id = get_post_meta( $subscription->id, '_mollie_customer_id', true );
554
  */
555
  public function update_failing_payment_method( $subscription, $renewal_order )
556
  {
557
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
558
  update_post_meta( $subscription->id, '_mollie_customer_id', $renewal_order->mollie_customer_id );
559
  update_post_meta( $subscription->id, '_mollie_payment_id', $renewal_order->mollie_payment_id );
560
  } else {
574
  */
575
  public function process_payment ($order_id)
576
  {
577
+ $isSubscription = Mollie_WC_Plugin::getDataHelper()->isWcSubscription($order_id);
578
  if ($isSubscription){
579
  $result = $this->process_subscription_payment($order_id);
580
  return $result;
596
 
597
  try {
598
  // Get subscription ID
599
+ $subscription_id = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? $subscription->id : $subscription->get_id();
600
 
601
  // Get full payment object from Mollie API
602
  $payment_object_resource = Mollie_WC_Plugin::getPaymentFactoryHelper()->getPaymentObject( $mollie_payment_id );
682
  // consumerName can be empty for Bancontact payments, in that case use the WooCommerce customer name
683
  if ( empty( $options['consumerName'] ) ) {
684
 
685
+ $billing_first_name = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? $subscription->billing_first_name : $subscription->get_billing_first_name();
686
+ $billing_last_name = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? $subscription->billing_last_name : $subscription->get_billing_last_name();
687
 
688
  $options['consumerName'] = $billing_first_name . ' ' . $billing_last_name;
689
  }
src/Mollie/WC/Helper/Api.php CHANGED
@@ -20,13 +20,14 @@ class Mollie_WC_Helper_Api {
20
  $this->settings_helper = $settings_helper;
21
  }
22
 
23
- /**
24
- * @param bool $test_mode
25
- *
26
- * @return \Mollie\Api\MollieApiClient
27
- * @throws \Mollie\Api\Exceptions\ApiException
28
- */
29
- public function getApiClient( $test_mode = false ) {
 
30
  global $wp_version;
31
 
32
  $api_key = $this->settings_helper->getApiKey( $test_mode );
@@ -41,7 +42,7 @@ class Mollie_WC_Helper_Api {
41
  throw new \Mollie\Api\Exceptions\ApiException( sprintf(__( "Invalid API key(s). Get them on the %sDevelopers page in the Mollie dashboard%s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters.", 'mollie-payments-for-woocommerce' ), '<a href="https://www.mollie.com/dashboard/developers/api-keys" target="_blank">', '</a>' ) );
42
  }
43
 
44
- if (empty(self::$api_client)) {
45
  $client = new MollieApiClient();
46
  $client->setApiKey( $api_key );
47
  $client->setApiEndpoint( self::getApiEndpoint() );
20
  $this->settings_helper = $settings_helper;
21
  }
22
 
23
+ /**
24
+ * @param bool $test_mode
25
+ * @param bool $needToUpdateApiKey If the apiKey was updated discard the old instance, and create a new one with the new key.
26
+ *
27
+ * @return \Mollie\Api\MollieApiClient
28
+ * @throws \Mollie\Api\Exceptions\ApiException
29
+ */
30
+ public function getApiClient( $test_mode = false, $needToUpdateApiKey = false ) {
31
  global $wp_version;
32
 
33
  $api_key = $this->settings_helper->getApiKey( $test_mode );
42
  throw new \Mollie\Api\Exceptions\ApiException( sprintf(__( "Invalid API key(s). Get them on the %sDevelopers page in the Mollie dashboard%s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters.", 'mollie-payments-for-woocommerce' ), '<a href="https://www.mollie.com/dashboard/developers/api-keys" target="_blank">', '</a>' ) );
43
  }
44
 
45
+ if (empty(self::$api_client) || $needToUpdateApiKey) {
46
  $client = new MollieApiClient();
47
  $client->setApiKey( $api_key );
48
  $client->setApiEndpoint( self::getApiEndpoint() );
src/Mollie/WC/Helper/Data.php CHANGED
@@ -186,7 +186,7 @@ class Mollie_WC_Helper_Data
186
  }
187
  }
188
 
189
- $order_payment_method = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? $order->payment_method : $order->get_payment_method();
190
 
191
  return isset($payment_gateways[$order_payment_method]) ? $payment_gateways[$order_payment_method] : false;
192
  }
@@ -429,7 +429,7 @@ class Mollie_WC_Helper_Data
429
  */
430
  public function setUserMollieCustomerId( $user_id, $customer_id ) {
431
  if ( ! empty( $customer_id ) ) {
432
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
433
  update_user_meta( $user_id, 'mollie_customer_id', $customer_id );
434
  } else {
435
  try {
@@ -457,7 +457,7 @@ class Mollie_WC_Helper_Data
457
  {
458
  if (!empty($customer_id))
459
  {
460
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
461
  update_post_meta( $orderId, '_mollie_customer_id', $customer_id );
462
  } else {
463
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $orderId );
@@ -483,7 +483,7 @@ class Mollie_WC_Helper_Data
483
  return NULL;
484
  }
485
 
486
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
487
  $customer_id = get_user_meta( $user_id, 'mollie_customer_id', $single = true );
488
  } else {
489
  $customer = new WC_Customer( $user_id );
@@ -570,7 +570,7 @@ class Mollie_WC_Helper_Data
570
  */
571
  public function getActiveMolliePaymentMode ($order_id)
572
  {
573
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
574
  $mollie_payment_mode = get_post_meta( $order_id, '_mollie_payment_mode', $single = true );
575
  } else {
576
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
@@ -589,15 +589,15 @@ class Mollie_WC_Helper_Data
589
  {
590
  if ($item['product_id'] > 0)
591
  {
592
- $product = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? $order->get_product_from_item($item) : $item->get_product();
593
 
594
  if ($product && $product->exists() && $product->managing_stock())
595
  {
596
- $old_stock = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? $product->stock : $product->get_stock_quantity();
597
 
598
  $qty = apply_filters( 'woocommerce_order_item_quantity', $item['qty'], $order, $item);
599
 
600
- $new_quantity = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? $product->increase_stock( $qty ) : wc_update_product_stock( $product, $qty, 'increase');
601
 
602
  do_action('woocommerce_auto_stock_restored', $product, $item);
603
 
@@ -608,7 +608,7 @@ class Mollie_WC_Helper_Data
608
  $new_quantity
609
  ));
610
 
611
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
612
  $order->send_stock_notifications( $product, $new_quantity, $item['qty'] );
613
  }
614
  }
@@ -616,7 +616,7 @@ class Mollie_WC_Helper_Data
616
  }
617
 
618
  // Mark order stock as not-reduced
619
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
620
  delete_post_meta($order->id, '_order_stock_reduced');
621
  } else {
622
  $order->delete_meta_data( '_order_stock_reduced' );
@@ -633,7 +633,7 @@ class Mollie_WC_Helper_Data
633
  * @return string $value
634
  */
635
  public function getOrderCurrency( WC_Order $order ) {
636
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
637
  return $order->get_order_currency();
638
  } else {
639
  return $order->get_currency();
@@ -664,14 +664,14 @@ class Mollie_WC_Helper_Data
664
  *
665
  * @return bool
666
  */
667
- public function isSubscription( $order_id ) {
668
  return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || function_exists( 'wcs_is_subscription' ) && wcs_is_subscription( $order_id ) || function_exists( 'wcs_order_contains_renewal' ) && wcs_order_contains_renewal( $order_id ) ) );
669
  }
670
 
671
- public function isEcurSubscription()
672
  {
673
  $isSubscription = false;
674
- $isSubscription = apply_filters( Mollie_WC_Plugin::PLUGIN_ID . '_is_subscription_payment', $isSubscription );
675
  return $isSubscription;
676
  }
677
  }
186
  }
187
  }
188
 
189
+ $order_payment_method = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? $order->payment_method : $order->get_payment_method();
190
 
191
  return isset($payment_gateways[$order_payment_method]) ? $payment_gateways[$order_payment_method] : false;
192
  }
429
  */
430
  public function setUserMollieCustomerId( $user_id, $customer_id ) {
431
  if ( ! empty( $customer_id ) ) {
432
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
433
  update_user_meta( $user_id, 'mollie_customer_id', $customer_id );
434
  } else {
435
  try {
457
  {
458
  if (!empty($customer_id))
459
  {
460
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
461
  update_post_meta( $orderId, '_mollie_customer_id', $customer_id );
462
  } else {
463
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $orderId );
483
  return NULL;
484
  }
485
 
486
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
487
  $customer_id = get_user_meta( $user_id, 'mollie_customer_id', $single = true );
488
  } else {
489
  $customer = new WC_Customer( $user_id );
570
  */
571
  public function getActiveMolliePaymentMode ($order_id)
572
  {
573
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
574
  $mollie_payment_mode = get_post_meta( $order_id, '_mollie_payment_mode', $single = true );
575
  } else {
576
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
589
  {
590
  if ($item['product_id'] > 0)
591
  {
592
+ $product = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? $order->get_product_from_item($item) : $item->get_product();
593
 
594
  if ($product && $product->exists() && $product->managing_stock())
595
  {
596
+ $old_stock = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? $product->stock : $product->get_stock_quantity();
597
 
598
  $qty = apply_filters( 'woocommerce_order_item_quantity', $item['qty'], $order, $item);
599
 
600
+ $new_quantity = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? $product->increase_stock( $qty ) : wc_update_product_stock( $product, $qty, 'increase');
601
 
602
  do_action('woocommerce_auto_stock_restored', $product, $item);
603
 
608
  $new_quantity
609
  ));
610
 
611
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
612
  $order->send_stock_notifications( $product, $new_quantity, $item['qty'] );
613
  }
614
  }
616
  }
617
 
618
  // Mark order stock as not-reduced
619
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
620
  delete_post_meta($order->id, '_order_stock_reduced');
621
  } else {
622
  $order->delete_meta_data( '_order_stock_reduced' );
633
  * @return string $value
634
  */
635
  public function getOrderCurrency( WC_Order $order ) {
636
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
637
  return $order->get_order_currency();
638
  } else {
639
  return $order->get_currency();
664
  *
665
  * @return bool
666
  */
667
+ public function isWcSubscription( $order_id ) {
668
  return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || function_exists( 'wcs_is_subscription' ) && wcs_is_subscription( $order_id ) || function_exists( 'wcs_order_contains_renewal' ) && wcs_order_contains_renewal( $order_id ) ) );
669
  }
670
 
671
+ public function isSubscription($orderId)
672
  {
673
  $isSubscription = false;
674
+ $isSubscription = apply_filters( Mollie_WC_Plugin::PLUGIN_ID . '_is_subscription_payment', $isSubscription, $orderId );
675
  return $isSubscription;
676
  }
677
  }
src/Mollie/WC/Helper/MaybeDisableGateway.php CHANGED
@@ -63,20 +63,33 @@ class Mollie_WC_Helper_MaybeDisableGateway
63
  $mealvoucherSettings = get_option(
64
  'mollie_wc_gateway_mealvoucher_settings'
65
  );
66
- $defaultCategory = $mealvoucherSettings['mealvoucher_category_default'];
 
 
 
 
 
67
  $numberOfProducts = 0;
68
  $productsWithCategory = 0;
 
69
  foreach ($products as $product) {
70
  $postmeta = get_post_meta($product['product_id']);
71
-
72
  $localCategory = array_key_exists(
73
  Mollie_WC_Gateway_Mealvoucher::MOLLIE_VOUCHER_CATEGORY_OPTION,
74
  $postmeta
75
- ) ? $postmeta[Mollie_WC_Gateway_Mealvoucher::MOLLIE_VOUCHER_CATEGORY_OPTION][0] : '';
 
 
 
 
 
 
 
76
 
77
  if ($this->productHasVoucherCategory(
78
  $defaultCategory,
79
- $localCategory
 
80
  )
81
  ) {
82
  $productsWithCategory++;
@@ -96,20 +109,30 @@ class Mollie_WC_Helper_MaybeDisableGateway
96
  * @param string $defaultCategory
97
  * @param string $localCategory
98
  *
 
99
  * @return bool false if no category
100
  */
101
- public function productHasVoucherCategory($defaultCategory, $localCategory)
102
  {
103
- if ($defaultCategory
104
- && ($localCategory !== Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY)
105
- ) {
 
 
 
 
 
 
 
106
  return true;
107
  }
108
- if (!$defaultCategory && $localCategory
109
- && ($localCategory !== Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY)
110
- ) {
 
111
  return true;
112
  }
 
113
  return false;
114
  }
115
 
63
  $mealvoucherSettings = get_option(
64
  'mollie_wc_gateway_mealvoucher_settings'
65
  );
66
+ //Check if mealvoucherSettings is an array as to prevent notice from being thrown for PHP 7.4 and up.
67
+ if (is_array($mealvoucherSettings)) {
68
+ $defaultCategory = $mealvoucherSettings['mealvoucher_category_default'];
69
+ } else {
70
+ $defaultCategory = false;
71
+ }
72
  $numberOfProducts = 0;
73
  $productsWithCategory = 0;
74
+ $variationCategory = false;
75
  foreach ($products as $product) {
76
  $postmeta = get_post_meta($product['product_id']);
 
77
  $localCategory = array_key_exists(
78
  Mollie_WC_Gateway_Mealvoucher::MOLLIE_VOUCHER_CATEGORY_OPTION,
79
  $postmeta
80
+ ) ? $postmeta[Mollie_WC_Gateway_Mealvoucher::MOLLIE_VOUCHER_CATEGORY_OPTION][0] : false;
81
+ if ( $product['variation_id'] ) {
82
+ $postmeta = get_post_meta($product['variation_id']);
83
+ $variationCategory = array_key_exists(
84
+ 'voucher',
85
+ $postmeta
86
+ ) ? $postmeta['voucher'][0] : false;
87
+ }
88
 
89
  if ($this->productHasVoucherCategory(
90
  $defaultCategory,
91
+ $localCategory,
92
+ $variationCategory
93
  )
94
  ) {
95
  $productsWithCategory++;
109
  * @param string $defaultCategory
110
  * @param string $localCategory
111
  *
112
+ * @param bool|string $variationCategory
113
  * @return bool false if no category
114
  */
115
+ public function productHasVoucherCategory($defaultCategory, $localCategory, $variationCategory = false)
116
  {
117
+ $defaultCatIsSet = $defaultCategory && ($defaultCategory !== Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY);
118
+ $localCatIsNoCat = $localCategory && $localCategory === Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY;
119
+ $localCatIsSet = $localCategory && $localCategory !== Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY;
120
+ $variationCatIsNoCat = $variationCategory && $variationCategory === Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY;
121
+ $variationCatIsSet = $variationCategory && $variationCategory !== Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY;
122
+ //In importance order variations ->local product (var, simple, subs) -> general
123
+ if($variationCatIsNoCat){
124
+ return false;
125
+ }
126
+ if($variationCatIsSet){
127
  return true;
128
  }
129
+ if($localCatIsNoCat){
130
+ return false;
131
+ }
132
+ if($localCatIsSet || $defaultCatIsSet){
133
  return true;
134
  }
135
+
136
  return false;
137
  }
138
 
src/Mollie/WC/Helper/OrderLines.php CHANGED
@@ -408,15 +408,25 @@ class Mollie_WC_Helper_OrderLines {
408
  );
409
  $defaultCategory = $mealvoucherSettings['mealvoucher_category_default'];
410
  $category = $defaultCategory;
411
- if ($product) {
412
- $localCategory = get_post_meta(
413
- $product->get_id(),
414
- Mollie_WC_Gateway_Mealvoucher::MOLLIE_VOUCHER_CATEGORY_OPTION,
415
- true
416
- );
417
- $category = $localCategory ? $localCategory : $defaultCategory;
418
  }
419
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
420
  return $category;
421
  }
422
 
408
  );
409
  $defaultCategory = $mealvoucherSettings['mealvoucher_category_default'];
410
  $category = $defaultCategory;
411
+
412
+ if (!$product) {
413
+ return $category;
 
 
 
 
414
  }
415
 
416
+ $localCategory = get_post_meta(
417
+ $product->get_id(),
418
+ Mollie_WC_Gateway_Mealvoucher::MOLLIE_VOUCHER_CATEGORY_OPTION,
419
+ false
420
+ );
421
+ $category = $localCategory[0] ? $localCategory[0] : $defaultCategory;
422
+
423
+ $simpleVariationCategory = get_post_meta(
424
+ $product->get_id(),
425
+ 'voucher',
426
+ false
427
+ );
428
+ $category = $simpleVariationCategory ? $simpleVariationCategory[0] : $category;
429
+
430
  return $category;
431
  }
432
 
src/Mollie/WC/Helper/PaymentMethodsIconUrl.php CHANGED
@@ -17,18 +17,13 @@ class Mollie_WC_Helper_PaymentMethodsIconUrl
17
  const SVG_FILE_EXTENSION = '.svg';
18
  const CREDIT_CARD_ICON_WIDTH = 33;
19
  const MOLLIE_CREDITCARD_ICONS_ENABLER = 'mollie_creditcard_icons_enabler';
20
- /**
21
- * @var array
22
- */
23
- private $paymentMethodImages;
24
 
25
  /**
26
  * PaymentMethodIconUrl constructor.
27
- * @param array $paymentMethodImages
28
  */
29
- public function __construct(array $paymentMethodImages)
30
  {
31
- $this->paymentMethodImages = $paymentMethodImages;
32
  }
33
 
34
  /**
@@ -41,34 +36,6 @@ class Mollie_WC_Helper_PaymentMethodsIconUrl
41
  * @return mixed
42
  */
43
  public function svgUrlForPaymentMethod($paymentMethodName)
44
- {
45
- return $this->fallToAssets($paymentMethodName);
46
- }
47
-
48
- /**
49
- * Method to retrieve the Svg image from the url given and add the style
50
- *
51
- * @param $paymentMethodName
52
- *
53
- * @return string
54
- */
55
- protected function getSvgImageFromUrl($paymentMethodName)
56
- {
57
- $request = wp_safe_remote_get($this->paymentMethodImages[$paymentMethodName]->svg);
58
- if(is_wp_error($request)){
59
- return $this->fallToAssets($paymentMethodName);
60
- }
61
- $svgString = wp_remote_retrieve_body($request);
62
- $svgString = $this->styleSvgImage($svgString);
63
-
64
- return $svgString;
65
- }
66
-
67
- /**
68
- * @param string $paymentMethodName
69
- * @return string
70
- */
71
- protected function fallToAssets($paymentMethodName)
72
  {
73
  if ($paymentMethodName == PaymentMethod::CREDITCARD && !is_admin()) {
74
  return Mollie_WC_Plugin::getPluginUrl(
@@ -82,18 +49,5 @@ class Mollie_WC_Helper_PaymentMethodsIconUrl
82
  return '<img src="' . esc_attr($svgUrl)
83
  . '" style="width: 32px; vertical-align: bottom;" />';
84
  }
85
-
86
- /**
87
- * @param string $resource
88
- *
89
- * @return string
90
- */
91
- protected function styleSvgImage($resource)
92
- {
93
- if (!is_string($resource)) {
94
- return '';
95
- }
96
- return substr_replace($resource, " style=\"float:right\" ", 4, 0);
97
- }
98
  }
99
 
17
  const SVG_FILE_EXTENSION = '.svg';
18
  const CREDIT_CARD_ICON_WIDTH = 33;
19
  const MOLLIE_CREDITCARD_ICONS_ENABLER = 'mollie_creditcard_icons_enabler';
 
 
 
 
20
 
21
  /**
22
  * PaymentMethodIconUrl constructor.
23
+ *
24
  */
25
+ public function __construct()
26
  {
 
27
  }
28
 
29
  /**
36
  * @return mixed
37
  */
38
  public function svgUrlForPaymentMethod($paymentMethodName)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  {
40
  if ($paymentMethodName == PaymentMethod::CREDITCARD && !is_admin()) {
41
  return Mollie_WC_Plugin::getPluginUrl(
49
  return '<img src="' . esc_attr($svgUrl)
50
  . '" style="width: 32px; vertical-align: bottom;" />';
51
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  }
53
 
src/Mollie/WC/Helper/Settings.php CHANGED
@@ -137,7 +137,7 @@ class Mollie_WC_Helper_Settings
137
  */
138
  public function getGlobalSettingsUrl ()
139
  {
140
- return admin_url('admin.php?page=wc-settings&tab=checkout#' . Mollie_WC_Plugin::PLUGIN_ID);
141
  }
142
 
143
  /**
@@ -148,6 +148,15 @@ class Mollie_WC_Helper_Settings
148
  return admin_url('admin.php?page=wc-status&tab=logs');
149
  }
150
 
 
 
 
 
 
 
 
 
 
151
  public function updateMerchantIdOnApiKeyChanges($optionValue, $optionName)
152
  {
153
  $optionId = isset($optionName['id']) ? $optionName['id'] : '';
@@ -174,6 +183,19 @@ class Mollie_WC_Helper_Settings
174
  return $optionValue;
175
  }
176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  /**
178
  * Get plugin status
179
  *
@@ -251,6 +273,7 @@ class Mollie_WC_Helper_Settings
251
  $icon_no_available = ' <span style="color: red; cursor: help;" title="' . __( 'Gateway disabled', 'mollie-payments-for-woocommerce' ) . '">' . strtolower( __( 'Disabled', 'mollie-payments-for-woocommerce' ) ) . '</span>';
252
 
253
  $content .= '<br /><br />';
 
254
 
255
  if ( $test_mode ) {
256
  $content .= '<strong>' . __( 'Test mode enabled.', 'mollie-payments-for-woocommerce' ) . '</strong> ';
@@ -269,7 +292,7 @@ class Mollie_WC_Helper_Settings
269
 
270
  $content .= ' (<a href="' . esc_attr( $refresh_methods_url ) . '">' . strtolower( __( 'Refresh', 'mollie-payments-for-woocommerce' ) ) . '</a>)';
271
 
272
- $content .= '<ul style="width: 1000px">';
273
 
274
  foreach ( Mollie_WC_Plugin::$GATEWAYS as $gateway_classname ) {
275
  $gateway = new $gateway_classname;
@@ -280,15 +303,15 @@ class Mollie_WC_Helper_Settings
280
  }
281
 
282
  // Remove Klarna from list if not at least WooCommerce 3.x is used
283
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
284
  if ( $gateway->id == 'mollie_wc_gateway_klarnapaylater' || $gateway->id == 'mollie_wc_gateway_klarnasliceit' ) {
285
  continue;
286
  }
287
  }
288
 
289
  if ( $gateway instanceof Mollie_WC_Gateway_Abstract ) {
290
- $content .= '<li style="float: left; width: 33%;">';
291
- $content .= $this->getSvgIcon($gateway);
292
  $content .= ' ' . esc_html( $gateway->getDefaultTitle() );
293
 
294
  if ( $gateway->is_available() ) {
@@ -303,7 +326,7 @@ class Mollie_WC_Helper_Settings
303
  }
304
  }
305
 
306
- $content .= '</ul>';
307
  $content .= '<div class="clear"></div>';
308
 
309
  // Make sure users also enable iDEAL when they enable SEPA Direct Debit
@@ -333,7 +356,23 @@ class Mollie_WC_Helper_Settings
333
  wp_register_script('mollie_wc_admin_settings', Mollie_WC_Plugin::getPluginUrl('/public/js/settings.min.js'), array('jquery'), Mollie_WC_Plugin::PLUGIN_VERSION);
334
  wp_enqueue_script('mollie_wc_admin_settings');
335
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
336
  $content = ''
 
337
  . $this->getPluginStatus()
338
  . $this->getMollieMethods();
339
 
@@ -355,10 +394,10 @@ class Mollie_WC_Helper_Settings
355
  $mollie_settings = array(
356
  array(
357
  'id' => $this->getSettingId('title'),
358
- 'title' => __('Mollie settings', 'mollie-payments-for-woocommerce'),
359
  'type' => 'title',
360
  'desc' => '<p id="' . Mollie_WC_Plugin::PLUGIN_ID . '">' . $content . '</p>'
361
- . '<p>' . __('The following options are required to use the plugin and are used by all Mollie payment methods', 'mollie-payments-for-woocommerce') . '</p>',
362
  ),
363
  array(
364
  'id' => $this->getSettingId('live_api_key'),
@@ -366,7 +405,7 @@ class Mollie_WC_Helper_Settings
366
  'default' => '',
367
  'type' => 'text',
368
  'desc' => sprintf(
369
- /* translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile */
370
  __('The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s', 'mollie-payments-for-woocommerce'),
371
  'live',
372
  '<a href="https://www.mollie.com/dashboard/settings/profiles" target="_blank">',
@@ -392,7 +431,7 @@ class Mollie_WC_Helper_Settings
392
  'default' => '',
393
  'type' => 'text',
394
  'desc' => sprintf(
395
- /* translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile */
396
  __('The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s', 'mollie-payments-for-woocommerce'),
397
  'test',
398
  '<a href="https://www.mollie.com/dashboard/settings/profiles" target="_blank">',
@@ -405,75 +444,13 @@ class Mollie_WC_Helper_Settings
405
  'pattern' => '^test_\w{30,}$',
406
  ),
407
  ),
408
- array(
409
- 'id' => $this->getSettingId('order_status_cancelled_payments'),
410
- 'title' => __('Order status after cancelled payment', 'mollie-payments-for-woocommerce'),
411
- 'type' => 'select',
412
- 'options' => array(
413
- 'pending' => __('Pending', 'woocommerce'),
414
- 'cancelled' => __('Cancelled', 'woocommerce'),
415
- ),
416
- 'desc' => __('Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don\'t want customers to re-try paying with a different payment method. This doesn\'t apply to payments for orders via the new Orders API and Klarna payments.', 'mollie-payments-for-woocommerce'),
417
- 'default' => 'pending',
418
- ),
419
- array(
420
- 'id' => $this->getSettingId(self::SETTING_NAME_PAYMENT_LOCALE),
421
- 'title' => __('Payment screen language', 'mollie-payments-for-woocommerce'),
422
- 'type' => 'select',
423
- 'options' => array(
424
- self::SETTING_LOCALE_WP_LANGUAGE => __(
425
- 'Automatically send WordPress language',
426
- 'mollie-payments-for-woocommerce'
427
- ) . ' (' . __('default', 'mollie-payments-for-woocommerce') . ')',
428
- self::SETTING_LOCALE_DETECT_BY_BROWSER => __(
429
- 'Detect using browser language',
430
- 'mollie-payments-for-woocommerce'
431
- ),
432
- 'en_US' => __('English', 'mollie-payments-for-woocommerce'),
433
- 'nl_NL' => __('Dutch', 'mollie-payments-for-woocommerce'),
434
- 'nl_BE' => __('Flemish (Belgium)', 'mollie-payments-for-woocommerce'),
435
- 'fr_FR' => __('French', 'mollie-payments-for-woocommerce'),
436
- 'fr_BE' => __('French (Belgium)', 'mollie-payments-for-woocommerce'),
437
- 'de_DE' => __('German', 'mollie-payments-for-woocommerce'),
438
- 'de_AT' => __('Austrian German', 'mollie-payments-for-woocommerce'),
439
- 'de_CH' => __('Swiss German', 'mollie-payments-for-woocommerce'),
440
- 'es_ES' => __('Spanish', 'mollie-payments-for-woocommerce'),
441
- 'ca_ES' => __('Catalan', 'mollie-payments-for-woocommerce'),
442
- 'pt_PT' => __('Portuguese', 'mollie-payments-for-woocommerce'),
443
- 'it_IT' => __('Italian', 'mollie-payments-for-woocommerce'),
444
- 'nb_NO' => __('Norwegian', 'mollie-payments-for-woocommerce'),
445
- 'sv_SE' => __('Swedish', 'mollie-payments-for-woocommerce'),
446
- 'fi_FI' => __('Finnish', 'mollie-payments-for-woocommerce'),
447
- 'da_DK' => __('Danish', 'mollie-payments-for-woocommerce'),
448
- 'is_IS' => __('Icelandic', 'mollie-payments-for-woocommerce'),
449
- 'hu_HU' => __('Hungarian', 'mollie-payments-for-woocommerce'),
450
- 'pl_PL' => __('Polish', 'mollie-payments-for-woocommerce'),
451
- 'lv_LV' => __('Latvian', 'mollie-payments-for-woocommerce'),
452
- 'lt_LT' => __('Lithuanian', 'mollie-payments-for-woocommerce'),
453
- ),
454
- 'desc' => sprintf(
455
- __('Sending a language (or locale) is required. The option \'Automatically send WordPress language\' will try to get the customer\'s language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers.', 'mollie-payments-for-woocommerce'),
456
- '<a href="https://www.mollie.com/nl/docs/reference/payments/create" target="_blank">',
457
- '</a>'
458
- ),
459
- 'default' => self::SETTING_LOCALE_WP_LANGUAGE,
460
- ),
461
- array(
462
- 'id' => $this->getSettingId('customer_details'),
463
- 'title' => __('Store customer details at Mollie', 'mollie-payments-for-woocommerce'),
464
- /* translators: Placeholder 1: enabled or disabled */
465
- 'desc' => sprintf(__('Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!', 'mollie-payments-for-woocommerce'), strtolower(__('Enabled', 'mollie-payments-for-woocommerce'))),
466
- 'type' => 'checkbox',
467
- 'default' => 'yes',
468
-
469
- ),
470
- array(
471
  'id' => $this->getSettingId('debug'),
472
  'title' => __('Debug Log', 'mollie-payments-for-woocommerce'),
473
  'type' => 'checkbox',
474
  'desc' => $debug_desc,
475
  'default' => 'yes',
476
- ),
477
  array(
478
  'id' => $this->getSettingId('sectionend'),
479
  'type' => 'sectionend',
@@ -612,7 +589,7 @@ class Mollie_WC_Helper_Settings
612
  */
613
  protected function warnAboutRequiredCheckoutFieldForKlarna( $content ) {
614
 
615
- if ( version_compare( WC_VERSION, '3.0', '>=' ) ) {
616
 
617
  $woocommerce_klarnapaylater_gateway = new Mollie_WC_Gateway_KlarnaPayLater();
618
  $woocommerce_klarnasliceit_gateway = new Mollie_WC_Gateway_KlarnaSliceIt();
@@ -637,7 +614,7 @@ class Mollie_WC_Helper_Settings
637
  */
638
  protected function warnWoo3xRequiredForKlarna( $content ) {
639
 
640
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
641
 
642
  $woocommerce_klarnapaylater_gateway = new Mollie_WC_Gateway_KlarnaPayLater();
643
  $woocommerce_klarnasliceit_gateway = new Mollie_WC_Gateway_KlarnaSliceIt();
@@ -645,7 +622,7 @@ class Mollie_WC_Helper_Settings
645
  if ( $woocommerce_klarnapaylater_gateway->is_available() || $woocommerce_klarnasliceit_gateway->is_available() ) {
646
 
647
  $content .= '<div class="notice notice-warning is-dismissible"><p>';
648
- $content .= sprintf(__( 'To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s.', 'mollie-payments-for-woocommerce' ), WC_VERSION);
649
  $content .= '</p></div> ';
650
 
651
  return $content;
@@ -755,125 +732,4 @@ class Mollie_WC_Helper_Settings
755
 
756
  return self::SETTING_LOCALE_DEFAULT_LANGUAGE;
757
  }
758
-
759
- /**
760
- * @param Mollie_WC_Gateway_Abstract $gateway
761
- *
762
- *
763
- * @return string
764
- */
765
- protected function getSvgIcon(Mollie_WC_Gateway_Abstract $gateway)
766
- {
767
- add_filter(
768
- 'wp_kses_allowed_html',
769
- array(__CLASS__, 'svgAllowedTags'),
770
- 10,
771
- 2
772
- );
773
- $svg = $gateway->getIconUrl();
774
- $cleanNewLine = str_replace("\n", "", $svg);
775
- $cleanNewLine = str_replace("\r", "", $cleanNewLine);
776
-
777
- return $cleanNewLine;
778
- }
779
-
780
- /**
781
- * Method to add svg tags to the allowed array used by wp_kses
782
- *
783
- * @param array $tags
784
- *
785
- * @return array
786
- */
787
- public static function svgAllowedTags ($tags) {
788
- $tags['svg'] = [
789
- 'xmlns' => [],
790
- 'width'=>[],
791
- 'height'=>[],
792
- 'fill' => [],
793
- 'viewbox' => [],
794
- 'enable-background' => [],
795
- 'version' => [],
796
- 'xml:space' => [],
797
- 'transform'=>[]
798
- ];
799
- $tags['path'] = [
800
- 'd' => [],
801
- 'fill' => [],
802
- 'stroke'=>[],
803
- 'fill-rule'=>[],
804
- 'fill-opacity'=>[],
805
- 'clip-rule'=>[],
806
- 'transform'=>[],
807
- 'opacity'=>[]
808
- ];
809
- $tags['rect'] = [
810
- 'width'=>[],
811
- 'height'=>[],
812
- 'rx'=>[],
813
- 'fill' => [],
814
- 'x'=>[],
815
- 'y'=>[],
816
- 'stroke'=>[],
817
- ];
818
- $tags['mask'] = [
819
- 'id'=>[],
820
- 'mask-type'=>[],
821
- 'maskUnits'=>[],
822
- 'x' => [],
823
- 'y' => [],
824
- 'width'=>[],
825
- 'height'=>[]
826
- ];
827
- $tags['g'] = [
828
- 'mask'=>[],
829
- 'filter'=>[],
830
- 'fill'=>[],
831
- 'fill-rule'=>[],
832
- ];
833
- $tags['feflood'] = [
834
- 'flood-opacity'=>[],
835
- 'result'=>[]
836
- ];
837
- $tags['fecolormatrix'] = [
838
- 'in'=>[],
839
- 'type'=>[],
840
- 'values'=>[]
841
- ];
842
- $tags['fegaussianblur'] = [
843
- 'stdDeviation'=>[]
844
- ];
845
- $tags['feblend'] = [
846
- 'mode'=>[],
847
- 'in2'=>[],
848
- 'result'=>[],
849
- 'in'=>[],
850
- ];
851
- $tags['feoffset'] = [
852
- 'dy'=>[],
853
- ];
854
- $tags['filter'] = [
855
- 'id'=>[],
856
- 'color-interpolation-filters'=>[],
857
- 'filterUnits'=>[],
858
- 'x' => [],
859
- 'y' => [],
860
- 'width'=>[],
861
- 'height'=>[]
862
- ];
863
- $tags['lineargradient'] = [
864
- 'id'=>[],
865
- 'gradientUnits'=>[],
866
- 'gradientTransform'=>[],
867
- 'x2' => []
868
- ];
869
- $tags['stop'] = [
870
- 'offset'=>[],
871
- 'stop-color'=>[],
872
- 'stop-opacity'=>[]
873
- ];
874
- $tags['defs'] = [];
875
-
876
- return $tags;
877
- }
878
-
879
  }
137
  */
138
  public function getGlobalSettingsUrl ()
139
  {
140
+ return admin_url('admin.php?page=wc-settings&tab=mollie_settings#' . Mollie_WC_Plugin::PLUGIN_ID);
141
  }
142
 
143
  /**
148
  return admin_url('admin.php?page=wc-status&tab=logs');
149
  }
150
 
151
+
152
+ /**
153
+ * Update the profileId option on update keys or on changing live/test mode
154
+ *
155
+ * @param $optionValue
156
+ * @param $optionName
157
+ *
158
+ * @return mixed
159
+ */
160
  public function updateMerchantIdOnApiKeyChanges($optionValue, $optionName)
161
  {
162
  $optionId = isset($optionName['id']) ? $optionName['id'] : '';
183
  return $optionValue;
184
  }
185
 
186
+ /**
187
+ * Called after the api keys are updated so we can update the profile Id
188
+ *
189
+ * @param $oldValue
190
+ * @param $value
191
+ * @param $optionName
192
+ */
193
+ public function updateMerchantIdAfterApiKeyChanges($oldValue, $value, $optionName)
194
+ {
195
+ $option = ['id'=>$optionName];
196
+ $this->updateMerchantIdOnApiKeyChanges($value, $option);
197
+ }
198
+
199
  /**
200
  * Get plugin status
201
  *
273
  $icon_no_available = ' <span style="color: red; cursor: help;" title="' . __( 'Gateway disabled', 'mollie-payments-for-woocommerce' ) . '">' . strtolower( __( 'Disabled', 'mollie-payments-for-woocommerce' ) ) . '</span>';
274
 
275
  $content .= '<br /><br />';
276
+ $content .= '<div style="width:1000px;height:350px; background:white; padding:10px; margin-top:10px;">';
277
 
278
  if ( $test_mode ) {
279
  $content .= '<strong>' . __( 'Test mode enabled.', 'mollie-payments-for-woocommerce' ) . '</strong> ';
292
 
293
  $content .= ' (<a href="' . esc_attr( $refresh_methods_url ) . '">' . strtolower( __( 'Refresh', 'mollie-payments-for-woocommerce' ) ) . '</a>)';
294
 
295
+ $content .= '<ul style="width: 1000px; padding:20px 0 0 10px">';
296
 
297
  foreach ( Mollie_WC_Plugin::$GATEWAYS as $gateway_classname ) {
298
  $gateway = new $gateway_classname;
303
  }
304
 
305
  // Remove Klarna from list if not at least WooCommerce 3.x is used
306
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
307
  if ( $gateway->id == 'mollie_wc_gateway_klarnapaylater' || $gateway->id == 'mollie_wc_gateway_klarnasliceit' ) {
308
  continue;
309
  }
310
  }
311
 
312
  if ( $gateway instanceof Mollie_WC_Gateway_Abstract ) {
313
+ $content .= '<li style="float: left; width: 32%; height:32px;">';
314
+ $content .= $gateway->getIconUrl();
315
  $content .= ' ' . esc_html( $gateway->getDefaultTitle() );
316
 
317
  if ( $gateway->is_available() ) {
326
  }
327
  }
328
 
329
+ $content .= '</ul></div>';
330
  $content .= '<div class="clear"></div>';
331
 
332
  // Make sure users also enable iDEAL when they enable SEPA Direct Debit
356
  wp_register_script('mollie_wc_admin_settings', Mollie_WC_Plugin::getPluginUrl('/public/js/settings.min.js'), array('jquery'), Mollie_WC_Plugin::PLUGIN_VERSION);
357
  wp_enqueue_script('mollie_wc_admin_settings');
358
 
359
+ $presentationText = __('Quickly integrate all major payment methods in WooCommerce, wherever you need them.' );
360
+ $presentationText .= __(' Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie.');
361
+ $presentationText .= __(' Mollie is dedicated to making payments better for WooCommerce. ');
362
+ $presentationText .='<p>Please go to <a href="https://mollie.inpsyde.com/" >the signup page </a>';
363
+ $presentationText .= __('to create a new Mollie account and start receiving payments in a couple of minutes. ');
364
+ $presentationText .= 'Contact <a href="mailto:info@mollie.com">info@mollie.com</a>';
365
+ $presentationText .= ' if you have any questions or comments about this plugin.</p>';
366
+ $presentationText .= '<p style="border-left: 4px solid black; padding: 8px; height:32px; font-weight:bold; font-size: medium;">Our pricing is always per transaction. No startup fees, no monthly fees, and no gateway fees. No hidden fees, period.</p>';
367
+
368
+
369
+ $presentation = ''
370
+ . '<div style="width:1000px"><div id="" class="" style=""><a href="https://mollie.inpsyde.com/" >Documentation</a> | <a href="https://mollie.inpsyde.com/" >Support</a></div></div>'
371
+ . '<span></span>'
372
+ . '<div id="" class="" style="width: 1000px; padding:5px 0 0 10px"><p>'.$presentationText.'</p></div>';
373
+
374
  $content = ''
375
+ . $presentation
376
  . $this->getPluginStatus()
377
  . $this->getMollieMethods();
378
 
394
  $mollie_settings = array(
395
  array(
396
  'id' => $this->getSettingId('title'),
397
+ 'title' => __('Mollie Settings', 'mollie-payments-for-woocommerce'),
398
  'type' => 'title',
399
  'desc' => '<p id="' . Mollie_WC_Plugin::PLUGIN_ID . '">' . $content . '</p>'
400
+ . '<p>' . __('The following options are required to use the plugin and are used by all Mollie payment methods', 'mollie-payments-for-woocommerce') . '</p>',
401
  ),
402
  array(
403
  'id' => $this->getSettingId('live_api_key'),
405
  'default' => '',
406
  'type' => 'text',
407
  'desc' => sprintf(
408
+ /* translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile */
409
  __('The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s', 'mollie-payments-for-woocommerce'),
410
  'live',
411
  '<a href="https://www.mollie.com/dashboard/settings/profiles" target="_blank">',
431
  'default' => '',
432
  'type' => 'text',
433
  'desc' => sprintf(
434
+ /* translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile */
435
  __('The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s', 'mollie-payments-for-woocommerce'),
436
  'test',
437
  '<a href="https://www.mollie.com/dashboard/settings/profiles" target="_blank">',
444
  'pattern' => '^test_\w{30,}$',
445
  ),
446
  ),
447
+ [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
448
  'id' => $this->getSettingId('debug'),
449
  'title' => __('Debug Log', 'mollie-payments-for-woocommerce'),
450
  'type' => 'checkbox',
451
  'desc' => $debug_desc,
452
  'default' => 'yes',
453
+ ],
454
  array(
455
  'id' => $this->getSettingId('sectionend'),
456
  'type' => 'sectionend',
589
  */
590
  protected function warnAboutRequiredCheckoutFieldForKlarna( $content ) {
591
 
592
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '>=' ) ) {
593
 
594
  $woocommerce_klarnapaylater_gateway = new Mollie_WC_Gateway_KlarnaPayLater();
595
  $woocommerce_klarnasliceit_gateway = new Mollie_WC_Gateway_KlarnaSliceIt();
614
  */
615
  protected function warnWoo3xRequiredForKlarna( $content ) {
616
 
617
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
618
 
619
  $woocommerce_klarnapaylater_gateway = new Mollie_WC_Gateway_KlarnaPayLater();
620
  $woocommerce_klarnasliceit_gateway = new Mollie_WC_Gateway_KlarnaSliceIt();
622
  if ( $woocommerce_klarnapaylater_gateway->is_available() || $woocommerce_klarnasliceit_gateway->is_available() ) {
623
 
624
  $content .= '<div class="notice notice-warning is-dismissible"><p>';
625
+ $content .= sprintf(__( 'To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s.', 'mollie-payments-for-woocommerce' ), mollieWooCommerceWcVersion());
626
  $content .= '</p></div> ';
627
 
628
  return $content;
732
 
733
  return self::SETTING_LOCALE_DEFAULT_LANGUAGE;
734
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
735
  }
src/Mollie/WC/Payment/Object.php CHANGED
@@ -112,7 +112,7 @@ class Mollie_WC_Payment_Object {
112
 
113
  // Do extra checks if WooCommerce Subscriptions is installed
114
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
115
- if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order_id ) ) {
116
  return $this->setActiveMolliePaymentForSubscriptions( $order_id );
117
  }
118
  }
@@ -131,7 +131,7 @@ class Mollie_WC_Payment_Object {
131
  public function setActiveMolliePaymentForOrders( $order_id ) {
132
 
133
 
134
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
135
  update_post_meta( $order_id, '_mollie_order_id', $this->data->id, $single = true );
136
  update_post_meta( $order_id, '_mollie_payment_id', static::$paymentId, $single = true );
137
  update_post_meta( $order_id, '_mollie_payment_mode', $this->data->mode, $single = true );
@@ -172,7 +172,7 @@ class Mollie_WC_Payment_Object {
172
  public function setActiveMolliePaymentForSubscriptions( $order_id ) {
173
 
174
 
175
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
176
 
177
  add_post_meta( $order_id, '_mollie_payment_id', static::$paymentId, $single = true );
178
  add_post_meta( $order_id, '_mollie_payment_mode', $this->data->mode, $single = true );
@@ -257,7 +257,7 @@ class Mollie_WC_Payment_Object {
257
 
258
  // Do extra checks if WooCommerce Subscriptions is installed
259
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
260
- if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order_id ) ) {
261
  return $this->unsetActiveMolliePaymentForSubscriptions( $order_id );
262
  }
263
  }
@@ -276,7 +276,7 @@ class Mollie_WC_Payment_Object {
276
  */
277
  public function unsetActiveMolliePaymentForOrders( $order_id ) {
278
 
279
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
280
 
281
  // Only remove Mollie payment details if they belong to this payment, not when a new payment was already placed
282
  $mollie_payment_id = get_post_meta( $order_id, '_mollie_payment_id', $single = true );
@@ -311,7 +311,7 @@ class Mollie_WC_Payment_Object {
311
  */
312
  public function unsetActiveMolliePaymentForSubscriptions( $order_id ) {
313
 
314
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
315
  delete_post_meta( $order_id, '_mollie_payment_id' );
316
  delete_post_meta( $order_id, '_mollie_payment_mode' );
317
  } else {
@@ -332,7 +332,7 @@ class Mollie_WC_Payment_Object {
332
  * @return string
333
  */
334
  public function getActiveMolliePaymentId( $order_id ) {
335
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
336
  $mollie_payment_id = get_post_meta( $order_id, '_mollie_payment_id', $single = true );
337
  } else {
338
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
@@ -350,7 +350,7 @@ class Mollie_WC_Payment_Object {
350
  * @return string
351
  */
352
  public function getActiveMollieOrderId( $order_id ) {
353
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
354
  $mollie_payment_id = get_post_meta( $order_id, '_mollie_order_id', $single = true );
355
  } else {
356
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
@@ -368,7 +368,7 @@ class Mollie_WC_Payment_Object {
368
  * @return string test or live
369
  */
370
  public function getActiveMolliePaymentMode( $order_id ) {
371
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
372
  $mollie_payment_mode = get_post_meta( $order_id, '_mollie_payment_mode', $single = true );
373
  } else {
374
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
@@ -451,7 +451,7 @@ class Mollie_WC_Payment_Object {
451
  * @return $this
452
  */
453
  public function setCancelledMolliePaymentId( $order_id, $payment_id ) {
454
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
455
  add_post_meta( $order_id, '_mollie_cancelled_payment_id', $payment_id, $single = true );
456
  } else {
457
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
@@ -470,7 +470,7 @@ class Mollie_WC_Payment_Object {
470
  public function unsetCancelledMolliePaymentId( $order_id ) {
471
 
472
  // If this order contains a cancelled (previous) payment, remove it.
473
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
474
  $mollie_cancelled_payment_id = get_post_meta( $order_id, '_mollie_cancelled_payment_id', $single = true );
475
 
476
  if ( ! empty( $mollie_cancelled_payment_id ) ) {
@@ -497,7 +497,7 @@ class Mollie_WC_Payment_Object {
497
  * @return string|false
498
  */
499
  public function getCancelledMolliePaymentId( $order_id ) {
500
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
501
  $mollie_cancelled_payment_id = get_post_meta( $order_id, '_mollie_cancelled_payment_id', $single = true );
502
  } else {
503
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
@@ -585,7 +585,7 @@ class Mollie_WC_Payment_Object {
585
  */
586
  protected function setOrderPaidAndProcessed( WC_Order $order ) {
587
 
588
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
589
  $order_id = $order->id;
590
  update_post_meta( $order_id, '_mollie_paid_and_processed', '1' );
591
  } else {
@@ -601,7 +601,7 @@ class Mollie_WC_Payment_Object {
601
  */
602
  protected function isOrderPaymentStartedByOtherGateway( WC_Order $order ) {
603
 
604
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
605
  $order_id = $order->id;
606
  } else {
607
  $order_id = $order->get_id();
@@ -626,7 +626,7 @@ class Mollie_WC_Payment_Object {
626
  public function deleteSubscriptionOrderFromPendingPaymentQueue( $order ) {
627
  global $wpdb;
628
 
629
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
630
  $wpdb->delete(
631
  $wpdb->mollie_pending_payment,
632
  array (
112
 
113
  // Do extra checks if WooCommerce Subscriptions is installed
114
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
115
+ if ( Mollie_WC_Plugin::getDataHelper()->isWcSubscription($order_id ) ) {
116
  return $this->setActiveMolliePaymentForSubscriptions( $order_id );
117
  }
118
  }
131
  public function setActiveMolliePaymentForOrders( $order_id ) {
132
 
133
 
134
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
135
  update_post_meta( $order_id, '_mollie_order_id', $this->data->id, $single = true );
136
  update_post_meta( $order_id, '_mollie_payment_id', static::$paymentId, $single = true );
137
  update_post_meta( $order_id, '_mollie_payment_mode', $this->data->mode, $single = true );
172
  public function setActiveMolliePaymentForSubscriptions( $order_id ) {
173
 
174
 
175
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
176
 
177
  add_post_meta( $order_id, '_mollie_payment_id', static::$paymentId, $single = true );
178
  add_post_meta( $order_id, '_mollie_payment_mode', $this->data->mode, $single = true );
257
 
258
  // Do extra checks if WooCommerce Subscriptions is installed
259
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
260
+ if ( Mollie_WC_Plugin::getDataHelper()->isWcSubscription($order_id ) ) {
261
  return $this->unsetActiveMolliePaymentForSubscriptions( $order_id );
262
  }
263
  }
276
  */
277
  public function unsetActiveMolliePaymentForOrders( $order_id ) {
278
 
279
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
280
 
281
  // Only remove Mollie payment details if they belong to this payment, not when a new payment was already placed
282
  $mollie_payment_id = get_post_meta( $order_id, '_mollie_payment_id', $single = true );
311
  */
312
  public function unsetActiveMolliePaymentForSubscriptions( $order_id ) {
313
 
314
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
315
  delete_post_meta( $order_id, '_mollie_payment_id' );
316
  delete_post_meta( $order_id, '_mollie_payment_mode' );
317
  } else {
332
  * @return string
333
  */
334
  public function getActiveMolliePaymentId( $order_id ) {
335
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
336
  $mollie_payment_id = get_post_meta( $order_id, '_mollie_payment_id', $single = true );
337
  } else {
338
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
350
  * @return string
351
  */
352
  public function getActiveMollieOrderId( $order_id ) {
353
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
354
  $mollie_payment_id = get_post_meta( $order_id, '_mollie_order_id', $single = true );
355
  } else {
356
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
368
  * @return string test or live
369
  */
370
  public function getActiveMolliePaymentMode( $order_id ) {
371
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
372
  $mollie_payment_mode = get_post_meta( $order_id, '_mollie_payment_mode', $single = true );
373
  } else {
374
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
451
  * @return $this
452
  */
453
  public function setCancelledMolliePaymentId( $order_id, $payment_id ) {
454
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
455
  add_post_meta( $order_id, '_mollie_cancelled_payment_id', $payment_id, $single = true );
456
  } else {
457
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
470
  public function unsetCancelledMolliePaymentId( $order_id ) {
471
 
472
  // If this order contains a cancelled (previous) payment, remove it.
473
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
474
  $mollie_cancelled_payment_id = get_post_meta( $order_id, '_mollie_cancelled_payment_id', $single = true );
475
 
476
  if ( ! empty( $mollie_cancelled_payment_id ) ) {
497
  * @return string|false
498
  */
499
  public function getCancelledMolliePaymentId( $order_id ) {
500
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
501
  $mollie_cancelled_payment_id = get_post_meta( $order_id, '_mollie_cancelled_payment_id', $single = true );
502
  } else {
503
  $order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
585
  */
586
  protected function setOrderPaidAndProcessed( WC_Order $order ) {
587
 
588
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
589
  $order_id = $order->id;
590
  update_post_meta( $order_id, '_mollie_paid_and_processed', '1' );
591
  } else {
601
  */
602
  protected function isOrderPaymentStartedByOtherGateway( WC_Order $order ) {
603
 
604
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
605
  $order_id = $order->id;
606
  } else {
607
  $order_id = $order->get_id();
626
  public function deleteSubscriptionOrderFromPendingPaymentQueue( $order ) {
627
  global $wpdb;
628
 
629
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
630
  $wpdb->delete(
631
  $wpdb->mollie_pending_payment,
632
  array (
src/Mollie/WC/Payment/Order.php CHANGED
@@ -59,7 +59,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
59
  * @return array
60
  */
61
  public function getPaymentRequestData( $order, $customer_id ) {
62
- $settings_helper = Mollie_WC_Plugin::getSettingsHelper();
63
  $payment_locale = $settings_helper->getPaymentLocale();
64
  $store_customer = $settings_helper->shouldStoreCustomer();
65
 
@@ -74,7 +74,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
74
  $return_url = $gateway->getReturnUrl( $order );
75
  $webhook_url = $gateway->getWebhookUrl( $order );
76
 
77
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
78
 
79
  $paymentRequestData = array (
80
  'amount' => array (
@@ -93,7 +93,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
93
 
94
  // Add sequenceType for subscriptions first payments
95
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
96
- if ( mollieWooCommerceGetDataHelper()->isSubscription( $order->id ) ) {
97
 
98
  // See get_available_payment_gateways() in woocommerce-subscriptions/includes/gateways/class-wc-subscriptions-payment-gateways.php
99
  $disable_automatic_payments = ( 'yes' == get_option( WC_Subscriptions_Admin::$option_prefix . '_turn_off_automatic_payments', 'no' ) ) ? true : false;
@@ -165,7 +165,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
165
 
166
  // Add sequenceType for subscriptions first payments
167
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
168
- if ( mollieWooCommerceGetDataHelper()->isSubscription( $order->get_id() ) ) {
169
 
170
  // See get_available_payment_gateways() in woocommerce-subscriptions/includes/gateways/class-wc-subscriptions-payment-gateways.php
171
  $disable_automatic_payments = ( 'yes' == get_option( WC_Subscriptions_Admin::$option_prefix . '_turn_off_automatic_payments', 'no' ) ) ? true : false;
@@ -177,6 +177,15 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
177
  }
178
  }
179
  }
 
 
 
 
 
 
 
 
 
180
 
181
  // Only add shippingAddress if all required fields are set
182
  if ( ! empty( $shippingAddress->streetAndNumber ) && ! empty( $shippingAddress->postalCode ) && ! empty( $shippingAddress->city ) && ! empty( $shippingAddress->country ) ) {
@@ -281,7 +290,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
281
  public function onWebhookPaid( WC_Order $order, $payment, $paymentMethodTitle ) {
282
 
283
  // Get order ID in the correct way depending on WooCommerce version
284
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
285
  $orderId = $order->id;
286
  } else {
287
  $orderId = $order->get_id();
@@ -332,7 +341,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
332
  'WC_Subscriptions_Admin'
333
  )
334
  ) {
335
- if (Mollie_WC_Plugin::getDataHelper()->isSubscription($orderId)) {
336
  $this->deleteSubscriptionOrderFromPendingPaymentQueue($order);
337
  }
338
  }
@@ -353,7 +362,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
353
  public function onWebhookAuthorized( WC_Order $order, $payment, $payment_method_title ) {
354
 
355
  // Get order ID in the correct way depending on WooCommerce version
356
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
357
  $orderId = $order->id;
358
  } else {
359
  $orderId = $order->get_id();
@@ -395,7 +404,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
395
 
396
  // Subscription processing
397
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
398
- if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $orderId ) ) {
399
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
400
  }
401
  }
@@ -416,7 +425,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
416
  public function onWebhookCompleted( WC_Order $order, $payment, $payment_method_title ) {
417
 
418
  // Get order ID in the correct way depending on WooCommerce version
419
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
420
  $orderId = $order->id;
421
  } else {
422
  $orderId = $order->get_id();
@@ -460,7 +469,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
460
 
461
  // Subscription processing
462
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
463
- if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $orderId ) ) {
464
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
465
  }
466
  }
@@ -551,12 +560,12 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
551
 
552
  // Subscription processing
553
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
554
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
555
  if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order->id ) ) {
556
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
557
  }
558
  } else {
559
- if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order->get_id() ) ) {
560
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
561
  }
562
  }
@@ -571,7 +580,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
571
  public function onWebhookFailed( WC_Order $order, $payment, $payment_method_title ) {
572
 
573
  // Get order ID in the correct way depending on WooCommerce version
574
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
575
  $order_id = $order->id;
576
  } else {
577
  $order_id = $order->get_id();
@@ -646,7 +655,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
646
  public function onWebhookExpired( WC_Order $order, $payment, $payment_method_title ) {
647
 
648
  // Get order ID in correct way depending on WooCommerce version
649
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
650
  $order_id = $order->id;
651
  $mollie_payment_id = get_post_meta( $order_id, '_mollie_order_id', $single = true );
652
  } else {
@@ -714,13 +723,12 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
714
 
715
  // Subscription processing
716
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
717
-
718
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
719
  if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order->id ) ) {
720
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
721
  }
722
  } else {
723
- if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order->get_id() ) ) {
724
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
725
  }
726
  }
@@ -996,7 +1004,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
996
  */
997
  public function refund_amount($order, $amount, $payment_object, $reason)
998
  {
999
- $orderId = version_compare(WC_VERSION, '3.0', '<') ? $order->id : $order->get_id();
1000
 
1001
  Mollie_WC_Plugin::debug( 'Try to process an amount refund (not individual order line)' );
1002
 
59
  * @return array
60
  */
61
  public function getPaymentRequestData( $order, $customer_id ) {
62
+ $settings_helper = Mollie_WC_Plugin::getSettingsHelper();
63
  $payment_locale = $settings_helper->getPaymentLocale();
64
  $store_customer = $settings_helper->shouldStoreCustomer();
65
 
74
  $return_url = $gateway->getReturnUrl( $order );
75
  $webhook_url = $gateway->getWebhookUrl( $order );
76
 
77
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
78
 
79
  $paymentRequestData = array (
80
  'amount' => array (
93
 
94
  // Add sequenceType for subscriptions first payments
95
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
96
+ if ( mollieWooCommerceGetDataHelper()->isWcSubscription($order->id ) ) {
97
 
98
  // See get_available_payment_gateways() in woocommerce-subscriptions/includes/gateways/class-wc-subscriptions-payment-gateways.php
99
  $disable_automatic_payments = ( 'yes' == get_option( WC_Subscriptions_Admin::$option_prefix . '_turn_off_automatic_payments', 'no' ) ) ? true : false;
165
 
166
  // Add sequenceType for subscriptions first payments
167
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
168
+ if ( mollieWooCommerceGetDataHelper()->isWcSubscription($order->get_id() ) ) {
169
 
170
  // See get_available_payment_gateways() in woocommerce-subscriptions/includes/gateways/class-wc-subscriptions-payment-gateways.php
171
  $disable_automatic_payments = ( 'yes' == get_option( WC_Subscriptions_Admin::$option_prefix . '_turn_off_automatic_payments', 'no' ) ) ? true : false;
177
  }
178
  }
179
  }
180
+ $dataHelper = Mollie_WC_Plugin::getDataHelper();
181
+ $orderId = mollieWooCommerceOrderId($order);
182
+ if ($dataHelper->isSubscription($orderId)) {
183
+ $supports_subscriptions = $gateway->supports( 'subscriptions' );
184
+
185
+ if ( $supports_subscriptions == true ) {
186
+ $paymentRequestData['payment']['sequenceType'] = 'first';
187
+ }
188
+ }
189
 
190
  // Only add shippingAddress if all required fields are set
191
  if ( ! empty( $shippingAddress->streetAndNumber ) && ! empty( $shippingAddress->postalCode ) && ! empty( $shippingAddress->city ) && ! empty( $shippingAddress->country ) ) {
290
  public function onWebhookPaid( WC_Order $order, $payment, $paymentMethodTitle ) {
291
 
292
  // Get order ID in the correct way depending on WooCommerce version
293
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
294
  $orderId = $order->id;
295
  } else {
296
  $orderId = $order->get_id();
341
  'WC_Subscriptions_Admin'
342
  )
343
  ) {
344
+ if (Mollie_WC_Plugin::getDataHelper()->isWcSubscription($orderId)) {
345
  $this->deleteSubscriptionOrderFromPendingPaymentQueue($order);
346
  }
347
  }
362
  public function onWebhookAuthorized( WC_Order $order, $payment, $payment_method_title ) {
363
 
364
  // Get order ID in the correct way depending on WooCommerce version
365
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
366
  $orderId = $order->id;
367
  } else {
368
  $orderId = $order->get_id();
404
 
405
  // Subscription processing
406
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
407
+ if ( Mollie_WC_Plugin::getDataHelper()->isWcSubscription($orderId ) ) {
408
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
409
  }
410
  }
425
  public function onWebhookCompleted( WC_Order $order, $payment, $payment_method_title ) {
426
 
427
  // Get order ID in the correct way depending on WooCommerce version
428
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
429
  $orderId = $order->id;
430
  } else {
431
  $orderId = $order->get_id();
469
 
470
  // Subscription processing
471
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
472
+ if ( Mollie_WC_Plugin::getDataHelper()->isWcSubscription($orderId ) ) {
473
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
474
  }
475
  }
560
 
561
  // Subscription processing
562
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
563
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
564
  if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order->id ) ) {
565
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
566
  }
567
  } else {
568
+ if ( Mollie_WC_Plugin::getDataHelper()->isWcSubscription($order->get_id() ) ) {
569
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
570
  }
571
  }
580
  public function onWebhookFailed( WC_Order $order, $payment, $payment_method_title ) {
581
 
582
  // Get order ID in the correct way depending on WooCommerce version
583
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
584
  $order_id = $order->id;
585
  } else {
586
  $order_id = $order->get_id();
655
  public function onWebhookExpired( WC_Order $order, $payment, $payment_method_title ) {
656
 
657
  // Get order ID in correct way depending on WooCommerce version
658
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
659
  $order_id = $order->id;
660
  $mollie_payment_id = get_post_meta( $order_id, '_mollie_order_id', $single = true );
661
  } else {
723
 
724
  // Subscription processing
725
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
726
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
 
727
  if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order->id ) ) {
728
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
729
  }
730
  } else {
731
+ if ( Mollie_WC_Plugin::getDataHelper()->isWcSubscription($order->get_id() ) ) {
732
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
733
  }
734
  }
1004
  */
1005
  public function refund_amount($order, $amount, $payment_object, $reason)
1006
  {
1007
+ $orderId = version_compare(mollieWooCommerceWcVersion(), '3.0', '<') ? $order->id : $order->get_id();
1008
 
1009
  Mollie_WC_Plugin::debug( 'Try to process an amount refund (not individual order line)' );
1010
 
src/Mollie/WC/Payment/Payment.php CHANGED
@@ -84,7 +84,7 @@ class Mollie_WC_Payment_Payment extends Mollie_WC_Payment_Object {
84
  'WC_Subscriptions_Admin'
85
  )
86
  ) {
87
- if (Mollie_WC_Plugin::getDataHelper()->isSubscription($orderId)) {
88
  // See get_available_payment_gateways() in woocommerce-subscriptions/includes/gateways/class-wc-subscriptions-payment-gateways.php
89
  $disable_automatic_payments = ('yes' == get_option(
90
  WC_Subscriptions_Admin::$option_prefix
@@ -129,7 +129,7 @@ class Mollie_WC_Payment_Payment extends Mollie_WC_Payment_Object {
129
  self::$customerId = $this->getMollieCustomerIdFromPaymentObject();
130
  self::$order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
131
 
132
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
133
  update_post_meta( self::$order, '_mollie_paid_by_other_gateway', $this->data->id );
134
  } else {
135
  self::$order->update_meta_data( '_mollie_payment_id', $this->data->id );
@@ -207,7 +207,7 @@ class Mollie_WC_Payment_Payment extends Mollie_WC_Payment_Object {
207
  public function onWebhookPaid( WC_Order $order, $payment, $payment_method_title ) {
208
 
209
  // Get order ID in the correct way depending on WooCommerce version
210
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
211
  $orderId = $order->id;
212
  } else {
213
  $orderId = $order->get_id();
@@ -248,7 +248,7 @@ class Mollie_WC_Payment_Payment extends Mollie_WC_Payment_Object {
248
 
249
  // Subscription processing
250
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
251
- if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $orderId ) ) {
252
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
253
  }
254
  }
@@ -340,12 +340,12 @@ class Mollie_WC_Payment_Payment extends Mollie_WC_Payment_Object {
340
 
341
  // Subscription processing
342
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
343
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
344
  if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order->id ) ) {
345
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
346
  }
347
  } else {
348
- if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order->get_id() ) ) {
349
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
350
  }
351
  }
@@ -360,7 +360,7 @@ class Mollie_WC_Payment_Payment extends Mollie_WC_Payment_Object {
360
  public function onWebhookFailed( WC_Order $order, $payment, $payment_method_title ) {
361
 
362
  // Get order ID in the correct way depending on WooCommerce version
363
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
364
  $order_id = $order->id;
365
  } else {
366
  $order_id = $order->get_id();
@@ -434,7 +434,7 @@ class Mollie_WC_Payment_Payment extends Mollie_WC_Payment_Object {
434
  public function onWebhookExpired( WC_Order $order, $payment, $payment_method_title ) {
435
 
436
  // Get order ID in correct way depending on WooCommerce version
437
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
438
  $order_id = $order->id;
439
  $mollie_payment_id = get_post_meta( $order_id, '_mollie_payment_id', $single = true );
440
  } else {
84
  'WC_Subscriptions_Admin'
85
  )
86
  ) {
87
+ if (Mollie_WC_Plugin::getDataHelper()->isWcSubscription($orderId)) {
88
  // See get_available_payment_gateways() in woocommerce-subscriptions/includes/gateways/class-wc-subscriptions-payment-gateways.php
89
  $disable_automatic_payments = ('yes' == get_option(
90
  WC_Subscriptions_Admin::$option_prefix
129
  self::$customerId = $this->getMollieCustomerIdFromPaymentObject();
130
  self::$order = Mollie_WC_Plugin::getDataHelper()->getWcOrder( $order_id );
131
 
132
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
133
  update_post_meta( self::$order, '_mollie_paid_by_other_gateway', $this->data->id );
134
  } else {
135
  self::$order->update_meta_data( '_mollie_payment_id', $this->data->id );
207
  public function onWebhookPaid( WC_Order $order, $payment, $payment_method_title ) {
208
 
209
  // Get order ID in the correct way depending on WooCommerce version
210
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
211
  $orderId = $order->id;
212
  } else {
213
  $orderId = $order->get_id();
248
 
249
  // Subscription processing
250
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
251
+ if ( Mollie_WC_Plugin::getDataHelper()->isWcSubscription($orderId ) ) {
252
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
253
  }
254
  }
340
 
341
  // Subscription processing
342
  if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
343
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
344
  if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order->id ) ) {
345
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
346
  }
347
  } else {
348
+ if ( Mollie_WC_Plugin::getDataHelper()->isWcSubscription($order->get_id() ) ) {
349
  $this->deleteSubscriptionOrderFromPendingPaymentQueue( $order );
350
  }
351
  }
360
  public function onWebhookFailed( WC_Order $order, $payment, $payment_method_title ) {
361
 
362
  // Get order ID in the correct way depending on WooCommerce version
363
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
364
  $order_id = $order->id;
365
  } else {
366
  $order_id = $order->get_id();
434
  public function onWebhookExpired( WC_Order $order, $payment, $payment_method_title ) {
435
 
436
  // Get order ID in correct way depending on WooCommerce version
437
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
438
  $order_id = $order->id;
439
  $mollie_payment_id = get_post_meta( $order_id, '_mollie_payment_id', $single = true );
440
  } else {
src/Mollie/WC/Plugin.php CHANGED
@@ -8,7 +8,7 @@ class Mollie_WC_Plugin
8
  {
9
  const PLUGIN_ID = 'mollie-payments-for-woocommerce';
10
  const PLUGIN_TITLE = 'Mollie Payments for WooCommerce';
11
- const PLUGIN_VERSION = '5.11.0';
12
 
13
  const DB_VERSION = '1.0';
14
  const DB_VERSION_PARAM_NAME = 'mollie-db-version';
@@ -124,7 +124,7 @@ class Mollie_WC_Plugin
124
  if ($order->get_status() == Mollie_WC_Gateway_Abstract::STATUS_COMPLETED){
125
 
126
  $new_order_status = Mollie_WC_Gateway_Abstract::STATUS_FAILED;
127
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
128
  $paymentMethodId = get_post_meta( $order->id, '_payment_method_title', true );
129
  $molliePaymentId = get_post_meta( $order->id, '_mollie_payment_id', true );
130
  } else {
@@ -139,7 +139,7 @@ class Mollie_WC_Plugin
139
 
140
  $order->update_status($new_order_status, '');
141
 
142
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
143
  if ( get_post_meta( $order->id, '_order_stock_reduced', $single = true ) ) {
144
  // Restore order stock
145
  Mollie_WC_Plugin::getDataHelper()->restoreOrderStock( $order );
@@ -188,10 +188,6 @@ class Mollie_WC_Plugin
188
  $settings_helper = self::getSettingsHelper();
189
  $data_helper = self::getDataHelper();
190
 
191
- // Add global Mollie settings to 'WooCommerce -> Checkout -> Checkout Options'
192
- add_filter( 'woocommerce_payment_gateways_settings', array ( $settings_helper, 'addGlobalSettingsFields' ) );
193
- remove_filter('wp_kses_allowed_html', array ( $settings_helper, 'svgAllowedTags' ) , 10);
194
-
195
  // When page 'WooCommerce -> Checkout -> Checkout Options' is saved
196
  add_action( 'woocommerce_settings_save_checkout', array ( $data_helper, 'deleteTransients' ) );
197
 
@@ -219,6 +215,18 @@ class Mollie_WC_Plugin
219
  10,
220
  2
221
  );
 
 
 
 
 
 
 
 
 
 
 
 
222
 
223
  // Add settings link to plugins page
224
  add_filter( 'plugin_action_links_' . $plugin_basename, array ( __CLASS__, 'addPluginActionLinks' ) );
@@ -257,7 +265,6 @@ class Mollie_WC_Plugin
257
  // Enqueue Scripts
258
  add_action('wp_enqueue_scripts', [__CLASS__, 'enqueueFrontendScripts']);
259
  add_action('wp_enqueue_scripts', [__CLASS__, 'enqueueComponentsAssets']);
260
- add_action('wp_enqueue_scripts', [__CLASS__, 'enqueueMealvoucherAssets']);
261
  add_action('wp_enqueue_scripts', [__CLASS__, 'enqueueApplePayDirectScripts']);
262
 
263
  add_action(
@@ -276,7 +283,7 @@ class Mollie_WC_Plugin
276
  add_filter(
277
  'woocommerce_get_settings_pages',
278
  function ($settings) {
279
- $settings[] = new Mollie_WC_Settings_Page_Components();
280
 
281
  return $settings;
282
  }
@@ -296,6 +303,9 @@ class Mollie_WC_Plugin
296
  add_filter( 'woocommerce_product_data_panels', [__CLASS__, 'mollieOptionsProductTabContent'] );
297
  add_action( 'woocommerce_process_product_meta_simple', [__CLASS__, 'saveProductVoucherOptionFields'] );
298
  add_action( 'woocommerce_process_product_meta_variable', [__CLASS__, 'saveProductVoucherOptionFields'] );
 
 
 
299
 
300
  add_filter( Mollie_WC_Plugin::PLUGIN_ID . '_retrieve_payment_gateways', function(){
301
  return self::$GATEWAYS;
@@ -311,6 +321,7 @@ class Mollie_WC_Plugin
311
  self::$initiated = true;
312
  }
313
 
 
314
  public static function maybeTestModeNotice()
315
  {
316
  if (mollieWooCommerceIsTestModeEnabled()) {
@@ -356,7 +367,10 @@ class Mollie_WC_Plugin
356
 
357
  ?>
358
  <div class='options_group'><?php
359
-
 
 
 
360
  woocommerce_wp_select(
361
  array(
362
  'id' => Mollie_WC_Gateway_Mealvoucher::MOLLIE_VOUCHER_CATEGORY_OPTION,
@@ -371,13 +385,14 @@ class Mollie_WC_Plugin
371
 
372
  'type' => 'select',
373
  'options' => array(
 
374
  Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY => 'No category',
375
  Mollie_WC_Gateway_Mealvoucher::MEAL => 'Meal',
376
  Mollie_WC_Gateway_Mealvoucher::ECO => 'Eco',
377
  Mollie_WC_Gateway_Mealvoucher::GIFT => 'Gift'
378
 
379
  ),
380
- 'default' => Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY,
381
  /* translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting */
382
  'description' => sprintf(
383
  __(
@@ -415,7 +430,53 @@ class Mollie_WC_Plugin
415
  );
416
  }
417
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
419
 
420
  /**
421
  * Enqueues the ApplePay button scripts if enabled and in correct page
@@ -576,13 +637,6 @@ class Mollie_WC_Plugin
576
  filemtime(Mollie_WC_Plugin::getPluginPath('/public/css/unabledButton.min.css')),
577
  'screen'
578
  );
579
- wp_register_script(
580
- 'mollie_wc_gateway_mealvoucher',
581
- Mollie_WC_Plugin::getPluginUrl('/public/js/mealvoucher.min.js'),
582
- ['underscore', 'jquery'],
583
- filemtime(Mollie_WC_Plugin::getPluginPath('/public/js/mealvoucher.min.js')),
584
- true
585
- );
586
  }
587
 
588
  /**
@@ -600,28 +654,8 @@ class Mollie_WC_Plugin
600
  if (!$applePayGatewayEnabled) {
601
  return;
602
  }
603
-
604
- wp_enqueue_script('mollie_wc_gateway_applepay');
605
- wp_enqueue_script('mollie_wc_gateway_mealvoucher');
606
  wp_enqueue_style('unabledButton');
607
-
608
- }
609
-
610
- public static function enqueueMealvoucherAssets()
611
- {
612
- if (is_admin() || !mollieWooCommerceIsCheckoutContext()) {
613
- return;
614
- }
615
- $enableButtonHelper = new Mollie_WC_Helper_MaybeDisableGateway();
616
- wp_localize_script(
617
- 'mollie_wc_gateway_mealvoucher',
618
- 'mealvoucherSettings',
619
- [
620
- 'message'=> __('Some products in the cart cannot be purchased with the selected gateway. Please, select another gateway'),
621
- 'productsWithCategory' => $enableButtonHelper->numberProductsWithCategory()
622
-
623
- ]
624
- );
625
  }
626
 
627
  /**
@@ -856,7 +890,7 @@ class Mollie_WC_Plugin
856
  }
857
 
858
  // Remove Klarna if WooCommerce is not version 3.0 or higher
859
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
860
  if ( is_admin() && ! empty( $current_screen->base ) && $current_screen->base == 'woocommerce_page_wc-settings' ) {
861
  if ( ( $key = array_search( 'Mollie_WC_Gateway_KlarnaPayLater', $gateways ) ) !== false ) {
862
  unset( $gateways[ $key ] );
@@ -999,7 +1033,7 @@ class Mollie_WC_Plugin
999
  // Convert message to string
1000
  if (!is_string($message))
1001
  {
1002
- $message = ( version_compare( WC_VERSION, '3.0', '<' ) ) ? print_r($message, true) : wc_print_r($message, true);
1003
  }
1004
 
1005
  // Set debug header
@@ -1011,7 +1045,7 @@ class Mollie_WC_Plugin
1011
  // Log message
1012
  if ( self::getSettingsHelper()->isDebugEnabled() ) {
1013
 
1014
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1015
 
1016
  static $logger;
1017
 
@@ -1193,7 +1227,7 @@ class Mollie_WC_Plugin
1193
  public static function shipAndCaptureOrderAtMollie( $order_id ) {
1194
 
1195
  // If this is an older WooCommerce version, don't run.
1196
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1197
  return;
1198
  }
1199
 
@@ -1274,7 +1308,7 @@ class Mollie_WC_Plugin
1274
  public static function cancelOrderAtMollie( $order_id ) {
1275
 
1276
  // If this is an older WooCommerce version, don't run.
1277
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1278
  return;
1279
  }
1280
 
@@ -1294,7 +1328,7 @@ class Mollie_WC_Plugin
1294
  Mollie_WC_Plugin::debug( __METHOD__ . ' - ' . $order_id . ' - Try to process cancelled order at Mollie.' );
1295
 
1296
  // Does WooCommerce order contain a Mollie Order?
1297
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1298
  $mollie_order_id = ( $mollie_order_id = get_post_meta( $order->id, '_mollie_order_id', true ) ) ? $mollie_order_id : false;
1299
  } else {
1300
  $mollie_order_id = ( $mollie_order_id = $order->get_meta( '_mollie_order_id', true ) ) ? $mollie_order_id : false;
@@ -1401,7 +1435,7 @@ class Mollie_WC_Plugin
1401
 
1402
  $order = wc_get_order( $order_id );
1403
 
1404
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
1405
 
1406
  $mollie_payment_id = get_post_meta( $order_id, '_mollie_payment_id', $single = true );
1407
  $order_payment_method = get_post_meta( $order_id, '_payment_method', $single = true );
8
  {
9
  const PLUGIN_ID = 'mollie-payments-for-woocommerce';
10
  const PLUGIN_TITLE = 'Mollie Payments for WooCommerce';
11
+ const PLUGIN_VERSION = '6.0';
12
 
13
  const DB_VERSION = '1.0';
14
  const DB_VERSION_PARAM_NAME = 'mollie-db-version';
124
  if ($order->get_status() == Mollie_WC_Gateway_Abstract::STATUS_COMPLETED){
125
 
126
  $new_order_status = Mollie_WC_Gateway_Abstract::STATUS_FAILED;
127
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
128
  $paymentMethodId = get_post_meta( $order->id, '_payment_method_title', true );
129
  $molliePaymentId = get_post_meta( $order->id, '_mollie_payment_id', true );
130
  } else {
139
 
140
  $order->update_status($new_order_status, '');
141
 
142
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
143
  if ( get_post_meta( $order->id, '_order_stock_reduced', $single = true ) ) {
144
  // Restore order stock
145
  Mollie_WC_Plugin::getDataHelper()->restoreOrderStock( $order );
188
  $settings_helper = self::getSettingsHelper();
189
  $data_helper = self::getDataHelper();
190
 
 
 
 
 
191
  // When page 'WooCommerce -> Checkout -> Checkout Options' is saved
192
  add_action( 'woocommerce_settings_save_checkout', array ( $data_helper, 'deleteTransients' ) );
193
 
215
  10,
216
  2
217
  );
218
+ add_action(
219
+ 'update_option_mollie-payments-for-woocommerce_live_api_key',
220
+ [$settings_helper, 'updateMerchantIdAfterApiKeyChanges'],
221
+ 10,
222
+ 3
223
+ );
224
+ add_action(
225
+ 'update_option_mollie-payments-for-woocommerce_test_api_key',
226
+ [$settings_helper, 'updateMerchantIdAfterApiKeyChanges'],
227
+ 10,
228
+ 3
229
+ );
230
 
231
  // Add settings link to plugins page
232
  add_filter( 'plugin_action_links_' . $plugin_basename, array ( __CLASS__, 'addPluginActionLinks' ) );
265
  // Enqueue Scripts
266
  add_action('wp_enqueue_scripts', [__CLASS__, 'enqueueFrontendScripts']);
267
  add_action('wp_enqueue_scripts', [__CLASS__, 'enqueueComponentsAssets']);
 
268
  add_action('wp_enqueue_scripts', [__CLASS__, 'enqueueApplePayDirectScripts']);
269
 
270
  add_action(
283
  add_filter(
284
  'woocommerce_get_settings_pages',
285
  function ($settings) {
286
+ $settings[] = new Mollie_WC_Settings_Page_Mollie(self::getSettingsHelper());
287
 
288
  return $settings;
289
  }
303
  add_filter( 'woocommerce_product_data_panels', [__CLASS__, 'mollieOptionsProductTabContent'] );
304
  add_action( 'woocommerce_process_product_meta_simple', [__CLASS__, 'saveProductVoucherOptionFields'] );
305
  add_action( 'woocommerce_process_product_meta_variable', [__CLASS__, 'saveProductVoucherOptionFields'] );
306
+ add_action( 'woocommerce_product_after_variable_attributes', [__CLASS__,'voucherFieldInVariations'], 10, 3 );
307
+ add_action( 'woocommerce_save_product_variation', [__CLASS__,'saveVoucherFieldVariations'], 10, 2 );
308
+ add_filter( 'woocommerce_available_variation', [__CLASS__,'addVoucherVariationData'] );
309
 
310
  add_filter( Mollie_WC_Plugin::PLUGIN_ID . '_retrieve_payment_gateways', function(){
311
  return self::$GATEWAYS;
321
  self::$initiated = true;
322
  }
323
 
324
+
325
  public static function maybeTestModeNotice()
326
  {
327
  if (mollieWooCommerceIsTestModeEnabled()) {
367
 
368
  ?>
369
  <div class='options_group'><?php
370
+ $voucherSettings = get_option(
371
+ 'mollie_wc_gateway_mealvoucher_settings'
372
+ );
373
+ $defaultCategory = $voucherSettings? $voucherSettings['mealvoucher_category_default']:Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY;
374
  woocommerce_wp_select(
375
  array(
376
  'id' => Mollie_WC_Gateway_Mealvoucher::MOLLIE_VOUCHER_CATEGORY_OPTION,
385
 
386
  'type' => 'select',
387
  'options' => array(
388
+ $defaultCategory => __( 'Same as default category', 'mollie-payments-for-woocommerce' ),
389
  Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY => 'No category',
390
  Mollie_WC_Gateway_Mealvoucher::MEAL => 'Meal',
391
  Mollie_WC_Gateway_Mealvoucher::ECO => 'Eco',
392
  Mollie_WC_Gateway_Mealvoucher::GIFT => 'Gift'
393
 
394
  ),
395
+ 'default' => $defaultCategory,
396
  /* translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting */
397
  'description' => sprintf(
398
  __(
430
  );
431
  }
432
 
433
+ /**
434
+ * Add dedicated voucher category field for variations.
435
+ * Default is the same as the general voucher category
436
+ * @param $loop
437
+ * @param $variation_data
438
+ * @param $variation
439
+ */
440
+ public static function voucherFieldInVariations($loop, $variation_data, $variation ) {
441
+ $voucherSettings = get_option(
442
+ 'mollie_wc_gateway_mealvoucher_settings'
443
+ );
444
+ $defaultCategory = $voucherSettings? $voucherSettings['mealvoucher_category_default']:Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY;
445
+ woocommerce_wp_select(
446
+ array(
447
+ 'id' => 'voucher[' . $variation->ID . ']',
448
+ 'label' => __( 'Mollie Voucher category', 'mollie-payments-for-woocommerce' ),
449
+ 'value' => get_post_meta( $variation->ID, 'voucher', true ),
450
+ 'options' => array(
451
+ $defaultCategory => __( 'Same as default category', 'mollie-payments-for-woocommerce' ),
452
+ Mollie_WC_Gateway_Mealvoucher::NO_CATEGORY => __( 'No Category', 'mollie-payments-for-woocommerce' ),
453
+ Mollie_WC_Gateway_Mealvoucher::MEAL => __( 'Meal', 'mollie-payments-for-woocommerce' ),
454
+ Mollie_WC_Gateway_Mealvoucher::ECO => __( 'Eco', 'mollie-payments-for-woocommerce' ),
455
+ Mollie_WC_Gateway_Mealvoucher::GIFT => __( 'Gift', 'mollie-payments-for-woocommerce' )
456
+ ),
457
+ )
458
+ );
459
+ }
460
 
461
+ /**
462
+ * Save the voucher option in the variation product
463
+ * @param $variation_id
464
+ * @param $i
465
+ */
466
+ public static function saveVoucherFieldVariations($variation_id, $i ) {
467
+ $optionName = 'voucher';
468
+ $args = [$optionName => ['filter' => FILTER_SANITIZE_STRING, 'flags'=>FILTER_REQUIRE_ARRAY]];
469
+ $option = filter_input_array(INPUT_POST, $args);
470
+ $voucherCategory = $option[$optionName][$variation_id] ? $option[$optionName][$variation_id] : null;
471
+
472
+ if ( isset( $voucherCategory ) ) update_post_meta( $variation_id, $optionName, esc_attr( $voucherCategory ) );
473
+ }
474
+
475
+ public static function addVoucherVariationData( $variations ) {
476
+ $optionName = 'voucher';
477
+ $variations[$optionName] = get_post_meta( $variations[ 'variation_id' ], $optionName, true );
478
+ return $variations;
479
+ }
480
 
481
  /**
482
  * Enqueues the ApplePay button scripts if enabled and in correct page
637
  filemtime(Mollie_WC_Plugin::getPluginPath('/public/css/unabledButton.min.css')),
638
  'screen'
639
  );
 
 
 
 
 
 
 
640
  }
641
 
642
  /**
654
  if (!$applePayGatewayEnabled) {
655
  return;
656
  }
 
 
 
657
  wp_enqueue_style('unabledButton');
658
+ wp_enqueue_script('mollie_wc_gateway_applepay');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
659
  }
660
 
661
  /**
890
  }
891
 
892
  // Remove Klarna if WooCommerce is not version 3.0 or higher
893
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
894
  if ( is_admin() && ! empty( $current_screen->base ) && $current_screen->base == 'woocommerce_page_wc-settings' ) {
895
  if ( ( $key = array_search( 'Mollie_WC_Gateway_KlarnaPayLater', $gateways ) ) !== false ) {
896
  unset( $gateways[ $key ] );
1033
  // Convert message to string
1034
  if (!is_string($message))
1035
  {
1036
+ $message = ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) ? print_r($message, true) : wc_print_r($message, true);
1037
  }
1038
 
1039
  // Set debug header
1045
  // Log message
1046
  if ( self::getSettingsHelper()->isDebugEnabled() ) {
1047
 
1048
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
1049
 
1050
  static $logger;
1051
 
1227
  public static function shipAndCaptureOrderAtMollie( $order_id ) {
1228
 
1229
  // If this is an older WooCommerce version, don't run.
1230
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
1231
  return;
1232
  }
1233
 
1308
  public static function cancelOrderAtMollie( $order_id ) {
1309
 
1310
  // If this is an older WooCommerce version, don't run.
1311
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
1312
  return;
1313
  }
1314
 
1328
  Mollie_WC_Plugin::debug( __METHOD__ . ' - ' . $order_id . ' - Try to process cancelled order at Mollie.' );
1329
 
1330
  // Does WooCommerce order contain a Mollie Order?
1331
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
1332
  $mollie_order_id = ( $mollie_order_id = get_post_meta( $order->id, '_mollie_order_id', true ) ) ? $mollie_order_id : false;
1333
  } else {
1334
  $mollie_order_id = ( $mollie_order_id = $order->get_meta( '_mollie_order_id', true ) ) ? $mollie_order_id : false;
1435
 
1436
  $order = wc_get_order( $order_id );
1437
 
1438
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
1439
 
1440
  $mollie_payment_id = get_post_meta( $order_id, '_mollie_payment_id', $single = true );
1441
  $order_payment_method = get_post_meta( $order_id, '_payment_method', $single = true );
src/Mollie/WC/Settings/Page/Mollie.php ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Mollie_WC_Settings_Page_Mollie extends WC_Settings_Page
4
+ {
5
+ const FILTER_COMPONENTS_SETTINGS = 'mollie_settings';
6
+ protected $settingsHelper;
7
+
8
+ public function __construct(Mollie_WC_Helper_Settings $settingsHelper)
9
+ {
10
+ $this->id = 'mollie_settings';
11
+ $this->label = __('Mollie Settings', 'mollie-payments-for-woocommerce');
12
+ $this->settingsHelper = $settingsHelper;
13
+
14
+ add_action(
15
+ 'woocommerce_sections_' . $this->id,
16
+ array($this, 'output_sections')
17
+ );
18
+ parent::__construct();
19
+ }
20
+
21
+ public function output()
22
+ {
23
+ global $current_section;
24
+ $settings = $this->get_settings($current_section);
25
+ WC_Admin_Settings::output_fields($settings);
26
+ }
27
+ /**
28
+ * Save settings
29
+ *
30
+ * @since 1.0
31
+ */
32
+ public function save()
33
+ {
34
+ global $current_section;
35
+
36
+ $settings = $this->get_settings($current_section);
37
+ if ('applepay_button' === $current_section) {
38
+ $data = filter_var_array($_POST,FILTER_SANITIZE_STRING);
39
+
40
+ $applepaySettings = [];
41
+ $data['enabled'] === '1' ? $applepaySettings['enabled'] = 'yes'
42
+ : $applepaySettings['enabled'] = 'no';
43
+ $data['display_logo'] === '1' ?
44
+ $applepaySettings['display_logo'] = 'yes'
45
+ : $applepaySettings['display_logo'] = 'no';
46
+ $data['mollie_apple_pay_button_enabled'] === '1' ?
47
+ $applepaySettings['mollie_apple_pay_button_enabled'] = 'yes'
48
+ : $applepaySettings['mollie_apple_pay_button_enabled'] = 'no';
49
+ $data['title'] ? $applepaySettings['title'] = $data['title']
50
+ : $applepaySettings['title'] = '';
51
+ $data['description'] ?
52
+ $applepaySettings['description'] = $data['description']
53
+ : $applepaySettings['description'] = '';
54
+ update_option(
55
+ 'mollie_wc_gateway_applepay_settings',
56
+ $applepaySettings
57
+ );
58
+ } else {
59
+ WC_Admin_Settings::save_fields($settings);
60
+ }
61
+ }
62
+
63
+ public function get_settings($current_section = '')
64
+ {
65
+ $mollieSettings = $this->settingsHelper->addGlobalSettingsFields([]);
66
+
67
+ if ('mollie_components' === $current_section) {
68
+ $mollieSettings = $this->sectionSettings(
69
+ $this->componentsFilePath()
70
+ );
71
+ }
72
+ if ('applepay_button' === $current_section) {
73
+ $mollieSettings = $this->sectionSettings($this->applePaySection());
74
+ }
75
+ if ('advanced' === $current_section) {
76
+ $mollieSettings = $this->sectionSettings($this->advancedSectionFilePath());
77
+ }
78
+
79
+ /**
80
+ * Filter Component Settings
81
+ *
82
+ * @param array $componentSettings Default components settings for the Credit Card Gateway
83
+ */
84
+ $mollieSettings = apply_filters(
85
+ self::FILTER_COMPONENTS_SETTINGS,
86
+ $mollieSettings
87
+ );
88
+
89
+ $mollieSettings = apply_filters(
90
+ 'woocommerce_get_settings_' . $this->id,
91
+ $mollieSettings,
92
+ $current_section
93
+ );
94
+
95
+ return $mollieSettings;
96
+ }
97
+
98
+ /**
99
+ * @param $filePath
100
+ *
101
+ * @return array|mixed
102
+ */
103
+ protected function sectionSettings($filePath)
104
+ {
105
+ if (!file_exists($filePath)) {
106
+ return [];
107
+ }
108
+
109
+ $section = include $filePath;
110
+
111
+ if (!is_array($section)) {
112
+ $section = [];
113
+ }
114
+
115
+ return $section;
116
+ }
117
+
118
+ /**
119
+ * @return string
120
+ */
121
+ protected function componentsFilePath()
122
+ {
123
+ return Mollie_WC_Plugin::getPluginPath(
124
+ '/inc/settings/mollie_components.php'
125
+ );
126
+ }
127
+
128
+ /**
129
+ * @return string
130
+ */
131
+ protected function applePaySection()
132
+ {
133
+ return Mollie_WC_Plugin::getPluginPath(
134
+ '/inc/settings/mollie_applepay_settings.php'
135
+ );
136
+ }
137
+
138
+ /**
139
+ * @return string
140
+ */
141
+ protected function advancedSectionFilePath()
142
+ {
143
+ return Mollie_WC_Plugin::getPluginPath(
144
+ '/inc/settings/mollie_advanced_settings.php'
145
+ );
146
+ }
147
+
148
+ /**
149
+ * @return array|mixed|void|null
150
+ */
151
+ public function get_sections()
152
+ {
153
+ $sections = array(
154
+ '' => __('General', 'mollie-payments-for-woocommerce'),
155
+ 'mollie_components' => __(
156
+ 'Mollie Components',
157
+ 'mollie-payments-for-woocommerce'
158
+ ),
159
+ 'applepay_button' => __(
160
+ 'Apple Pay Button',
161
+ 'mollie-payments-for-woocommerce'
162
+ ),
163
+ 'advanced' => __('Advanced', 'mollie-payments-for-woocommerce')
164
+ );
165
+
166
+ return apply_filters(
167
+ 'woocommerce_get_sections_' . $this->id,
168
+ $sections
169
+ );
170
+ }
171
+ }
src/subscriptions_status_check_functions.php CHANGED
@@ -63,7 +63,7 @@ class WC_Tools_Subscriptions_Status_Button {
63
  foreach ( $subscriptions as $subscription ) {
64
 
65
  // Get all data in the correct way for WooCommerce 3.x or lower
66
- if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
67
  $subscription_is_manual = get_post_meta( $subscription->id, '_requires_manual_renewal', true );
68
  $subscription_status = $subscription->status;
69
 
63
  foreach ( $subscriptions as $subscription ) {
64
 
65
  // Get all data in the correct way for WooCommerce 3.x or lower
66
+ if ( version_compare( mollieWooCommerceWcVersion(), '3.0', '<' ) ) {
67
  $subscription_is_manual = get_post_meta( $subscription->id, '_requires_manual_renewal', true );
68
  $subscription_status = $subscription->status;
69
 
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitf70a0f41b078d169eea764ab1da660cc::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit99ba9400707b992e810823e2ec5b2c90::getLoader();
vendor/composer/LICENSE DELETED
@@ -1,21 +0,0 @@
1
-
2
- Copyright (c) Nils Adermann, Jordi Boggiano
3
-
4
- Permission is hereby granted, free of charge, to any person obtaining a copy
5
- of this software and associated documentation files (the "Software"), to deal
6
- in the Software without restriction, including without limitation the rights
7
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
- copies of the Software, and to permit persons to whom the Software is furnished
9
- to do so, subject to the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be included in all
12
- copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
- THE SOFTWARE.
21
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/composer/autoload_classmap.php CHANGED
@@ -6,7 +6,11 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
 
 
9
  'Composer\\CaBundle\\CaBundle' => $vendorDir . '/composer/ca-bundle/src/CaBundle.php',
 
 
10
  'GuzzleHttp\\Client' => $vendorDir . '/guzzlehttp/guzzle/src/Client.php',
11
  'GuzzleHttp\\ClientInterface' => $vendorDir . '/guzzlehttp/guzzle/src/ClientInterface.php',
12
  'GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
@@ -40,8 +44,11 @@ return array(
40
  'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php',
41
  'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php',
42
  'GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/guzzlehttp/promises/src/Coroutine.php',
 
 
43
  'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php',
44
  'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php',
 
45
  'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php',
46
  'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php',
47
  'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php',
@@ -49,18 +56,23 @@ return array(
49
  'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php',
50
  'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php',
51
  'GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/guzzlehttp/promises/src/TaskQueueInterface.php',
 
52
  'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php',
53
  'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php',
54
  'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php',
55
  'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php',
56
  'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php',
 
57
  'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php',
58
  'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php',
59
  'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php',
 
60
  'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php',
 
61
  'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php',
62
  'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php',
63
  'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php',
 
64
  'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php',
65
  'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php',
66
  'GuzzleHttp\\Psr7\\Rfc7230' => $vendorDir . '/guzzlehttp/psr7/src/Rfc7230.php',
@@ -72,11 +84,13 @@ return array(
72
  'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php',
73
  'GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php',
74
  'GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php',
 
75
  'GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
76
  'GuzzleHttp\\RequestOptions' => $vendorDir . '/guzzlehttp/guzzle/src/RequestOptions.php',
77
  'GuzzleHttp\\RetryMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
78
  'GuzzleHttp\\TransferStats' => $vendorDir . '/guzzlehttp/guzzle/src/TransferStats.php',
79
  'GuzzleHttp\\UriTemplate' => $vendorDir . '/guzzlehttp/guzzle/src/UriTemplate.php',
 
80
  'Mollie\\Api\\CompatibilityChecker' => $vendorDir . '/mollie/mollie-api-php/src/CompatibilityChecker.php',
81
  'Mollie\\Api\\Endpoints\\ChargebackEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/ChargebackEndpoint.php',
82
  'Mollie\\Api\\Endpoints\\CollectionEndpointAbstract' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/CollectionEndpointAbstract.php',
@@ -100,12 +114,14 @@ return array(
100
  'Mollie\\Api\\Endpoints\\ProfileEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/ProfileEndpoint.php',
101
  'Mollie\\Api\\Endpoints\\ProfileMethodEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/ProfileMethodEndpoint.php',
102
  'Mollie\\Api\\Endpoints\\RefundEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/RefundEndpoint.php',
 
103
  'Mollie\\Api\\Endpoints\\SettlementsEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/SettlementsEndpoint.php',
104
  'Mollie\\Api\\Endpoints\\ShipmentEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/ShipmentEndpoint.php',
105
  'Mollie\\Api\\Endpoints\\SubscriptionEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/SubscriptionEndpoint.php',
106
  'Mollie\\Api\\Endpoints\\WalletEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/WalletEndpoint.php',
107
  'Mollie\\Api\\Exceptions\\ApiException' => $vendorDir . '/mollie/mollie-api-php/src/Exceptions/ApiException.php',
108
  'Mollie\\Api\\Exceptions\\IncompatiblePlatform' => $vendorDir . '/mollie/mollie-api-php/src/Exceptions/IncompatiblePlatform.php',
 
109
  'Mollie\\Api\\MollieApiClient' => $vendorDir . '/mollie/mollie-api-php/src/MollieApiClient.php',
110
  'Mollie\\Api\\Resources\\BaseCollection' => $vendorDir . '/mollie/mollie-api-php/src/Resources/BaseCollection.php',
111
  'Mollie\\Api\\Resources\\BaseResource' => $vendorDir . '/mollie/mollie-api-php/src/Resources/BaseResource.php',
@@ -157,6 +173,7 @@ return array(
157
  'Mollie\\Api\\Types\\OrderLineType' => $vendorDir . '/mollie/mollie-api-php/src/Types/OrderLineType.php',
158
  'Mollie\\Api\\Types\\OrderStatus' => $vendorDir . '/mollie/mollie-api-php/src/Types/OrderStatus.php',
159
  'Mollie\\Api\\Types\\PaymentMethod' => $vendorDir . '/mollie/mollie-api-php/src/Types/PaymentMethod.php',
 
160
  'Mollie\\Api\\Types\\PaymentStatus' => $vendorDir . '/mollie/mollie-api-php/src/Types/PaymentStatus.php',
161
  'Mollie\\Api\\Types\\ProfileStatus' => $vendorDir . '/mollie/mollie-api-php/src/Types/ProfileStatus.php',
162
  'Mollie\\Api\\Types\\RefundStatus' => $vendorDir . '/mollie/mollie-api-php/src/Types/RefundStatus.php',
@@ -219,6 +236,9 @@ return array(
219
  'Mollie_WC_Plugin' => $baseDir . '/src/Mollie/WC/Plugin.php',
220
  'Mollie_WC_Settings_Components' => $baseDir . '/src/Mollie/WC/Settings/Components.php',
221
  'Mollie_WC_Settings_Page_Components' => $baseDir . '/src/Mollie/WC/Settings/Page/Components.php',
 
 
 
222
  'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php',
223
  'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php',
224
  'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php',
@@ -226,4 +246,13 @@ return array(
226
  'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php',
227
  'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php',
228
  'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php',
 
 
 
 
 
 
 
 
 
229
  );
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
+ 'ArithmeticError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php',
10
+ 'AssertionError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/AssertionError.php',
11
  'Composer\\CaBundle\\CaBundle' => $vendorDir . '/composer/ca-bundle/src/CaBundle.php',
12
+ 'DivisionByZeroError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php',
13
+ 'Error' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/Error.php',
14
  'GuzzleHttp\\Client' => $vendorDir . '/guzzlehttp/guzzle/src/Client.php',
15
  'GuzzleHttp\\ClientInterface' => $vendorDir . '/guzzlehttp/guzzle/src/ClientInterface.php',
16
  'GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
44
  'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php',
45
  'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php',
46
  'GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/guzzlehttp/promises/src/Coroutine.php',
47
+ 'GuzzleHttp\\Promise\\Create' => $vendorDir . '/guzzlehttp/promises/src/Create.php',
48
+ 'GuzzleHttp\\Promise\\Each' => $vendorDir . '/guzzlehttp/promises/src/Each.php',
49
  'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php',
50
  'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php',
51
+ 'GuzzleHttp\\Promise\\Is' => $vendorDir . '/guzzlehttp/promises/src/Is.php',
52
  'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php',
53
  'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php',
54
  'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php',
56
  'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php',
57
  'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php',
58
  'GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/guzzlehttp/promises/src/TaskQueueInterface.php',
59
+ 'GuzzleHttp\\Promise\\Utils' => $vendorDir . '/guzzlehttp/promises/src/Utils.php',
60
  'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php',
61
  'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php',
62
  'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php',
63
  'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php',
64
  'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php',
65
+ 'GuzzleHttp\\Psr7\\Header' => $vendorDir . '/guzzlehttp/psr7/src/Header.php',
66
  'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php',
67
  'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php',
68
  'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php',
69
+ 'GuzzleHttp\\Psr7\\Message' => $vendorDir . '/guzzlehttp/psr7/src/Message.php',
70
  'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php',
71
+ 'GuzzleHttp\\Psr7\\MimeType' => $vendorDir . '/guzzlehttp/psr7/src/MimeType.php',
72
  'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php',
73
  'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php',
74
  'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php',
75
+ 'GuzzleHttp\\Psr7\\Query' => $vendorDir . '/guzzlehttp/psr7/src/Query.php',
76
  'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php',
77
  'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php',
78
  'GuzzleHttp\\Psr7\\Rfc7230' => $vendorDir . '/guzzlehttp/psr7/src/Rfc7230.php',
84
  'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php',
85
  'GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php',
86
  'GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php',
87
+ 'GuzzleHttp\\Psr7\\Utils' => $vendorDir . '/guzzlehttp/psr7/src/Utils.php',
88
  'GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
89
  'GuzzleHttp\\RequestOptions' => $vendorDir . '/guzzlehttp/guzzle/src/RequestOptions.php',
90
  'GuzzleHttp\\RetryMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
91
  'GuzzleHttp\\TransferStats' => $vendorDir . '/guzzlehttp/guzzle/src/TransferStats.php',
92
  'GuzzleHttp\\UriTemplate' => $vendorDir . '/guzzlehttp/guzzle/src/UriTemplate.php',
93
+ 'GuzzleHttp\\Utils' => $vendorDir . '/guzzlehttp/guzzle/src/Utils.php',
94
  'Mollie\\Api\\CompatibilityChecker' => $vendorDir . '/mollie/mollie-api-php/src/CompatibilityChecker.php',
95
  'Mollie\\Api\\Endpoints\\ChargebackEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/ChargebackEndpoint.php',
96
  'Mollie\\Api\\Endpoints\\CollectionEndpointAbstract' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/CollectionEndpointAbstract.php',
114
  'Mollie\\Api\\Endpoints\\ProfileEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/ProfileEndpoint.php',
115
  'Mollie\\Api\\Endpoints\\ProfileMethodEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/ProfileMethodEndpoint.php',
116
  'Mollie\\Api\\Endpoints\\RefundEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/RefundEndpoint.php',
117
+ 'Mollie\\Api\\Endpoints\\SettlementPaymentEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/SettlementPaymentEndpoint.php',
118
  'Mollie\\Api\\Endpoints\\SettlementsEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/SettlementsEndpoint.php',
119
  'Mollie\\Api\\Endpoints\\ShipmentEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/ShipmentEndpoint.php',
120
  'Mollie\\Api\\Endpoints\\SubscriptionEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/SubscriptionEndpoint.php',
121
  'Mollie\\Api\\Endpoints\\WalletEndpoint' => $vendorDir . '/mollie/mollie-api-php/src/Endpoints/WalletEndpoint.php',
122
  'Mollie\\Api\\Exceptions\\ApiException' => $vendorDir . '/mollie/mollie-api-php/src/Exceptions/ApiException.php',
123
  'Mollie\\Api\\Exceptions\\IncompatiblePlatform' => $vendorDir . '/mollie/mollie-api-php/src/Exceptions/IncompatiblePlatform.php',
124
+ 'Mollie\\Api\\Guzzle\\RetryMiddlewareFactory' => $vendorDir . '/mollie/mollie-api-php/src/Guzzle/RetryMiddlewareFactory.php',
125
  'Mollie\\Api\\MollieApiClient' => $vendorDir . '/mollie/mollie-api-php/src/MollieApiClient.php',
126
  'Mollie\\Api\\Resources\\BaseCollection' => $vendorDir . '/mollie/mollie-api-php/src/Resources/BaseCollection.php',
127
  'Mollie\\Api\\Resources\\BaseResource' => $vendorDir . '/mollie/mollie-api-php/src/Resources/BaseResource.php',
173
  'Mollie\\Api\\Types\\OrderLineType' => $vendorDir . '/mollie/mollie-api-php/src/Types/OrderLineType.php',
174
  'Mollie\\Api\\Types\\OrderStatus' => $vendorDir . '/mollie/mollie-api-php/src/Types/OrderStatus.php',
175
  'Mollie\\Api\\Types\\PaymentMethod' => $vendorDir . '/mollie/mollie-api-php/src/Types/PaymentMethod.php',
176
+ 'Mollie\\Api\\Types\\PaymentMethodStatus' => $vendorDir . '/mollie/mollie-api-php/src/Types/PaymentMethodStatus.php',
177
  'Mollie\\Api\\Types\\PaymentStatus' => $vendorDir . '/mollie/mollie-api-php/src/Types/PaymentStatus.php',
178
  'Mollie\\Api\\Types\\ProfileStatus' => $vendorDir . '/mollie/mollie-api-php/src/Types/ProfileStatus.php',
179
  'Mollie\\Api\\Types\\RefundStatus' => $vendorDir . '/mollie/mollie-api-php/src/Types/RefundStatus.php',
236
  'Mollie_WC_Plugin' => $baseDir . '/src/Mollie/WC/Plugin.php',
237
  'Mollie_WC_Settings_Components' => $baseDir . '/src/Mollie/WC/Settings/Components.php',
238
  'Mollie_WC_Settings_Page_Components' => $baseDir . '/src/Mollie/WC/Settings/Page/Components.php',
239
+ 'Mollie_WC_Settings_Page_Mollie' => $baseDir . '/src/Mollie/WC/Settings/Page/Mollie.php',
240
+ 'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
241
+ 'ParseError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/ParseError.php',
242
  'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php',
243
  'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php',
244
  'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php',
246
  'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php',
247
  'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php',
248
  'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php',
249
+ 'SessionUpdateTimestampHandlerInterface' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php',
250
+ 'Symfony\\Polyfill\\Intl\\Idn\\Idn' => $vendorDir . '/symfony/polyfill-intl-idn/Idn.php',
251
+ 'Symfony\\Polyfill\\Intl\\Idn\\Info' => $vendorDir . '/symfony/polyfill-intl-idn/Info.php',
252
+ 'Symfony\\Polyfill\\Intl\\Idn\\Resources\\unidata\\DisallowedRanges' => $vendorDir . '/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php',
253
+ 'Symfony\\Polyfill\\Intl\\Idn\\Resources\\unidata\\Regex' => $vendorDir . '/symfony/polyfill-intl-idn/Resources/unidata/Regex.php',
254
+ 'Symfony\\Polyfill\\Intl\\Normalizer\\Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Normalizer.php',
255
+ 'Symfony\\Polyfill\\Php70\\Php70' => $vendorDir . '/symfony/polyfill-php70/Php70.php',
256
+ 'Symfony\\Polyfill\\Php72\\Php72' => $vendorDir . '/symfony/polyfill-php72/Php72.php',
257
+ 'TypeError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/TypeError.php',
258
  );
vendor/composer/autoload_files.php CHANGED
@@ -6,8 +6,13 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
 
9
  '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
10
- 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php',
 
 
11
  'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php',
 
 
12
  '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
13
  );
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
+ '5255c38a0faeba867671b61dfda6d864' => $vendorDir . '/paragonie/random_compat/lib/random.php',
10
  '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
11
+ '25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php',
12
+ '023d27dca8066ef29e6739335ea73bad' => $vendorDir . '/symfony/polyfill-php70/bootstrap.php',
13
+ 'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
14
  'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php',
15
+ 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php',
16
+ 'f598d06aa772fa33d905e87be6398fb1' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
17
  '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
18
  );
vendor/composer/autoload_psr4.php CHANGED
@@ -6,6 +6,10 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
 
 
 
 
9
  'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'),
10
  'Mollie\\Api\\' => array($vendorDir . '/mollie/mollie-api-php/src'),
11
  'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
+ 'Symfony\\Polyfill\\Php72\\' => array($vendorDir . '/symfony/polyfill-php72'),
10
+ 'Symfony\\Polyfill\\Php70\\' => array($vendorDir . '/symfony/polyfill-php70'),
11
+ 'Symfony\\Polyfill\\Intl\\Normalizer\\' => array($vendorDir . '/symfony/polyfill-intl-normalizer'),
12
+ 'Symfony\\Polyfill\\Intl\\Idn\\' => array($vendorDir . '/symfony/polyfill-intl-idn'),
13
  'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'),
14
  'Mollie\\Api\\' => array($vendorDir . '/mollie/mollie-api-php/src'),
15
  'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitf70a0f41b078d169eea764ab1da660cc
6
  {
7
  private static $loader;
8
 
@@ -22,15 +22,15 @@ class ComposerAutoloaderInitf70a0f41b078d169eea764ab1da660cc
22
  return self::$loader;
23
  }
24
 
25
- spl_autoload_register(array('ComposerAutoloaderInitf70a0f41b078d169eea764ab1da660cc', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
- spl_autoload_unregister(array('ComposerAutoloaderInitf70a0f41b078d169eea764ab1da660cc', 'loadClassLoader'));
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
  require_once __DIR__ . '/autoload_static.php';
32
 
33
- call_user_func(\Composer\Autoload\ComposerStaticInitf70a0f41b078d169eea764ab1da660cc::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
@@ -51,19 +51,19 @@ class ComposerAutoloaderInitf70a0f41b078d169eea764ab1da660cc
51
  $loader->register(true);
52
 
53
  if ($useStaticLoader) {
54
- $includeFiles = Composer\Autoload\ComposerStaticInitf70a0f41b078d169eea764ab1da660cc::$files;
55
  } else {
56
  $includeFiles = require __DIR__ . '/autoload_files.php';
57
  }
58
  foreach ($includeFiles as $fileIdentifier => $file) {
59
- composerRequiref70a0f41b078d169eea764ab1da660cc($fileIdentifier, $file);
60
  }
61
 
62
  return $loader;
63
  }
64
  }
65
 
66
- function composerRequiref70a0f41b078d169eea764ab1da660cc($fileIdentifier, $file)
67
  {
68
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
69
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit99ba9400707b992e810823e2ec5b2c90
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ spl_autoload_register(array('ComposerAutoloaderInit99ba9400707b992e810823e2ec5b2c90', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
+ spl_autoload_unregister(array('ComposerAutoloaderInit99ba9400707b992e810823e2ec5b2c90', 'loadClassLoader'));
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
  require_once __DIR__ . '/autoload_static.php';
32
 
33
+ call_user_func(\Composer\Autoload\ComposerStaticInit99ba9400707b992e810823e2ec5b2c90::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
51
  $loader->register(true);
52
 
53
  if ($useStaticLoader) {
54
+ $includeFiles = Composer\Autoload\ComposerStaticInit99ba9400707b992e810823e2ec5b2c90::$files;
55
  } else {
56
  $includeFiles = require __DIR__ . '/autoload_files.php';
57
  }
58
  foreach ($includeFiles as $fileIdentifier => $file) {
59
+ composerRequire99ba9400707b992e810823e2ec5b2c90($fileIdentifier, $file);
60
  }
61
 
62
  return $loader;
63
  }
64
  }
65
 
66
+ function composerRequire99ba9400707b992e810823e2ec5b2c90($fileIdentifier, $file)
67
  {
68
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
69
  require $file;
vendor/composer/autoload_static.php CHANGED
@@ -4,16 +4,28 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInitf70a0f41b078d169eea764ab1da660cc
8
  {
9
  public static $files = array (
 
10
  '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
11
- 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php',
 
 
12
  'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php',
 
 
13
  '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
14
  );
15
 
16
  public static $prefixLengthsPsr4 = array (
 
 
 
 
 
 
 
17
  'P' =>
18
  array (
19
  'Psr\\Http\\Message\\' => 17,
@@ -35,6 +47,22 @@ class ComposerStaticInitf70a0f41b078d169eea764ab1da660cc
35
  );
36
 
37
  public static $prefixDirsPsr4 = array (
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  'Psr\\Http\\Message\\' =>
39
  array (
40
  0 => __DIR__ . '/..' . '/psr/http-message/src',
@@ -72,7 +100,11 @@ class ComposerStaticInitf70a0f41b078d169eea764ab1da660cc
72
  );
73
 
74
  public static $classMap = array (
 
 
75
  'Composer\\CaBundle\\CaBundle' => __DIR__ . '/..' . '/composer/ca-bundle/src/CaBundle.php',
 
 
76
  'GuzzleHttp\\Client' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Client.php',
77
  'GuzzleHttp\\ClientInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientInterface.php',
78
  'GuzzleHttp\\Cookie\\CookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
@@ -106,8 +138,11 @@ class ComposerStaticInitf70a0f41b078d169eea764ab1da660cc
106
  'GuzzleHttp\\Promise\\AggregateException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/AggregateException.php',
107
  'GuzzleHttp\\Promise\\CancellationException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/CancellationException.php',
108
  'GuzzleHttp\\Promise\\Coroutine' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Coroutine.php',
 
 
109
  'GuzzleHttp\\Promise\\EachPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/EachPromise.php',
110
  'GuzzleHttp\\Promise\\FulfilledPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/FulfilledPromise.php',
 
111
  'GuzzleHttp\\Promise\\Promise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Promise.php',
112
  'GuzzleHttp\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromiseInterface.php',
113
  'GuzzleHttp\\Promise\\PromisorInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromisorInterface.php',
@@ -115,18 +150,23 @@ class ComposerStaticInitf70a0f41b078d169eea764ab1da660cc
115
  'GuzzleHttp\\Promise\\RejectionException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectionException.php',
116
  'GuzzleHttp\\Promise\\TaskQueue' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueue.php',
117
  'GuzzleHttp\\Promise\\TaskQueueInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueueInterface.php',
 
118
  'GuzzleHttp\\Psr7\\AppendStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/AppendStream.php',
119
  'GuzzleHttp\\Psr7\\BufferStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/BufferStream.php',
120
  'GuzzleHttp\\Psr7\\CachingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/CachingStream.php',
121
  'GuzzleHttp\\Psr7\\DroppingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/DroppingStream.php',
122
  'GuzzleHttp\\Psr7\\FnStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/FnStream.php',
 
123
  'GuzzleHttp\\Psr7\\InflateStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/InflateStream.php',
124
  'GuzzleHttp\\Psr7\\LazyOpenStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LazyOpenStream.php',
125
  'GuzzleHttp\\Psr7\\LimitStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LimitStream.php',
 
126
  'GuzzleHttp\\Psr7\\MessageTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MessageTrait.php',
 
127
  'GuzzleHttp\\Psr7\\MultipartStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MultipartStream.php',
128
  'GuzzleHttp\\Psr7\\NoSeekStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/NoSeekStream.php',
129
  'GuzzleHttp\\Psr7\\PumpStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/PumpStream.php',
 
130
  'GuzzleHttp\\Psr7\\Request' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Request.php',
131
  'GuzzleHttp\\Psr7\\Response' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Response.php',
132
  'GuzzleHttp\\Psr7\\Rfc7230' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Rfc7230.php',
@@ -138,11 +178,13 @@ class ComposerStaticInitf70a0f41b078d169eea764ab1da660cc
138
  'GuzzleHttp\\Psr7\\Uri' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Uri.php',
139
  'GuzzleHttp\\Psr7\\UriNormalizer' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriNormalizer.php',
140
  'GuzzleHttp\\Psr7\\UriResolver' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriResolver.php',
 
141
  'GuzzleHttp\\RedirectMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
142
  'GuzzleHttp\\RequestOptions' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RequestOptions.php',
143
  'GuzzleHttp\\RetryMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
144
  'GuzzleHttp\\TransferStats' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/TransferStats.php',
145
  'GuzzleHttp\\UriTemplate' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/UriTemplate.php',
 
146
  'Mollie\\Api\\CompatibilityChecker' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/CompatibilityChecker.php',
147
  'Mollie\\Api\\Endpoints\\ChargebackEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/ChargebackEndpoint.php',
148
  'Mollie\\Api\\Endpoints\\CollectionEndpointAbstract' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/CollectionEndpointAbstract.php',
@@ -166,12 +208,14 @@ class ComposerStaticInitf70a0f41b078d169eea764ab1da660cc
166
  'Mollie\\Api\\Endpoints\\ProfileEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/ProfileEndpoint.php',
167
  'Mollie\\Api\\Endpoints\\ProfileMethodEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/ProfileMethodEndpoint.php',
168
  'Mollie\\Api\\Endpoints\\RefundEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/RefundEndpoint.php',
 
169
  'Mollie\\Api\\Endpoints\\SettlementsEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/SettlementsEndpoint.php',
170
  'Mollie\\Api\\Endpoints\\ShipmentEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/ShipmentEndpoint.php',
171
  'Mollie\\Api\\Endpoints\\SubscriptionEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/SubscriptionEndpoint.php',
172
  'Mollie\\Api\\Endpoints\\WalletEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/WalletEndpoint.php',
173
  'Mollie\\Api\\Exceptions\\ApiException' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Exceptions/ApiException.php',
174
  'Mollie\\Api\\Exceptions\\IncompatiblePlatform' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Exceptions/IncompatiblePlatform.php',
 
175
  'Mollie\\Api\\MollieApiClient' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/MollieApiClient.php',
176
  'Mollie\\Api\\Resources\\BaseCollection' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Resources/BaseCollection.php',
177
  'Mollie\\Api\\Resources\\BaseResource' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Resources/BaseResource.php',
@@ -223,6 +267,7 @@ class ComposerStaticInitf70a0f41b078d169eea764ab1da660cc
223
  'Mollie\\Api\\Types\\OrderLineType' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/OrderLineType.php',
224
  'Mollie\\Api\\Types\\OrderStatus' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/OrderStatus.php',
225
  'Mollie\\Api\\Types\\PaymentMethod' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/PaymentMethod.php',
 
226
  'Mollie\\Api\\Types\\PaymentStatus' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/PaymentStatus.php',
227
  'Mollie\\Api\\Types\\ProfileStatus' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/ProfileStatus.php',
228
  'Mollie\\Api\\Types\\RefundStatus' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/RefundStatus.php',
@@ -285,6 +330,9 @@ class ComposerStaticInitf70a0f41b078d169eea764ab1da660cc
285
  'Mollie_WC_Plugin' => __DIR__ . '/../..' . '/src/Mollie/WC/Plugin.php',
286
  'Mollie_WC_Settings_Components' => __DIR__ . '/../..' . '/src/Mollie/WC/Settings/Components.php',
287
  'Mollie_WC_Settings_Page_Components' => __DIR__ . '/../..' . '/src/Mollie/WC/Settings/Page/Components.php',
 
 
 
288
  'Psr\\Http\\Message\\MessageInterface' => __DIR__ . '/..' . '/psr/http-message/src/MessageInterface.php',
289
  'Psr\\Http\\Message\\RequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/RequestInterface.php',
290
  'Psr\\Http\\Message\\ResponseInterface' => __DIR__ . '/..' . '/psr/http-message/src/ResponseInterface.php',
@@ -292,15 +340,24 @@ class ComposerStaticInitf70a0f41b078d169eea764ab1da660cc
292
  'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php',
293
  'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php',
294
  'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php',
 
 
 
 
 
 
 
 
 
295
  );
296
 
297
  public static function getInitializer(ClassLoader $loader)
298
  {
299
  return \Closure::bind(function () use ($loader) {
300
- $loader->prefixLengthsPsr4 = ComposerStaticInitf70a0f41b078d169eea764ab1da660cc::$prefixLengthsPsr4;
301
- $loader->prefixDirsPsr4 = ComposerStaticInitf70a0f41b078d169eea764ab1da660cc::$prefixDirsPsr4;
302
- $loader->prefixesPsr0 = ComposerStaticInitf70a0f41b078d169eea764ab1da660cc::$prefixesPsr0;
303
- $loader->classMap = ComposerStaticInitf70a0f41b078d169eea764ab1da660cc::$classMap;
304
 
305
  }, null, ClassLoader::class);
306
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit99ba9400707b992e810823e2ec5b2c90
8
  {
9
  public static $files = array (
10
+ '5255c38a0faeba867671b61dfda6d864' => __DIR__ . '/..' . '/paragonie/random_compat/lib/random.php',
11
  '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
12
+ '25072dd6e2470089de65ae7bf11d3109' => __DIR__ . '/..' . '/symfony/polyfill-php72/bootstrap.php',
13
+ '023d27dca8066ef29e6739335ea73bad' => __DIR__ . '/..' . '/symfony/polyfill-php70/bootstrap.php',
14
+ 'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
15
  'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php',
16
+ 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php',
17
+ 'f598d06aa772fa33d905e87be6398fb1' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
18
  '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
19
  );
20
 
21
  public static $prefixLengthsPsr4 = array (
22
+ 'S' =>
23
+ array (
24
+ 'Symfony\\Polyfill\\Php72\\' => 23,
25
+ 'Symfony\\Polyfill\\Php70\\' => 23,
26
+ 'Symfony\\Polyfill\\Intl\\Normalizer\\' => 33,
27
+ 'Symfony\\Polyfill\\Intl\\Idn\\' => 26,
28
+ ),
29
  'P' =>
30
  array (
31
  'Psr\\Http\\Message\\' => 17,
47
  );
48
 
49
  public static $prefixDirsPsr4 = array (
50
+ 'Symfony\\Polyfill\\Php72\\' =>
51
+ array (
52
+ 0 => __DIR__ . '/..' . '/symfony/polyfill-php72',
53
+ ),
54
+ 'Symfony\\Polyfill\\Php70\\' =>
55
+ array (
56
+ 0 => __DIR__ . '/..' . '/symfony/polyfill-php70',
57
+ ),
58
+ 'Symfony\\Polyfill\\Intl\\Normalizer\\' =>
59
+ array (
60
+ 0 => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer',
61
+ ),
62
+ 'Symfony\\Polyfill\\Intl\\Idn\\' =>
63
+ array (
64
+ 0 => __DIR__ . '/..' . '/symfony/polyfill-intl-idn',
65
+ ),
66
  'Psr\\Http\\Message\\' =>
67
  array (
68
  0 => __DIR__ . '/..' . '/psr/http-message/src',
100
  );
101
 
102
  public static $classMap = array (
103
+ 'ArithmeticError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php',
104
+ 'AssertionError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/AssertionError.php',
105
  'Composer\\CaBundle\\CaBundle' => __DIR__ . '/..' . '/composer/ca-bundle/src/CaBundle.php',
106
+ 'DivisionByZeroError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php',
107
+ 'Error' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/Error.php',
108
  'GuzzleHttp\\Client' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Client.php',
109
  'GuzzleHttp\\ClientInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientInterface.php',
110
  'GuzzleHttp\\Cookie\\CookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
138
  'GuzzleHttp\\Promise\\AggregateException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/AggregateException.php',
139
  'GuzzleHttp\\Promise\\CancellationException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/CancellationException.php',
140
  'GuzzleHttp\\Promise\\Coroutine' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Coroutine.php',
141
+ 'GuzzleHttp\\Promise\\Create' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Create.php',
142
+ 'GuzzleHttp\\Promise\\Each' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Each.php',
143
  'GuzzleHttp\\Promise\\EachPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/EachPromise.php',
144
  'GuzzleHttp\\Promise\\FulfilledPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/FulfilledPromise.php',
145
+ 'GuzzleHttp\\Promise\\Is' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Is.php',
146
  'GuzzleHttp\\Promise\\Promise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Promise.php',
147
  'GuzzleHttp\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromiseInterface.php',
148
  'GuzzleHttp\\Promise\\PromisorInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromisorInterface.php',
150
  'GuzzleHttp\\Promise\\RejectionException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectionException.php',
151
  'GuzzleHttp\\Promise\\TaskQueue' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueue.php',
152
  'GuzzleHttp\\Promise\\TaskQueueInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueueInterface.php',
153
+ 'GuzzleHttp\\Promise\\Utils' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Utils.php',
154
  'GuzzleHttp\\Psr7\\AppendStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/AppendStream.php',
155
  'GuzzleHttp\\Psr7\\BufferStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/BufferStream.php',
156
  'GuzzleHttp\\Psr7\\CachingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/CachingStream.php',
157
  'GuzzleHttp\\Psr7\\DroppingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/DroppingStream.php',
158
  'GuzzleHttp\\Psr7\\FnStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/FnStream.php',
159
+ 'GuzzleHttp\\Psr7\\Header' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Header.php',
160
  'GuzzleHttp\\Psr7\\InflateStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/InflateStream.php',
161
  'GuzzleHttp\\Psr7\\LazyOpenStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LazyOpenStream.php',
162
  'GuzzleHttp\\Psr7\\LimitStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LimitStream.php',
163
+ 'GuzzleHttp\\Psr7\\Message' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Message.php',
164
  'GuzzleHttp\\Psr7\\MessageTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MessageTrait.php',
165
+ 'GuzzleHttp\\Psr7\\MimeType' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MimeType.php',
166
  'GuzzleHttp\\Psr7\\MultipartStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MultipartStream.php',
167
  'GuzzleHttp\\Psr7\\NoSeekStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/NoSeekStream.php',
168
  'GuzzleHttp\\Psr7\\PumpStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/PumpStream.php',
169
+ 'GuzzleHttp\\Psr7\\Query' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Query.php',
170
  'GuzzleHttp\\Psr7\\Request' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Request.php',
171
  'GuzzleHttp\\Psr7\\Response' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Response.php',
172
  'GuzzleHttp\\Psr7\\Rfc7230' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Rfc7230.php',
178
  'GuzzleHttp\\Psr7\\Uri' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Uri.php',
179
  'GuzzleHttp\\Psr7\\UriNormalizer' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriNormalizer.php',
180
  'GuzzleHttp\\Psr7\\UriResolver' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriResolver.php',
181
+ 'GuzzleHttp\\Psr7\\Utils' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Utils.php',
182
  'GuzzleHttp\\RedirectMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
183
  'GuzzleHttp\\RequestOptions' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RequestOptions.php',
184
  'GuzzleHttp\\RetryMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
185
  'GuzzleHttp\\TransferStats' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/TransferStats.php',
186
  'GuzzleHttp\\UriTemplate' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/UriTemplate.php',
187
+ 'GuzzleHttp\\Utils' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Utils.php',
188
  'Mollie\\Api\\CompatibilityChecker' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/CompatibilityChecker.php',
189
  'Mollie\\Api\\Endpoints\\ChargebackEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/ChargebackEndpoint.php',
190
  'Mollie\\Api\\Endpoints\\CollectionEndpointAbstract' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/CollectionEndpointAbstract.php',
208
  'Mollie\\Api\\Endpoints\\ProfileEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/ProfileEndpoint.php',
209
  'Mollie\\Api\\Endpoints\\ProfileMethodEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/ProfileMethodEndpoint.php',
210
  'Mollie\\Api\\Endpoints\\RefundEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/RefundEndpoint.php',
211
+ 'Mollie\\Api\\Endpoints\\SettlementPaymentEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/SettlementPaymentEndpoint.php',
212
  'Mollie\\Api\\Endpoints\\SettlementsEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/SettlementsEndpoint.php',
213
  'Mollie\\Api\\Endpoints\\ShipmentEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/ShipmentEndpoint.php',
214
  'Mollie\\Api\\Endpoints\\SubscriptionEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/SubscriptionEndpoint.php',
215
  'Mollie\\Api\\Endpoints\\WalletEndpoint' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Endpoints/WalletEndpoint.php',
216
  'Mollie\\Api\\Exceptions\\ApiException' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Exceptions/ApiException.php',
217
  'Mollie\\Api\\Exceptions\\IncompatiblePlatform' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Exceptions/IncompatiblePlatform.php',
218
+ 'Mollie\\Api\\Guzzle\\RetryMiddlewareFactory' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Guzzle/RetryMiddlewareFactory.php',
219
  'Mollie\\Api\\MollieApiClient' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/MollieApiClient.php',
220
  'Mollie\\Api\\Resources\\BaseCollection' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Resources/BaseCollection.php',
221
  'Mollie\\Api\\Resources\\BaseResource' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Resources/BaseResource.php',
267
  'Mollie\\Api\\Types\\OrderLineType' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/OrderLineType.php',
268
  'Mollie\\Api\\Types\\OrderStatus' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/OrderStatus.php',
269
  'Mollie\\Api\\Types\\PaymentMethod' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/PaymentMethod.php',
270
+ 'Mollie\\Api\\Types\\PaymentMethodStatus' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/PaymentMethodStatus.php',
271
  'Mollie\\Api\\Types\\PaymentStatus' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/PaymentStatus.php',
272
  'Mollie\\Api\\Types\\ProfileStatus' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/ProfileStatus.php',
273
  'Mollie\\Api\\Types\\RefundStatus' => __DIR__ . '/..' . '/mollie/mollie-api-php/src/Types/RefundStatus.php',
330
  'Mollie_WC_Plugin' => __DIR__ . '/../..' . '/src/Mollie/WC/Plugin.php',
331
  'Mollie_WC_Settings_Components' => __DIR__ . '/../..' . '/src/Mollie/WC/Settings/Components.php',
332
  'Mollie_WC_Settings_Page_Components' => __DIR__ . '/../..' . '/src/Mollie/WC/Settings/Page/Components.php',
333
+ 'Mollie_WC_Settings_Page_Mollie' => __DIR__ . '/../..' . '/src/Mollie/WC/Settings/Page/Mollie.php',
334
+ 'Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
335
+ 'ParseError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/ParseError.php',
336
  'Psr\\Http\\Message\\MessageInterface' => __DIR__ . '/..' . '/psr/http-message/src/MessageInterface.php',
337
  'Psr\\Http\\Message\\RequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/RequestInterface.php',
338
  'Psr\\Http\\Message\\ResponseInterface' => __DIR__ . '/..' . '/psr/http-message/src/ResponseInterface.php',
340
  'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php',
341
  'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php',
342
  'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php',
343
+ 'SessionUpdateTimestampHandlerInterface' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php',
344
+ 'Symfony\\Polyfill\\Intl\\Idn\\Idn' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/Idn.php',
345
+ 'Symfony\\Polyfill\\Intl\\Idn\\Info' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/Info.php',
346
+ 'Symfony\\Polyfill\\Intl\\Idn\\Resources\\unidata\\DisallowedRanges' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php',
347
+ 'Symfony\\Polyfill\\Intl\\Idn\\Resources\\unidata\\Regex' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/Resources/unidata/Regex.php',
348
+ 'Symfony\\Polyfill\\Intl\\Normalizer\\Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Normalizer.php',
349
+ 'Symfony\\Polyfill\\Php70\\Php70' => __DIR__ . '/..' . '/symfony/polyfill-php70/Php70.php',
350
+ 'Symfony\\Polyfill\\Php72\\Php72' => __DIR__ . '/..' . '/symfony/polyfill-php72/Php72.php',
351
+ 'TypeError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/TypeError.php',
352
  );
353
 
354
  public static function getInitializer(ClassLoader $loader)
355
  {
356
  return \Closure::bind(function () use ($loader) {
357
+ $loader->prefixLengthsPsr4 = ComposerStaticInit99ba9400707b992e810823e2ec5b2c90::$prefixLengthsPsr4;
358
+ $loader->prefixDirsPsr4 = ComposerStaticInit99ba9400707b992e810823e2ec5b2c90::$prefixDirsPsr4;
359
+ $loader->prefixesPsr0 = ComposerStaticInit99ba9400707b992e810823e2ec5b2c90::$prefixesPsr0;
360
+ $loader->classMap = ComposerStaticInit99ba9400707b992e810823e2ec5b2c90::$classMap;
361
 
362
  }, null, ClassLoader::class);
363
  }
vendor/composer/ca-bundle/LICENSE DELETED
@@ -1,19 +0,0 @@
1
- Copyright (C) 2016 Composer
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy of
4
- this software and associated documentation files (the "Software"), to deal in
5
- the Software without restriction, including without limitation the rights to
6
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
- of the Software, and to permit persons to whom the Software is furnished to do
8
- so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in all
11
- copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
- SOFTWARE.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/composer/ca-bundle/res/cacert.pem CHANGED
@@ -1,7 +1,7 @@
1
  ##
2
  ## Bundle of CA Root Certificates
3
  ##
4
- ## Certificate data from Mozilla as of: Wed Jan 1 04:12:10 2020 GMT
5
  ##
6
  ## This is a bundle of X.509 certificates of public Certificate Authorities
7
  ## (CA). These were automatically extracted from Mozilla's root certificates
@@ -13,8 +13,8 @@
13
  ## an Apache+mod_ssl webserver for SSL client authentication.
14
  ## Just configure this file as the SSLCACertificateFile.
15
  ##
16
- ## Conversion done with mk-ca-bundle.pl version 1.27.
17
- ## SHA256: f3bdcd74612952da8476a9d4147f50b29ad0710b7dd95b4c8690500209986d70
18
  ##
19
 
20
 
@@ -61,30 +61,6 @@ BgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4GsJ0/WwbgcQ3izDJr86iw8bmEbTUsp
61
  TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg==
62
  -----END CERTIFICATE-----
63
 
64
- Verisign Class 3 Public Primary Certification Authority - G3
65
- ============================================================
66
- -----BEGIN CERTIFICATE-----
67
- MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQswCQYDVQQGEwJV
68
- UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv
69
- cmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl
70
- IG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNh
71
- dGlvbiBBdXRob3JpdHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQsw
72
- CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRy
73
- dXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhv
74
- cml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkg
75
- Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
76
- ggEBAMu6nFL8eB8aHm8bN3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1
77
- EUGO+i2tKmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGukxUc
78
- cLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBmCC+Vk7+qRy+oRpfw
79
- EuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJXwzw3sJ2zq/3avL6QaaiMxTJ5Xpj
80
- 055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWuimi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA
81
- ERSWwauSCPc/L8my/uRan2Te2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5f
82
- j267Cz3qWhMeDGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC
83
- /Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565pF4ErWjfJXir0
84
- xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGtTxzhT5yvDwyd93gN2PQ1VoDa
85
- t20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ==
86
- -----END CERTIFICATE-----
87
-
88
  Entrust.net Premium 2048 Secure Server CA
89
  =========================================
90
  -----BEGIN CERTIFICATE-----
@@ -130,30 +106,6 @@ Y71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H
130
  RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp
131
  -----END CERTIFICATE-----
132
 
133
- AddTrust External Root
134
- ======================
135
- -----BEGIN CERTIFICATE-----
136
- MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
137
- QWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYD
138
- VQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEw
139
- NDgzOFowbzELMAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRU
140
- cnVzdCBFeHRlcm5hbCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0Eg
141
- Um9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvtH7xsD821
142
- +iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9uMq/NzgtHj6RQa1wVsfw
143
- Tz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzXmk6vBbOmcZSccbNQYArHE504B4YCqOmo
144
- aSYYkKtMsE8jqzpPhNjfzp/haW+710LXa0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy
145
- 2xSoRcRdKn23tNbE7qzNE0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv7
146
- 7+ldU9U0WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYDVR0P
147
- BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0Jvf6xCZU7wO94CTL
148
- VBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEmMCQGA1UECxMdQWRk
149
- VHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsxIjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENB
150
- IFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZl
151
- j7DYd7usQWxHYINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5
152
- 6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvCNr4TDea9Y355
153
- e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEXc4g/VhsxOBi0cQ+azcgOno4u
154
- G+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5amnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ=
155
- -----END CERTIFICATE-----
156
-
157
  Entrust Root Certification Authority
158
  ====================================
159
  -----BEGIN CERTIFICATE-----
@@ -1126,38 +1078,6 @@ NwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2XjG4Kvte9nHfRCaexOYNkbQu
1126
  dZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E=
1127
  -----END CERTIFICATE-----
1128
 
1129
- Staat der Nederlanden Root CA - G2
1130
- ==================================
1131
- -----BEGIN CERTIFICATE-----
1132
- MIIFyjCCA7KgAwIBAgIEAJiWjDANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE
1133
- CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g
1134
- Um9vdCBDQSAtIEcyMB4XDTA4MDMyNjExMTgxN1oXDTIwMDMyNTExMDMxMFowWjELMAkGA1UEBhMC
1135
- TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l
1136
- ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMVZ
1137
- 5291qj5LnLW4rJ4L5PnZyqtdj7U5EILXr1HgO+EASGrP2uEGQxGZqhQlEq0i6ABtQ8SpuOUfiUtn
1138
- vWFI7/3S4GCI5bkYYCjDdyutsDeqN95kWSpGV+RLufg3fNU254DBtvPUZ5uW6M7XxgpT0GtJlvOj
1139
- CwV3SPcl5XCsMBQgJeN/dVrlSPhOewMHBPqCYYdu8DvEpMfQ9XQ+pV0aCPKbJdL2rAQmPlU6Yiil
1140
- e7Iwr/g3wtG61jj99O9JMDeZJiFIhQGp5Rbn3JBV3w/oOM2ZNyFPXfUib2rFEhZgF1XyZWampzCR
1141
- OME4HYYEhLoaJXhena/MUGDWE4dS7WMfbWV9whUYdMrhfmQpjHLYFhN9C0lK8SgbIHRrxT3dsKpI
1142
- CT0ugpTNGmXZK4iambwYfp/ufWZ8Pr2UuIHOzZgweMFvZ9C+X+Bo7d7iscksWXiSqt8rYGPy5V65
1143
- 48r6f1CGPqI0GAwJaCgRHOThuVw+R7oyPxjMW4T182t0xHJ04eOLoEq9jWYv6q012iDTiIJh8BIi
1144
- trzQ1aTsr1SIJSQ8p22xcik/Plemf1WvbibG/ufMQFxRRIEKeN5KzlW/HdXZt1bv8Hb/C3m1r737
1145
- qWmRRpdogBQ2HbN/uymYNqUg+oJgYjOk7Na6B6duxc8UpufWkjTYgfX8HV2qXB72o007uPc5AgMB
1146
- AAGjgZcwgZQwDwYDVR0TAQH/BAUwAwEB/zBSBgNVHSAESzBJMEcGBFUdIAAwPzA9BggrBgEFBQcC
1147
- ARYxaHR0cDovL3d3dy5wa2lvdmVyaGVpZC5ubC9wb2xpY2llcy9yb290LXBvbGljeS1HMjAOBgNV
1148
- HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJFoMocVHYnitfGsNig0jQt8YojrMA0GCSqGSIb3DQEBCwUA
1149
- A4ICAQCoQUpnKpKBglBu4dfYszk78wIVCVBR7y29JHuIhjv5tLySCZa59sCrI2AGeYwRTlHSeYAz
1150
- +51IvuxBQ4EffkdAHOV6CMqqi3WtFMTC6GY8ggen5ieCWxjmD27ZUD6KQhgpxrRW/FYQoAUXvQwj
1151
- f/ST7ZwaUb7dRUG/kSS0H4zpX897IZmflZ85OkYcbPnNe5yQzSipx6lVu6xiNGI1E0sUOlWDuYaN
1152
- kqbG9AclVMwWVxJKgnjIFNkXgiYtXSAfea7+1HAWFpWD2DU5/1JddRwWxRNVz0fMdWVSSt7wsKfk
1153
- CpYL+63C4iWEst3kvX5ZbJvw8NjnyvLplzh+ib7M+zkXYT9y2zqR2GUBGR2tUKRXCnxLvJxxcypF
1154
- URmFzI79R6d0lR2o0a9OF7FpJsKqeFdbxU2n5Z4FF5TKsl+gSRiNNOkmbEgeqmiSBeGCc1qb3Adb
1155
- CG19ndeNIdn8FCCqwkXfP+cAslHkwvgFuXkajDTznlvkN1trSt8sV4pAWja63XVECDdCcAz+3F4h
1156
- oKOKwJCcaNpQ5kUQR3i2TtJlycM33+FCY7BXN0Ute4qcvwXqZVUz9zkQxSgqIXobisQk+T8VyJoV
1157
- IPVVYpbtbZNQvOSqeK3Zywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm
1158
- 66+KAQ==
1159
- -----END CERTIFICATE-----
1160
-
1161
  Hongkong Post Root CA 1
1162
  =======================
1163
  -----BEGIN CERTIFICATE-----
@@ -2831,37 +2751,6 @@ MGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlwCkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1
2831
  AE47xDqUEpHJWEadIRNyp4iciuRMStuW1KyLa2tJElMzrdfkviT8tQp21KW8EA==
2832
  -----END CERTIFICATE-----
2833
 
2834
- LuxTrust Global Root 2
2835
- ======================
2836
- -----BEGIN CERTIFICATE-----
2837
- MIIFwzCCA6ugAwIBAgIUCn6m30tEntpqJIWe5rgV0xZ/u7EwDQYJKoZIhvcNAQELBQAwRjELMAkG
2838
- A1UEBhMCTFUxFjAUBgNVBAoMDUx1eFRydXN0IFMuQS4xHzAdBgNVBAMMFkx1eFRydXN0IEdsb2Jh
2839
- bCBSb290IDIwHhcNMTUwMzA1MTMyMTU3WhcNMzUwMzA1MTMyMTU3WjBGMQswCQYDVQQGEwJMVTEW
2840
- MBQGA1UECgwNTHV4VHJ1c3QgUy5BLjEfMB0GA1UEAwwWTHV4VHJ1c3QgR2xvYmFsIFJvb3QgMjCC
2841
- AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANeFl78RmOnwYoNMPIf5U2o3C/IPPIfOb9wm
2842
- Kb3FibrJgz337spbxm1Jc7TJRqMbNBM/wYlFV/TZsfs2ZUv7COJIcRHIbjuend+JZTemhfY7RBi2
2843
- xjcwYkSSl2l9QjAk5A0MiWtj3sXh306pFGxT4GHO9hcvHTy95iJMHZP1EMShduxq3sVs35a0VkBC
2844
- wGKSMKEtFZSg0iAGCW5qbeXrt77U8PEVfIvmTroTzEsnXpk8F12PgX8zPU/TPxvsXD/wPEx1bvKm
2845
- 1Z3aLQdjAsZy6ZS8TEmVT4hSyNvoaYL4zDRbIvCGp4m9SAptZoFtyMhk+wHh9OHe2Z7d21vUKpkm
2846
- FRseTJIpgp7VkoGSQXAZ96Tlk0u8d2cx3Rz9MXANF5kM+Qw5GSoXtTBxVdUPrljhPS80m8+f9niF
2847
- wpN6cj5mj5wWEWCPnolvZ77gR1o7DJpni89Gxq44o/KnvObWhWszJHAiS8sIm7vI+AIpHb4gDEa/
2848
- a4ebsypmQjVGbKq6rfmYe+lQVRQxv7HaLe2ArWgk+2mr2HETMOZns4dA/Yl+8kPREd8vZS9kzl8U
2849
- ubG/Mb2HeFpZZYiq/FkySIbWTLkpS5XTdvN3JW1CHDiDTf2jX5t/Lax5Gw5CMZdjpPuKadUiDTSQ
2850
- MC6otOBttpSsvItO13D8xTiOZCXhTTmQzsmHhFhxAgMBAAGjgagwgaUwDwYDVR0TAQH/BAUwAwEB
2851
- /zBCBgNVHSAEOzA5MDcGByuBKwEBAQowLDAqBggrBgEFBQcCARYeaHR0cHM6Ly9yZXBvc2l0b3J5
2852
- Lmx1eHRydXN0Lmx1MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBT/GCh2+UgFLKGu8SsbK7JT
2853
- +Et8szAdBgNVHQ4EFgQU/xgodvlIBSyhrvErGyuyU/hLfLMwDQYJKoZIhvcNAQELBQADggIBAGoZ
2854
- FO1uecEsh9QNcH7X9njJCwROxLHOk3D+sFTAMs2ZMGQXvw/l4jP9BzZAcg4atmpZ1gDlaCDdLnIN
2855
- H2pkMSCEfUmmWjfrRcmF9dTHF5kH5ptV5AzoqbTOjFu1EVzPig4N1qx3gf4ynCSecs5U89BvolbW
2856
- 7MM3LGVYvlcAGvI1+ut7MV3CwRI9loGIlonBWVx65n9wNOeD4rHh4bhY79SV5GCc8JaXcozrhAIu
2857
- ZY+kt9J/Z93I055cqqmkoCUUBpvsT34tC38ddfEz2O3OuHVtPlu5mB0xDVbYQw8wkbIEa91WvpWA
2858
- VWe+2M2D2RjuLg+GLZKecBPs3lHJQ3gCpU3I+V/EkVhGFndadKpAvAefMLmx9xIX3eP/JEAdemrR
2859
- TxgKqpAd60Ae36EeRJIQmvKN4dFLRp7oRUKX6kWZ8+xm1QL68qZKJKrezrnK+T+Tb/mjuuqlPpmt
2860
- /f97mfVl7vBZKGfXkJWkE4SphMHozs51k2MavDzq1WQfLSoSOcbDWjLtR5EWDrw4wVDej8oqkDQc
2861
- 7kGUnF4ZLvhFSZl0kbAEb+MEWrGrKqv+x9CWttrhSmQGbmBNvUJO/3jaJMobtNeWOWyu8Q6qp31I
2862
- iyBMz2TWuJdGsE7RKlY6oJO9r4Ak4Ap+58rVyuiFVdw2KuGUaJPHZnJED4AhMmwlxyOAgwrr
2863
- -----END CERTIFICATE-----
2864
-
2865
  TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1
2866
  =============================================
2867
  -----BEGIN CERTIFICATE-----
@@ -3464,3 +3353,95 @@ JOgc47OlIQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk5F6G
3464
  +TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuYn/PIjhs4ViFqUZPT
3465
  kcpG2om3PVODLAgfi49T3f+sHw==
3466
  -----END CERTIFICATE-----
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ##
2
  ## Bundle of CA Root Certificates
3
  ##
4
+ ## Certificate data from Mozilla as of: Wed Jul 22 03:12:14 2020 GMT
5
  ##
6
  ## This is a bundle of X.509 certificates of public Certificate Authorities
7
  ## (CA). These were automatically extracted from Mozilla's root certificates
13
  ## an Apache+mod_ssl webserver for SSL client authentication.
14
  ## Just configure this file as the SSLCACertificateFile.
15
  ##
16
+ ## Conversion done with mk-ca-bundle.pl version 1.28.
17
+ ## SHA256: cc6408bd4be7fbfb8699bdb40ccb7f6de5780d681d87785ea362646e4dad5e8e
18
  ##
19
 
20
 
61
  TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg==
62
  -----END CERTIFICATE-----
63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  Entrust.net Premium 2048 Secure Server CA
65
  =========================================
66
  -----BEGIN CERTIFICATE-----
106
  RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp
107
  -----END CERTIFICATE-----
108
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  Entrust Root Certification Authority
110
  ====================================
111
  -----BEGIN CERTIFICATE-----
1078
  dZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E=
1079
  -----END CERTIFICATE-----
1080
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1081
  Hongkong Post Root CA 1
1082
  =======================
1083
  -----BEGIN CERTIFICATE-----
2751
  AE47xDqUEpHJWEadIRNyp4iciuRMStuW1KyLa2tJElMzrdfkviT8tQp21KW8EA==
2752
  -----END CERTIFICATE-----
2753
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2754
  TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1
2755
  =============================================
2756
  -----BEGIN CERTIFICATE-----
3353
  +TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuYn/PIjhs4ViFqUZPT
3354
  kcpG2om3PVODLAgfi49T3f+sHw==
3355
  -----END CERTIFICATE-----
3356
+
3357
+ Microsoft ECC Root Certificate Authority 2017
3358
+ =============================================
3359
+ -----BEGIN CERTIFICATE-----
3360
+ MIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV
3361
+ UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQgRUND
3362
+ IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4
3363
+ MjMxNjA0WjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw
3364
+ NAYDVQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQ
3365
+ BgcqhkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZRogPZnZH6
3366
+ thaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYbhGBKia/teQ87zvH2RPUB
3367
+ eMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIy5lycFIM
3368
+ +Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlf
3369
+ Xu5gKcs68tvWMoQZP3zVL8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaR
3370
+ eNtUjGUBiudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M=
3371
+ -----END CERTIFICATE-----
3372
+
3373
+ Microsoft RSA Root Certificate Authority 2017
3374
+ =============================================
3375
+ -----BEGIN CERTIFICATE-----
3376
+ MIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQG
3377
+ EwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNyb3NvZnQg
3378
+ UlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIw
3379
+ NzE4MjMwMDIzWjBlMQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u
3380
+ MTYwNAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcw
3381
+ ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZNt9GkMml
3382
+ 7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0ZdDMbRnMlfl7rEqUrQ7e
3383
+ S0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw7
3384
+ 1VdyvD/IybLeS2v4I2wDwAW9lcfNcztmgGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+
3385
+ dkC0zVJhUXAoP8XFWvLJjEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49F
3386
+ yGcohJUcaDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaGYaRS
3387
+ MLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6W6IYZVcSn2i51BVr
3388
+ lMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4KUGsTuqwPN1q3ErWQgR5WrlcihtnJ
3389
+ 0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH+FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJ
3390
+ ClTUFLkqqNfs+avNJVgyeY+QW5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYw
3391
+ DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC
3392
+ NxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZCLgLNFgVZJ8og
3393
+ 6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OCgMNPOsduET/m4xaRhPtthH80
3394
+ dK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk
3395
+ +ONVFT24bcMKpBLBaYVu32TxU5nhSnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex
3396
+ /2kskZGT4d9Mozd2TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDy
3397
+ AmH3pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGRxpl/j8nW
3398
+ ZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiAppGWSZI1b7rCoucL5mxAyE
3399
+ 7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKT
3400
+ c0QWbej09+CVgI+WXTik9KveCjCHk9hNAHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D
3401
+ 5KbvtwEwXlGjefVwaaZBRA+GsCyRxj3qrg+E
3402
+ -----END CERTIFICATE-----
3403
+
3404
+ e-Szigno Root CA 2017
3405
+ =====================
3406
+ -----BEGIN CERTIFICATE-----
3407
+ MIICQDCCAeWgAwIBAgIMAVRI7yH9l1kN9QQKMAoGCCqGSM49BAMCMHExCzAJBgNVBAYTAkhVMREw
3408
+ DwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUt
3409
+ MjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25vIFJvb3QgQ0EgMjAxNzAeFw0xNzA4MjIxMjA3MDZa
3410
+ Fw00MjA4MjIxMjA3MDZaMHExCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UE
3411
+ CgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3pp
3412
+ Z25vIFJvb3QgQ0EgMjAxNzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbcPYrYsHtvxie+RJCx
3413
+ s1YVe45DJH0ahFnuY2iyxl6H0BVIHqiQrb1TotreOpCmYF9oMrWGQd+HWyx7xf58etqjYzBhMA8G
3414
+ A1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSHERUI0arBeAyxr87GyZDv
3415
+ vzAEwDAfBgNVHSMEGDAWgBSHERUI0arBeAyxr87GyZDvvzAEwDAKBggqhkjOPQQDAgNJADBGAiEA
3416
+ tVfd14pVCzbhhkT61NlojbjcI4qKDdQvfepz7L9NbKgCIQDLpbQS+ue16M9+k/zzNY9vTlp8tLxO
3417
+ svxyqltZ+efcMQ==
3418
+ -----END CERTIFICATE-----
3419
+
3420
+ certSIGN Root CA G2
3421
+ ===================
3422
+ -----BEGIN CERTIFICATE-----
3423
+ MIIFRzCCAy+gAwIBAgIJEQA0tk7GNi02MA0GCSqGSIb3DQEBCwUAMEExCzAJBgNVBAYTAlJPMRQw
3424
+ EgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJR04gUk9PVCBDQSBHMjAeFw0xNzAy
3425
+ MDYwOTI3MzVaFw00MjAyMDYwOTI3MzVaMEExCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lH
3426
+ TiBTQTEcMBoGA1UECxMTY2VydFNJR04gUk9PVCBDQSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIP
3427
+ ADCCAgoCggIBAMDFdRmRfUR0dIf+DjuW3NgBFszuY5HnC2/OOwppGnzC46+CjobXXo9X69MhWf05
3428
+ N0IwvlDqtg+piNguLWkh59E3GE59kdUWX2tbAMI5Qw02hVK5U2UPHULlj88F0+7cDBrZuIt4Imfk
3429
+ abBoxTzkbFpG583H+u/E7Eu9aqSs/cwoUe+StCmrqzWaTOTECMYmzPhpn+Sc8CnTXPnGFiWeI8Mg
3430
+ wT0PPzhAsP6CRDiqWhqKa2NYOLQV07YRaXseVO6MGiKscpc/I1mbySKEwQdPzH/iV8oScLumZfNp
3431
+ dWO9lfsbl83kqK/20U6o2YpxJM02PbyWxPFsqa7lzw1uKA2wDrXKUXt4FMMgL3/7FFXhEZn91Qqh
3432
+ ngLjYl/rNUssuHLoPj1PrCy7Lobio3aP5ZMqz6WryFyNSwb/EkaseMsUBzXgqd+L6a8VTxaJW732
3433
+ jcZZroiFDsGJ6x9nxUWO/203Nit4ZoORUSs9/1F3dmKh7Gc+PoGD4FapUB8fepmrY7+EF3fxDTvf
3434
+ 95xhszWYijqy7DwaNz9+j5LP2RIUZNoQAhVB/0/E6xyjyfqZ90bp4RjZsbgyLcsUDFDYg2WD7rlc
3435
+ z8sFWkz6GZdr1l0T08JcVLwyc6B49fFtHsufpaafItzRUZ6CeWRgKRM+o/1Pcmqr4tTluCRVLERL
3436
+ iohEnMqE0yo7AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1Ud
3437
+ DgQWBBSCIS1mxteg4BXrzkwJd8RgnlRuAzANBgkqhkiG9w0BAQsFAAOCAgEAYN4auOfyYILVAzOB
3438
+ ywaK8SJJ6ejqkX/GM15oGQOGO0MBzwdw5AgeZYWR5hEit/UCI46uuR59H35s5r0l1ZUa8gWmr4UC
3439
+ b6741jH/JclKyMeKqdmfS0mbEVeZkkMR3rYzpMzXjWR91M08KCy0mpbqTfXERMQlqiCA2ClV9+BB
3440
+ /AYm/7k29UMUA2Z44RGx2iBfRgB4ACGlHgAoYXhvqAEBj500mv/0OJD7uNGzcgbJceaBxXntC6Z5
3441
+ 8hMLnPddDnskk7RI24Zf3lCGeOdA5jGokHZwYa+cNywRtYK3qq4kNFtyDGkNzVmf9nGvnAvRCjj5
3442
+ BiKDUyUM/FHE5r7iOZULJK2v0ZXkltd0ZGtxTgI8qoXzIKNDOXZbbFD+mpwUHmUUihW9o4JFWklW
3443
+ atKcsWMy5WHgUyIOpwpJ6st+H6jiYoD2EEVSmAYY3qXNL3+q1Ok+CHLsIwMCPKaq2LxndD0UF/tU
3444
+ Sxfj03k9bWtJySgOLnRQvwzZRjoQhsmnP+mg7H/rpXdYaXHmgwo38oZJar55CJD2AhZkPuXaTH4M
3445
+ NMn5X7azKFGnpyuqSfqNZSlO42sTp5SjLVFteAxEy9/eCG/Oo2Sr05WE1LlSVHJ7liXMvGnjSG4N
3446
+ 0MedJ5qq+BOS3R7fY581qRY27Iy4g/Q9iY/NtBde17MXQRBdJ3NghVdJIgc=
3447
+ -----END CERTIFICATE-----
vendor/composer/ca-bundle/src/CaBundle.php CHANGED
@@ -174,6 +174,7 @@ class CaBundle
174
 
175
  $isValid = !empty($contents);
176
  } else {
 
177
  $isValid = (bool) openssl_x509_parse($contents);
178
  }
179
 
174
 
175
  $isValid = !empty($contents);
176
  } else {
177
+ $contents = preg_replace("/^(\\-+(?:BEGIN|END))\\s+TRUSTED\\s+(CERTIFICATE\\-+)\$/m", '$1 $2', $contents);
178
  $isValid = (bool) openssl_x509_parse($contents);
179
  }
180
 
vendor/composer/installed.json CHANGED
@@ -6,12 +6,12 @@
6
  "source": {
7
  "type": "git",
8
  "url": "https://github.com/composer/ca-bundle.git",
9
- "reference": "47fe531de31fca4a1b997f87308e7d7804348f7e"
10
  },
11
  "dist": {
12
  "type": "zip",
13
- "url": "https://api.github.com/repos/composer/ca-bundle/zipball/47fe531de31fca4a1b997f87308e7d7804348f7e",
14
- "reference": "47fe531de31fca4a1b997f87308e7d7804348f7e",
15
  "shasum": ""
16
  },
17
  "require": {
@@ -24,7 +24,7 @@
24
  "psr/log": "^1.0",
25
  "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
26
  },
27
- "time": "2020-01-13T10:02:55+00:00",
28
  "type": "library",
29
  "extra": {
30
  "branch-alias": {
@@ -55,28 +55,48 @@
55
  "certificate",
56
  "ssl",
57
  "tls"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  ]
59
  },
60
  {
61
  "name": "guzzlehttp/guzzle",
62
- "version": "dev-master",
63
- "version_normalized": "9999999-dev",
64
  "source": {
65
  "type": "git",
66
  "url": "https://github.com/guzzle/guzzle.git",
67
- "reference": "df36d8dae3979cf927d5bbbed6f0427f39aadfec"
68
  },
69
  "dist": {
70
  "type": "zip",
71
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/df36d8dae3979cf927d5bbbed6f0427f39aadfec",
72
- "reference": "df36d8dae3979cf927d5bbbed6f0427f39aadfec",
73
  "shasum": ""
74
  },
75
  "require": {
76
  "ext-json": "*",
77
  "guzzlehttp/promises": "^1.0",
78
  "guzzlehttp/psr7": "^1.6.1",
79
- "php": ">=5.5"
 
80
  },
81
  "require-dev": {
82
  "ext-curl": "*",
@@ -86,7 +106,7 @@
86
  "suggest": {
87
  "psr/log": "Required for using the Log middleware"
88
  },
89
- "time": "2019-10-30T11:22:04+00:00",
90
  "type": "library",
91
  "extra": {
92
  "branch-alias": {
@@ -123,6 +143,32 @@
123
  "http client",
124
  "rest",
125
  "web service"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
  ]
127
  },
128
  {
@@ -132,21 +178,21 @@
132
  "source": {
133
  "type": "git",
134
  "url": "https://github.com/guzzle/promises.git",
135
- "reference": "ac2529fc650684c5cd687e2b462d046cdbed556e"
136
  },
137
  "dist": {
138
  "type": "zip",
139
- "url": "https://api.github.com/repos/guzzle/promises/zipball/ac2529fc650684c5cd687e2b462d046cdbed556e",
140
- "reference": "ac2529fc650684c5cd687e2b462d046cdbed556e",
141
  "shasum": ""
142
  },
143
  "require": {
144
- "php": ">=5.6"
145
  },
146
  "require-dev": {
147
- "phpunit/phpunit": "^5.7.27 || ^7.5"
148
  },
149
- "time": "2019-12-17T17:19:17+00:00",
150
  "type": "library",
151
  "extra": {
152
  "branch-alias": {
@@ -176,7 +222,11 @@
176
  "description": "Guzzle promises library",
177
  "keywords": [
178
  "promise"
179
- ]
 
 
 
 
180
  },
181
  {
182
  "name": "guzzlehttp/psr7",
@@ -185,12 +235,12 @@
185
  "source": {
186
  "type": "git",
187
  "url": "https://github.com/guzzle/psr7.git",
188
- "reference": "c291e45d40e638815990004e5f7ee367c2b752e9"
189
  },
190
  "dist": {
191
  "type": "zip",
192
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/c291e45d40e638815990004e5f7ee367c2b752e9",
193
- "reference": "c291e45d40e638815990004e5f7ee367c2b752e9",
194
  "shasum": ""
195
  },
196
  "require": {
@@ -203,16 +253,16 @@
203
  },
204
  "require-dev": {
205
  "ext-zlib": "*",
206
- "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
207
  },
208
  "suggest": {
209
- "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
210
  },
211
- "time": "2019-12-21T15:35:40+00:00",
212
  "type": "library",
213
  "extra": {
214
  "branch-alias": {
215
- "dev-master": "1.6-dev"
216
  }
217
  },
218
  "installation-source": "dist",
@@ -249,21 +299,25 @@
249
  "stream",
250
  "uri",
251
  "url"
252
- ]
 
 
 
 
253
  },
254
  {
255
  "name": "mollie/mollie-api-php",
256
- "version": "v2.12.1",
257
- "version_normalized": "2.12.1.0",
258
  "source": {
259
  "type": "git",
260
  "url": "https://github.com/mollie/mollie-api-php.git",
261
- "reference": "04e2c1840533cba377130291336cde3d392cc214"
262
  },
263
  "dist": {
264
  "type": "zip",
265
- "url": "https://api.github.com/repos/mollie/mollie-api-php/zipball/04e2c1840533cba377130291336cde3d392cc214",
266
- "reference": "04e2c1840533cba377130291336cde3d392cc214",
267
  "shasum": ""
268
  },
269
  "require": {
@@ -271,17 +325,17 @@
271
  "ext-curl": "*",
272
  "ext-json": "*",
273
  "ext-openssl": "*",
274
- "guzzlehttp/guzzle": "^6.3",
275
  "php": ">=5.6"
276
  },
277
  "require-dev": {
278
  "eloquent/liberator": "^2.0",
279
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.1"
280
  },
281
  "suggest": {
282
  "mollie/oauth2-mollie-php": "Use OAuth to authenticate with the Mollie API. This is needed for some endpoints. Visit https://docs.mollie.com/ for more information."
283
  },
284
- "time": "2019-11-29T10:27:50+00:00",
285
  "type": "library",
286
  "installation-source": "dist",
287
  "autoload": {
@@ -337,7 +391,67 @@
337
  "sofort",
338
  "sofortbanking",
339
  "subscriptions"
340
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
  },
342
  {
343
  "name": "psr/http-message",
@@ -389,7 +503,10 @@
389
  "psr-7",
390
  "request",
391
  "response"
392
- ]
 
 
 
393
  },
394
  {
395
  "name": "ralouphie/getallheaders",
@@ -431,6 +548,346 @@
431
  "email": "ralph.khattar@gmail.com"
432
  }
433
  ],
434
- "description": "A polyfill for getallheaders."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
435
  }
436
  ]
6
  "source": {
7
  "type": "git",
8
  "url": "https://github.com/composer/ca-bundle.git",
9
+ "reference": "8a7ecad675253e4654ea05505233285377405215"
10
  },
11
  "dist": {
12
  "type": "zip",
13
+ "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
14
+ "reference": "8a7ecad675253e4654ea05505233285377405215",
15
  "shasum": ""
16
  },
17
  "require": {
24
  "psr/log": "^1.0",
25
  "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
26
  },
27
+ "time": "2020-08-23T12:54:47+00:00",
28
  "type": "library",
29
  "extra": {
30
  "branch-alias": {
55
  "certificate",
56
  "ssl",
57
  "tls"
58
+ ],
59
+ "support": {
60
+ "irc": "irc://irc.freenode.org/composer",
61
+ "issues": "https://github.com/composer/ca-bundle/issues",
62
+ "source": "https://github.com/composer/ca-bundle/tree/master"
63
+ },
64
+ "funding": [
65
+ {
66
+ "url": "https://packagist.com",
67
+ "type": "custom"
68
+ },
69
+ {
70
+ "url": "https://github.com/composer",
71
+ "type": "github"
72
+ },
73
+ {
74
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
75
+ "type": "tidelift"
76
+ }
77
  ]
78
  },
79
  {
80
  "name": "guzzlehttp/guzzle",
81
+ "version": "6.5.x-dev",
82
+ "version_normalized": "6.5.9999999.9999999-dev",
83
  "source": {
84
  "type": "git",
85
  "url": "https://github.com/guzzle/guzzle.git",
86
+ "reference": "e8ed4dbf49b260ff129ff0e0400718c3269971bf"
87
  },
88
  "dist": {
89
  "type": "zip",
90
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/e8ed4dbf49b260ff129ff0e0400718c3269971bf",
91
+ "reference": "e8ed4dbf49b260ff129ff0e0400718c3269971bf",
92
  "shasum": ""
93
  },
94
  "require": {
95
  "ext-json": "*",
96
  "guzzlehttp/promises": "^1.0",
97
  "guzzlehttp/psr7": "^1.6.1",
98
+ "php": ">=5.5",
99
+ "symfony/polyfill-intl-idn": "^1.17.0"
100
  },
101
  "require-dev": {
102
  "ext-curl": "*",
106
  "suggest": {
107
  "psr/log": "Required for using the Log middleware"
108
  },
109
+ "time": "2020-07-02T06:52:04+00:00",
110
  "type": "library",
111
  "extra": {
112
  "branch-alias": {
143
  "http client",
144
  "rest",
145
  "web service"
146
+ ],
147
+ "support": {
148
+ "issues": "https://github.com/guzzle/guzzle/issues",
149
+ "source": "https://github.com/guzzle/guzzle/tree/6.5"
150
+ },
151
+ "funding": [
152
+ {
153
+ "url": "https://github.com/GrahamCampbell",
154
+ "type": "github"
155
+ },
156
+ {
157
+ "url": "https://github.com/Nyholm",
158
+ "type": "github"
159
+ },
160
+ {
161
+ "url": "https://github.com/alexeyshockov",
162
+ "type": "github"
163
+ },
164
+ {
165
+ "url": "https://github.com/gmponos",
166
+ "type": "github"
167
+ },
168
+ {
169
+ "url": "https://github.com/sagikazarmark",
170
+ "type": "github"
171
+ }
172
  ]
173
  },
174
  {
178
  "source": {
179
  "type": "git",
180
  "url": "https://github.com/guzzle/promises.git",
181
+ "reference": "ddfeedfff2a52661429437da0702979f708e6ac6"
182
  },
183
  "dist": {
184
  "type": "zip",
185
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/ddfeedfff2a52661429437da0702979f708e6ac6",
186
+ "reference": "ddfeedfff2a52661429437da0702979f708e6ac6",
187
  "shasum": ""
188
  },
189
  "require": {
190
+ "php": ">=5.5"
191
  },
192
  "require-dev": {
193
+ "symfony/phpunit-bridge": "^4.4 || ^5.1"
194
  },
195
+ "time": "2020-10-19T16:50:15+00:00",
196
  "type": "library",
197
  "extra": {
198
  "branch-alias": {
222
  "description": "Guzzle promises library",
223
  "keywords": [
224
  "promise"
225
+ ],
226
+ "support": {
227
+ "issues": "https://github.com/guzzle/promises/issues",
228
+ "source": "https://github.com/guzzle/promises/tree/master"
229
+ }
230
  },
231
  {
232
  "name": "guzzlehttp/psr7",
235
  "source": {
236
  "type": "git",
237
  "url": "https://github.com/guzzle/psr7.git",
238
+ "reference": "25f7f893f0b52b7b14e244a16679d72b1f0088de"
239
  },
240
  "dist": {
241
  "type": "zip",
242
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/25f7f893f0b52b7b14e244a16679d72b1f0088de",
243
+ "reference": "25f7f893f0b52b7b14e244a16679d72b1f0088de",
244
  "shasum": ""
245
  },
246
  "require": {
253
  },
254
  "require-dev": {
255
  "ext-zlib": "*",
256
+ "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
257
  },
258
  "suggest": {
259
+ "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
260
  },
261
+ "time": "2020-10-22T07:42:05+00:00",
262
  "type": "library",
263
  "extra": {
264
  "branch-alias": {
265
+ "dev-master": "1.7-dev"
266
  }
267
  },
268
  "installation-source": "dist",
299
  "stream",
300
  "uri",
301
  "url"
302
+ ],
303
+ "support": {
304
+ "issues": "https://github.com/guzzle/psr7/issues",
305
+ "source": "https://github.com/guzzle/psr7/tree/1.x"
306
+ }
307
  },
308
  {
309
  "name": "mollie/mollie-api-php",
310
+ "version": "v2.26.0",
311
+ "version_normalized": "2.26.0.0",
312
  "source": {
313
  "type": "git",
314
  "url": "https://github.com/mollie/mollie-api-php.git",
315
+ "reference": "eed0a326bba2bf198cd8bff0c4cf7ba2f7a2395a"
316
  },
317
  "dist": {
318
  "type": "zip",
319
+ "url": "https://api.github.com/repos/mollie/mollie-api-php/zipball/eed0a326bba2bf198cd8bff0c4cf7ba2f7a2395a",
320
+ "reference": "eed0a326bba2bf198cd8bff0c4cf7ba2f7a2395a",
321
  "shasum": ""
322
  },
323
  "require": {
325
  "ext-curl": "*",
326
  "ext-json": "*",
327
  "ext-openssl": "*",
328
+ "guzzlehttp/guzzle": "^6.3 || ^7.0",
329
  "php": ">=5.6"
330
  },
331
  "require-dev": {
332
  "eloquent/liberator": "^2.0",
333
+ "phpunit/phpunit": "^5.7 || ^6.5 || ^7.1 || ^8.5"
334
  },
335
  "suggest": {
336
  "mollie/oauth2-mollie-php": "Use OAuth to authenticate with the Mollie API. This is needed for some endpoints. Visit https://docs.mollie.com/ for more information."
337
  },
338
+ "time": "2020-12-03T09:47:21+00:00",
339
  "type": "library",
340
  "installation-source": "dist",
341
  "autoload": {
391
  "sofort",
392
  "sofortbanking",
393
  "subscriptions"
394
+ ],
395
+ "support": {
396
+ "issues": "https://github.com/mollie/mollie-api-php/issues",
397
+ "source": "https://github.com/mollie/mollie-api-php/tree/v2.26.0"
398
+ }
399
+ },
400
+ {
401
+ "name": "paragonie/random_compat",
402
+ "version": "v2.0.19",
403
+ "version_normalized": "2.0.19.0",
404
+ "source": {
405
+ "type": "git",
406
+ "url": "https://github.com/paragonie/random_compat.git",
407
+ "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241"
408
+ },
409
+ "dist": {
410
+ "type": "zip",
411
+ "url": "https://api.github.com/repos/paragonie/random_compat/zipball/446fc9faa5c2a9ddf65eb7121c0af7e857295241",
412
+ "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241",
413
+ "shasum": ""
414
+ },
415
+ "require": {
416
+ "php": ">=5.2.0"
417
+ },
418
+ "require-dev": {
419
+ "phpunit/phpunit": "4.*|5.*"
420
+ },
421
+ "suggest": {
422
+ "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
423
+ },
424
+ "time": "2020-10-15T10:06:57+00:00",
425
+ "type": "library",
426
+ "installation-source": "dist",
427
+ "autoload": {
428
+ "files": [
429
+ "lib/random.php"
430
+ ]
431
+ },
432
+ "notification-url": "https://packagist.org/downloads/",
433
+ "license": [
434
+ "MIT"
435
+ ],
436
+ "authors": [
437
+ {
438
+ "name": "Paragon Initiative Enterprises",
439
+ "email": "security@paragonie.com",
440
+ "homepage": "https://paragonie.com"
441
+ }
442
+ ],
443
+ "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
444
+ "keywords": [
445
+ "csprng",
446
+ "polyfill",
447
+ "pseudorandom",
448
+ "random"
449
+ ],
450
+ "support": {
451
+ "email": "info@paragonie.com",
452
+ "issues": "https://github.com/paragonie/random_compat/issues",
453
+ "source": "https://github.com/paragonie/random_compat"
454
+ }
455
  },
456
  {
457
  "name": "psr/http-message",
503
  "psr-7",
504
  "request",
505
  "response"
506
+ ],
507
+ "support": {
508
+ "source": "https://github.com/php-fig/http-message/tree/master"
509
+ }
510
  },
511
  {
512
  "name": "ralouphie/getallheaders",
548
  "email": "ralph.khattar@gmail.com"
549
  }
550
  ],
551
+ "description": "A polyfill for getallheaders.",
552
+ "support": {
553
+ "issues": "https://github.com/ralouphie/getallheaders/issues",
554
+ "source": "https://github.com/ralouphie/getallheaders/tree/develop"
555
+ }
556
+ },
557
+ {
558
+ "name": "symfony/polyfill-intl-idn",
559
+ "version": "v1.19.0",
560
+ "version_normalized": "1.19.0.0",
561
+ "source": {
562
+ "type": "git",
563
+ "url": "https://github.com/symfony/polyfill-intl-idn.git",
564
+ "reference": "4ad5115c0f5d5172a9fe8147675ec6de266d8826"
565
+ },
566
+ "dist": {
567
+ "type": "zip",
568
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/4ad5115c0f5d5172a9fe8147675ec6de266d8826",
569
+ "reference": "4ad5115c0f5d5172a9fe8147675ec6de266d8826",
570
+ "shasum": ""
571
+ },
572
+ "require": {
573
+ "php": ">=5.3.3",
574
+ "symfony/polyfill-intl-normalizer": "^1.10",
575
+ "symfony/polyfill-php70": "^1.10",
576
+ "symfony/polyfill-php72": "^1.10"
577
+ },
578
+ "suggest": {
579
+ "ext-intl": "For best performance"
580
+ },
581
+ "time": "2020-10-21T09:57:48+00:00",
582
+ "type": "library",
583
+ "extra": {
584
+ "branch-alias": {
585
+ "dev-main": "1.19-dev"
586
+ },
587
+ "thanks": {
588
+ "name": "symfony/polyfill",
589
+ "url": "https://github.com/symfony/polyfill"
590
+ }
591
+ },
592
+ "installation-source": "dist",
593
+ "autoload": {
594
+ "psr-4": {
595
+ "Symfony\\Polyfill\\Intl\\Idn\\": ""
596
+ },
597
+ "files": [
598
+ "bootstrap.php"
599
+ ]
600
+ },
601
+ "notification-url": "https://packagist.org/downloads/",
602
+ "license": [
603
+ "MIT"
604
+ ],
605
+ "authors": [
606
+ {
607
+ "name": "Laurent Bassin",
608
+ "email": "laurent@bassin.info"
609
+ },
610
+ {
611
+ "name": "Trevor Rowbotham",
612
+ "email": "trevor.rowbotham@pm.me"
613
+ },
614
+ {
615
+ "name": "Symfony Community",
616
+ "homepage": "https://symfony.com/contributors"
617
+ }
618
+ ],
619
+ "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
620
+ "homepage": "https://symfony.com",
621
+ "keywords": [
622
+ "compatibility",
623
+ "idn",
624
+ "intl",
625
+ "polyfill",
626
+ "portable",
627
+ "shim"
628
+ ],
629
+ "support": {
630
+ "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.19.0"
631
+ },
632
+ "funding": [
633
+ {
634
+ "url": "https://symfony.com/sponsor",
635
+ "type": "custom"
636
+ },
637
+ {
638
+ "url": "https://github.com/fabpot",
639
+ "type": "github"
640
+ },
641
+ {
642
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
643
+ "type": "tidelift"
644
+ }
645
+ ]
646
+ },
647
+ {
648
+ "name": "symfony/polyfill-intl-normalizer",
649
+ "version": "v1.19.0",
650
+ "version_normalized": "1.19.0.0",
651
+ "source": {
652
+ "type": "git",
653
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
654
+ "reference": "8db0ae7936b42feb370840cf24de1a144fb0ef27"
655
+ },
656
+ "dist": {
657
+ "type": "zip",
658
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8db0ae7936b42feb370840cf24de1a144fb0ef27",
659
+ "reference": "8db0ae7936b42feb370840cf24de1a144fb0ef27",
660
+ "shasum": ""
661
+ },
662
+ "require": {
663
+ "php": ">=5.3.3"
664
+ },
665
+ "suggest": {
666
+ "ext-intl": "For best performance"
667
+ },
668
+ "time": "2020-10-23T09:01:57+00:00",
669
+ "type": "library",
670
+ "extra": {
671
+ "branch-alias": {
672
+ "dev-main": "1.19-dev"
673
+ },
674
+ "thanks": {
675
+ "name": "symfony/polyfill",
676
+ "url": "https://github.com/symfony/polyfill"
677
+ }
678
+ },
679
+ "installation-source": "dist",
680
+ "autoload": {
681
+ "psr-4": {
682
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
683
+ },
684
+ "files": [
685
+ "bootstrap.php"
686
+ ],
687
+ "classmap": [
688
+ "Resources/stubs"
689
+ ]
690
+ },
691
+ "notification-url": "https://packagist.org/downloads/",
692
+ "license": [
693
+ "MIT"
694
+ ],
695
+ "authors": [
696
+ {
697
+ "name": "Nicolas Grekas",
698
+ "email": "p@tchwork.com"
699
+ },
700
+ {
701
+ "name": "Symfony Community",
702
+ "homepage": "https://symfony.com/contributors"
703
+ }
704
+ ],
705
+ "description": "Symfony polyfill for intl's Normalizer class and related functions",
706
+ "homepage": "https://symfony.com",
707
+ "keywords": [
708
+ "compatibility",
709
+ "intl",
710
+ "normalizer",
711
+ "polyfill",
712
+ "portable",
713
+ "shim"
714
+ ],
715
+ "support": {
716
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.19.0"
717
+ },
718
+ "funding": [
719
+ {
720
+ "url": "https://symfony.com/sponsor",
721
+ "type": "custom"
722
+ },
723
+ {
724
+ "url": "https://github.com/fabpot",
725
+ "type": "github"
726
+ },
727
+ {
728
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
729
+ "type": "tidelift"
730
+ }
731
+ ]
732
+ },
733
+ {
734
+ "name": "symfony/polyfill-php70",
735
+ "version": "v1.19.0",
736
+ "version_normalized": "1.19.0.0",
737
+ "source": {
738
+ "type": "git",
739
+ "url": "https://github.com/symfony/polyfill-php70.git",
740
+ "reference": "3fe414077251a81a1b15b1c709faf5c2fbae3d4e"
741
+ },
742
+ "dist": {
743
+ "type": "zip",
744
+ "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/3fe414077251a81a1b15b1c709faf5c2fbae3d4e",
745
+ "reference": "3fe414077251a81a1b15b1c709faf5c2fbae3d4e",
746
+ "shasum": ""
747
+ },
748
+ "require": {
749
+ "paragonie/random_compat": "~1.0|~2.0|~9.99",
750
+ "php": ">=5.3.3"
751
+ },
752
+ "time": "2020-10-23T09:01:57+00:00",
753
+ "type": "library",
754
+ "extra": {
755
+ "branch-alias": {
756
+ "dev-main": "1.19-dev"
757
+ },
758
+ "thanks": {
759
+ "name": "symfony/polyfill",
760
+ "url": "https://github.com/symfony/polyfill"
761
+ }
762
+ },
763
+ "installation-source": "dist",
764
+ "autoload": {
765
+ "psr-4": {
766
+ "Symfony\\Polyfill\\Php70\\": ""
767
+ },
768
+ "files": [
769
+ "bootstrap.php"
770
+ ],
771
+ "classmap": [
772
+ "Resources/stubs"
773
+ ]
774
+ },
775
+ "notification-url": "https://packagist.org/downloads/",
776
+ "license": [
777
+ "MIT"
778
+ ],
779
+ "authors": [
780
+ {
781
+ "name": "Nicolas Grekas",
782
+ "email": "p@tchwork.com"
783
+ },
784
+ {
785
+ "name": "Symfony Community",
786
+ "homepage": "https://symfony.com/contributors"
787
+ }
788
+ ],
789
+ "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
790
+ "homepage": "https://symfony.com",
791
+ "keywords": [
792
+ "compatibility",
793
+ "polyfill",
794
+ "portable",
795
+ "shim"
796
+ ],
797
+ "support": {
798
+ "source": "https://github.com/symfony/polyfill-php70/tree/v1.19.0"
799
+ },
800
+ "funding": [
801
+ {
802
+ "url": "https://symfony.com/sponsor",
803
+ "type": "custom"
804
+ },
805
+ {
806
+ "url": "https://github.com/fabpot",
807
+ "type": "github"
808
+ },
809
+ {
810
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
811
+ "type": "tidelift"
812
+ }
813
+ ]
814
+ },
815
+ {
816
+ "name": "symfony/polyfill-php72",
817
+ "version": "v1.19.0",
818
+ "version_normalized": "1.19.0.0",
819
+ "source": {
820
+ "type": "git",
821
+ "url": "https://github.com/symfony/polyfill-php72.git",
822
+ "reference": "beecef6b463b06954638f02378f52496cb84bacc"
823
+ },
824
+ "dist": {
825
+ "type": "zip",
826
+ "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/beecef6b463b06954638f02378f52496cb84bacc",
827
+ "reference": "beecef6b463b06954638f02378f52496cb84bacc",
828
+ "shasum": ""
829
+ },
830
+ "require": {
831
+ "php": ">=5.3.3"
832
+ },
833
+ "time": "2020-10-23T09:01:57+00:00",
834
+ "type": "library",
835
+ "extra": {
836
+ "branch-alias": {
837
+ "dev-main": "1.19-dev"
838
+ },
839
+ "thanks": {
840
+ "name": "symfony/polyfill",
841
+ "url": "https://github.com/symfony/polyfill"
842
+ }
843
+ },
844
+ "installation-source": "dist",
845
+ "autoload": {
846
+ "psr-4": {
847
+ "Symfony\\Polyfill\\Php72\\": ""
848
+ },
849
+ "files": [
850
+ "bootstrap.php"
851
+ ]
852
+ },
853
+ "notification-url": "https://packagist.org/downloads/",
854
+ "license": [
855
+ "MIT"
856
+ ],
857
+ "authors": [
858
+ {
859
+ "name": "Nicolas Grekas",
860
+ "email": "p@tchwork.com"
861
+ },
862
+ {
863
+ "name": "Symfony Community",
864
+ "homepage": "https://symfony.com/contributors"
865
+ }
866
+ ],
867
+ "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
868
+ "homepage": "https://symfony.com",
869
+ "keywords": [
870
+ "compatibility",
871
+ "polyfill",
872
+ "portable",
873
+ "shim"
874
+ ],
875
+ "support": {
876
+ "source": "https://github.com/symfony/polyfill-php72/tree/v1.19.0"
877
+ },
878
+ "funding": [
879
+ {
880
+ "url": "https://symfony.com/sponsor",
881
+ "type": "custom"
882
+ },
883
+ {
884
+ "url": "https://github.com/fabpot",
885
+ "type": "github"
886
+ },
887
+ {
888
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
889
+ "type": "tidelift"
890
+ }
891
+ ]
892
  }
893
  ]
vendor/guzzlehttp/guzzle/.php_cs ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $config = PhpCsFixer\Config::create()
4
+ ->setRiskyAllowed(true)
5
+ ->setRules([
6
+ '@PSR2' => true,
7
+ 'array_syntax' => ['syntax' => 'short'],
8
+ 'declare_strict_types' => false,
9
+ 'concat_space' => ['spacing'=>'one'],
10
+ 'php_unit_test_case_static_method_calls' => ['call_type' => 'self'],
11
+ 'ordered_imports' => true,
12
+ // 'phpdoc_align' => ['align'=>'vertical'],
13
+ // 'native_function_invocation' => true,
14
+ ])
15
+ ->setFinder(
16
+ PhpCsFixer\Finder::create()
17
+ ->in(__DIR__.'/src')
18
+ ->in(__DIR__.'/tests')
19
+ ->name('*.php')
20
+ )
21
+ ;
22
+
23
+ return $config;
vendor/guzzlehttp/guzzle/CHANGELOG.md ADDED
@@ -0,0 +1,1338 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Change Log
2
+
3
+ ## 6.5.5 - 2020-06-16
4
+
5
+ * Unpin version constraint for `symfony/polyfill-intl-idn` [#2678](https://github.com/guzzle/guzzle/pull/2678)
6
+
7
+ ## 6.5.4 - 2020-05-25
8
+
9
+ * Fix various intl icu issues [#2626](https://github.com/guzzle/guzzle/pull/2626)
10
+
11
+ ## 6.5.3 - 2020-04-18
12
+
13
+ * Use Symfony intl-idn polyfill [#2550](https://github.com/guzzle/guzzle/pull/2550)
14
+ * Remove use of internal functions [#2548](https://github.com/guzzle/guzzle/pull/2548)
15
+
16
+ ## 6.5.2 - 2019-12-23
17
+
18
+ * idn_to_ascii() fix for old PHP versions [#2489](https://github.com/guzzle/guzzle/pull/2489)
19
+
20
+ ## 6.5.1 - 2019-12-21
21
+
22
+ * Better defaults for PHP installations with old ICU lib [#2454](https://github.com/guzzle/guzzle/pull/2454)
23
+ * IDN support for redirects [#2424](https://github.com/guzzle/guzzle/pull/2424)
24
+
25
+ ## 6.5.0 - 2019-12-07
26
+
27
+ * Improvement: Added support for reset internal queue in MockHandler. [#2143](https://github.com/guzzle/guzzle/pull/2143)
28
+ * Improvement: Added support to pass arbitrary options to `curl_multi_init`. [#2287](https://github.com/guzzle/guzzle/pull/2287)
29
+ * Fix: Gracefully handle passing `null` to the `header` option. [#2132](https://github.com/guzzle/guzzle/pull/2132)
30
+ * Fix: `RetryMiddleware` did not do exponential delay between retries due unit mismatch. [#2132](https://github.com/guzzle/guzzle/pull/2132)
31
+ Previously, `RetryMiddleware` would sleep for 1 millisecond, then 2 milliseconds, then 4 milliseconds.
32
+ **After this change, `RetryMiddleware` will sleep for 1 second, then 2 seconds, then 4 seconds.**
33
+ `Middleware::retry()` accepts a second callback parameter to override the default timeouts if needed.
34
+ * Fix: Prevent undefined offset when using array for ssl_key options. [#2348](https://github.com/guzzle/guzzle/pull/2348)
35
+ * Deprecated `ClientInterface::VERSION`
36
+
37
+ ## 6.4.1 - 2019-10-23
38
+
39
+ * No `guzzle.phar` was created in 6.4.0 due expired API token. This release will fix that
40
+ * Added `parent::__construct()` to `FileCookieJar` and `SessionCookieJar`
41
+
42
+ ## 6.4.0 - 2019-10-23
43
+
44
+ * Improvement: Improved error messages when using curl < 7.21.2 [#2108](https://github.com/guzzle/guzzle/pull/2108)
45
+ * Fix: Test if response is readable before returning a summary in `RequestException::getResponseBodySummary()` [#2081](https://github.com/guzzle/guzzle/pull/2081)
46
+ * Fix: Add support for GUZZLE_CURL_SELECT_TIMEOUT environment variable [#2161](https://github.com/guzzle/guzzle/pull/2161)
47
+ * Improvement: Added `GuzzleHttp\Exception\InvalidArgumentException` [#2163](https://github.com/guzzle/guzzle/pull/2163)
48
+ * Improvement: Added `GuzzleHttp\_current_time()` to use `hrtime()` if that function exists. [#2242](https://github.com/guzzle/guzzle/pull/2242)
49
+ * Improvement: Added curl's `appconnect_time` in `TransferStats` [#2284](https://github.com/guzzle/guzzle/pull/2284)
50
+ * Improvement: Make GuzzleException extend Throwable wherever it's available [#2273](https://github.com/guzzle/guzzle/pull/2273)
51
+ * Fix: Prevent concurrent writes to file when saving `CookieJar` [#2335](https://github.com/guzzle/guzzle/pull/2335)
52
+ * Improvement: Update `MockHandler` so we can test transfer time [#2362](https://github.com/guzzle/guzzle/pull/2362)
53
+
54
+ ## 6.3.3 - 2018-04-22
55
+
56
+ * Fix: Default headers when decode_content is specified
57
+
58
+
59
+ ## 6.3.2 - 2018-03-26
60
+
61
+ * Fix: Release process
62
+
63
+
64
+ ## 6.3.1 - 2018-03-26
65
+
66
+ * Bug fix: Parsing 0 epoch expiry times in cookies [#2014](https://github.com/guzzle/guzzle/pull/2014)
67
+ * Improvement: Better ConnectException detection [#2012](https://github.com/guzzle/guzzle/pull/2012)
68
+ * Bug fix: Malformed domain that contains a "/" [#1999](https://github.com/guzzle/guzzle/pull/1999)
69
+ * Bug fix: Undefined offset when a cookie has no first key-value pair [#1998](https://github.com/guzzle/guzzle/pull/1998)
70
+ * Improvement: Support PHPUnit 6 [#1953](https://github.com/guzzle/guzzle/pull/1953)
71
+ * Bug fix: Support empty headers [#1915](https://github.com/guzzle/guzzle/pull/1915)
72
+ * Bug fix: Ignore case during header modifications [#1916](https://github.com/guzzle/guzzle/pull/1916)
73
+
74
+ + Minor code cleanups, documentation fixes and clarifications.
75
+
76
+
77
+ ## 6.3.0 - 2017-06-22
78
+
79
+ * Feature: force IP resolution (ipv4 or ipv6) [#1608](https://github.com/guzzle/guzzle/pull/1608), [#1659](https://github.com/guzzle/guzzle/pull/1659)
80
+ * Improvement: Don't include summary in exception message when body is empty [#1621](https://github.com/guzzle/guzzle/pull/1621)
81
+ * Improvement: Handle `on_headers` option in MockHandler [#1580](https://github.com/guzzle/guzzle/pull/1580)
82
+ * Improvement: Added SUSE Linux CA path [#1609](https://github.com/guzzle/guzzle/issues/1609)
83
+ * Improvement: Use class reference for getting the name of the class instead of using hardcoded strings [#1641](https://github.com/guzzle/guzzle/pull/1641)
84
+ * Feature: Added `read_timeout` option [#1611](https://github.com/guzzle/guzzle/pull/1611)
85
+ * Bug fix: PHP 7.x fixes [#1685](https://github.com/guzzle/guzzle/pull/1685), [#1686](https://github.com/guzzle/guzzle/pull/1686), [#1811](https://github.com/guzzle/guzzle/pull/1811)
86
+ * Deprecation: BadResponseException instantiation without a response [#1642](https://github.com/guzzle/guzzle/pull/1642)
87
+ * Feature: Added NTLM auth [#1569](https://github.com/guzzle/guzzle/pull/1569)
88
+ * Feature: Track redirect HTTP status codes [#1711](https://github.com/guzzle/guzzle/pull/1711)
89
+ * Improvement: Check handler type during construction [#1745](https://github.com/guzzle/guzzle/pull/1745)
90
+ * Improvement: Always include the Content-Length if there's a body [#1721](https://github.com/guzzle/guzzle/pull/1721)
91
+ * Feature: Added convenience method to access a cookie by name [#1318](https://github.com/guzzle/guzzle/pull/1318)
92
+ * Bug fix: Fill `CURLOPT_CAPATH` and `CURLOPT_CAINFO` properly [#1684](https://github.com/guzzle/guzzle/pull/1684)
93
+ * Improvement: Use `\GuzzleHttp\Promise\rejection_for` function instead of object init [#1827](https://github.com/guzzle/guzzle/pull/1827)
94
+
95
+
96
+ + Minor code cleanups, documentation fixes and clarifications.
97
+
98
+ ## 6.2.3 - 2017-02-28
99
+
100
+ * Fix deprecations with guzzle/psr7 version 1.4
101
+
102
+ ## 6.2.2 - 2016-10-08
103
+
104
+ * Allow to pass nullable Response to delay callable
105
+ * Only add scheme when host is present
106
+ * Fix drain case where content-length is the literal string zero
107
+ * Obfuscate in-URL credentials in exceptions
108
+
109
+ ## 6.2.1 - 2016-07-18
110
+
111
+ * Address HTTP_PROXY security vulnerability, CVE-2016-5385:
112
+ https://httpoxy.org/
113
+ * Fixing timeout bug with StreamHandler:
114
+ https://github.com/guzzle/guzzle/pull/1488
115
+ * Only read up to `Content-Length` in PHP StreamHandler to avoid timeouts when
116
+ a server does not honor `Connection: close`.
117
+ * Ignore URI fragment when sending requests.
118
+
119
+ ## 6.2.0 - 2016-03-21
120
+
121
+ * Feature: added `GuzzleHttp\json_encode` and `GuzzleHttp\json_decode`.
122
+ https://github.com/guzzle/guzzle/pull/1389
123
+ * Bug fix: Fix sleep calculation when waiting for delayed requests.
124
+ https://github.com/guzzle/guzzle/pull/1324
125
+ * Feature: More flexible history containers.
126
+ https://github.com/guzzle/guzzle/pull/1373
127
+ * Bug fix: defer sink stream opening in StreamHandler.
128
+ https://github.com/guzzle/guzzle/pull/1377
129
+ * Bug fix: do not attempt to escape cookie values.
130
+ https://github.com/guzzle/guzzle/pull/1406
131
+ * Feature: report original content encoding and length on decoded responses.
132
+ https://github.com/guzzle/guzzle/pull/1409
133
+ * Bug fix: rewind seekable request bodies before dispatching to cURL.
134
+ https://github.com/guzzle/guzzle/pull/1422
135
+ * Bug fix: provide an empty string to `http_build_query` for HHVM workaround.
136
+ https://github.com/guzzle/guzzle/pull/1367
137
+
138
+ ## 6.1.1 - 2015-11-22
139
+
140
+ * Bug fix: Proxy::wrapSync() now correctly proxies to the appropriate handler
141
+ https://github.com/guzzle/guzzle/commit/911bcbc8b434adce64e223a6d1d14e9a8f63e4e4
142
+ * Feature: HandlerStack is now more generic.
143
+ https://github.com/guzzle/guzzle/commit/f2102941331cda544745eedd97fc8fd46e1ee33e
144
+ * Bug fix: setting verify to false in the StreamHandler now disables peer
145
+ verification. https://github.com/guzzle/guzzle/issues/1256
146
+ * Feature: Middleware now uses an exception factory, including more error
147
+ context. https://github.com/guzzle/guzzle/pull/1282
148
+ * Feature: better support for disabled functions.
149
+ https://github.com/guzzle/guzzle/pull/1287
150
+ * Bug fix: fixed regression where MockHandler was not using `sink`.
151
+ https://github.com/guzzle/guzzle/pull/1292
152
+
153
+ ## 6.1.0 - 2015-09-08
154
+
155
+ * Feature: Added the `on_stats` request option to provide access to transfer
156
+ statistics for requests. https://github.com/guzzle/guzzle/pull/1202
157
+ * Feature: Added the ability to persist session cookies in CookieJars.
158
+ https://github.com/guzzle/guzzle/pull/1195
159
+ * Feature: Some compatibility updates for Google APP Engine
160
+ https://github.com/guzzle/guzzle/pull/1216
161
+ * Feature: Added support for NO_PROXY to prevent the use of a proxy based on
162
+ a simple set of rules. https://github.com/guzzle/guzzle/pull/1197
163
+ * Feature: Cookies can now contain square brackets.
164
+ https://github.com/guzzle/guzzle/pull/1237
165
+ * Bug fix: Now correctly parsing `=` inside of quotes in Cookies.
166
+ https://github.com/guzzle/guzzle/pull/1232
167
+ * Bug fix: Cusotm cURL options now correctly override curl options of the
168
+ same name. https://github.com/guzzle/guzzle/pull/1221
169
+ * Bug fix: Content-Type header is now added when using an explicitly provided
170
+ multipart body. https://github.com/guzzle/guzzle/pull/1218
171
+ * Bug fix: Now ignoring Set-Cookie headers that have no name.
172
+ * Bug fix: Reason phrase is no longer cast to an int in some cases in the
173
+ cURL handler. https://github.com/guzzle/guzzle/pull/1187
174
+ * Bug fix: Remove the Authorization header when redirecting if the Host
175
+ header changes. https://github.com/guzzle/guzzle/pull/1207
176
+ * Bug fix: Cookie path matching fixes
177
+ https://github.com/guzzle/guzzle/issues/1129
178
+ * Bug fix: Fixing the cURL `body_as_string` setting
179
+ https://github.com/guzzle/guzzle/pull/1201
180
+ * Bug fix: quotes are no longer stripped when parsing cookies.
181
+ https://github.com/guzzle/guzzle/issues/1172
182
+ * Bug fix: `form_params` and `query` now always uses the `&` separator.
183
+ https://github.com/guzzle/guzzle/pull/1163
184
+ * Bug fix: Adding a Content-Length to PHP stream wrapper requests if not set.
185
+ https://github.com/guzzle/guzzle/pull/1189
186
+
187
+ ## 6.0.2 - 2015-07-04
188
+
189
+ * Fixed a memory leak in the curl handlers in which references to callbacks
190
+ were not being removed by `curl_reset`.
191
+ * Cookies are now extracted properly before redirects.
192
+ * Cookies now allow more character ranges.
193
+ * Decoded Content-Encoding responses are now modified to correctly reflect
194
+ their state if the encoding was automatically removed by a handler. This
195
+ means that the `Content-Encoding` header may be removed an the
196
+ `Content-Length` modified to reflect the message size after removing the
197
+ encoding.
198
+ * Added a more explicit error message when trying to use `form_params` and
199
+ `multipart` in the same request.
200
+ * Several fixes for HHVM support.
201
+ * Functions are now conditionally required using an additional level of
202
+ indirection to help with global Composer installations.
203
+
204
+ ## 6.0.1 - 2015-05-27
205
+
206
+ * Fixed a bug with serializing the `query` request option where the `&`
207
+ separator was missing.
208
+ * Added a better error message for when `body` is provided as an array. Please
209
+ use `form_params` or `multipart` instead.
210
+ * Various doc fixes.
211
+
212
+ ## 6.0.0 - 2015-05-26
213
+
214
+ * See the UPGRADING.md document for more information.
215
+ * Added `multipart` and `form_params` request options.
216
+ * Added `synchronous` request option.
217
+ * Added the `on_headers` request option.
218
+ * Fixed `expect` handling.
219
+ * No longer adding default middlewares in the client ctor. These need to be
220
+ present on the provided handler in order to work.
221
+ * Requests are no longer initiated when sending async requests with the
222
+ CurlMultiHandler. This prevents unexpected recursion from requests completing
223
+ while ticking the cURL loop.
224
+ * Removed the semantics of setting `default` to `true`. This is no longer
225
+ required now that the cURL loop is not ticked for async requests.
226
+ * Added request and response logging middleware.
227
+ * No longer allowing self signed certificates when using the StreamHandler.
228
+ * Ensuring that `sink` is valid if saving to a file.
229
+ * Request exceptions now include a "handler context" which provides handler
230
+ specific contextual information.
231
+ * Added `GuzzleHttp\RequestOptions` to allow request options to be applied
232
+ using constants.
233
+ * `$maxHandles` has been removed from CurlMultiHandler.
234
+ * `MultipartPostBody` is now part of the `guzzlehttp/psr7` package.
235
+
236
+ ## 5.3.0 - 2015-05-19
237
+
238
+ * Mock now supports `save_to`
239
+ * Marked `AbstractRequestEvent::getTransaction()` as public.
240
+ * Fixed a bug in which multiple headers using different casing would overwrite
241
+ previous headers in the associative array.
242
+ * Added `Utils::getDefaultHandler()`
243
+ * Marked `GuzzleHttp\Client::getDefaultUserAgent` as deprecated.
244
+ * URL scheme is now always lowercased.
245
+
246
+ ## 6.0.0-beta.1
247
+
248
+ * Requires PHP >= 5.5
249
+ * Updated to use PSR-7
250
+ * Requires immutable messages, which basically means an event based system
251
+ owned by a request instance is no longer possible.
252
+ * Utilizing the [Guzzle PSR-7 package](https://github.com/guzzle/psr7).
253
+ * Removed the dependency on `guzzlehttp/streams`. These stream abstractions
254
+ are available in the `guzzlehttp/psr7` package under the `GuzzleHttp\Psr7`
255
+ namespace.
256
+ * Added middleware and handler system
257
+ * Replaced the Guzzle event and subscriber system with a middleware system.
258
+ * No longer depends on RingPHP, but rather places the HTTP handlers directly
259
+ in Guzzle, operating on PSR-7 messages.
260
+ * Retry logic is now encapsulated in `GuzzleHttp\Middleware::retry`, which
261
+ means the `guzzlehttp/retry-subscriber` is now obsolete.
262
+ * Mocking responses is now handled using `GuzzleHttp\Handler\MockHandler`.
263
+ * Asynchronous responses
264
+ * No longer supports the `future` request option to send an async request.
265
+ Instead, use one of the `*Async` methods of a client (e.g., `requestAsync`,
266
+ `getAsync`, etc.).
267
+ * Utilizing `GuzzleHttp\Promise` instead of React's promise library to avoid
268
+ recursion required by chaining and forwarding react promises. See
269
+ https://github.com/guzzle/promises
270
+ * Added `requestAsync` and `sendAsync` to send request asynchronously.
271
+ * Added magic methods for `getAsync()`, `postAsync()`, etc. to send requests
272
+ asynchronously.
273
+ * Request options
274
+ * POST and form updates
275
+ * Added the `form_fields` and `form_files` request options.
276
+ * Removed the `GuzzleHttp\Post` namespace.
277
+ * The `body` request option no longer accepts an array for POST requests.
278
+ * The `exceptions` request option has been deprecated in favor of the
279
+ `http_errors` request options.
280
+ * The `save_to` request option has been deprecated in favor of `sink` request
281
+ option.
282
+ * Clients no longer accept an array of URI template string and variables for
283
+ URI variables. You will need to expand URI templates before passing them
284
+ into a client constructor or request method.
285
+ * Client methods `get()`, `post()`, `put()`, `patch()`, `options()`, etc. are
286
+ now magic methods that will send synchronous requests.
287
+ * Replaced `Utils.php` with plain functions in `functions.php`.
288
+ * Removed `GuzzleHttp\Collection`.
289
+ * Removed `GuzzleHttp\BatchResults`. Batched pool results are now returned as
290
+ an array.
291
+ * Removed `GuzzleHttp\Query`. Query string handling is now handled using an
292
+ associative array passed into the `query` request option. The query string
293
+ is serialized using PHP's `http_build_query`. If you need more control, you
294
+ can pass the query string in as a string.
295
+ * `GuzzleHttp\QueryParser` has been replaced with the
296
+ `GuzzleHttp\Psr7\parse_query`.
297
+
298
+ ## 5.2.0 - 2015-01-27
299
+
300
+ * Added `AppliesHeadersInterface` to make applying headers to a request based
301
+ on the body more generic and not specific to `PostBodyInterface`.
302
+ * Reduced the number of stack frames needed to send requests.
303
+ * Nested futures are now resolved in the client rather than the RequestFsm
304
+ * Finishing state transitions is now handled in the RequestFsm rather than the
305
+ RingBridge.
306
+ * Added a guard in the Pool class to not use recursion for request retries.
307
+
308
+ ## 5.1.0 - 2014-12-19
309
+
310
+ * Pool class no longer uses recursion when a request is intercepted.
311
+ * The size of a Pool can now be dynamically adjusted using a callback.
312
+ See https://github.com/guzzle/guzzle/pull/943.
313
+ * Setting a request option to `null` when creating a request with a client will
314
+ ensure that the option is not set. This allows you to overwrite default
315
+ request options on a per-request basis.
316
+ See https://github.com/guzzle/guzzle/pull/937.
317
+ * Added the ability to limit which protocols are allowed for redirects by
318
+ specifying a `protocols` array in the `allow_redirects` request option.
319
+ * Nested futures due to retries are now resolved when waiting for synchronous
320
+ responses. See https://github.com/guzzle/guzzle/pull/947.
321
+ * `"0"` is now an allowed URI path. See
322
+ https://github.com/guzzle/guzzle/pull/935.
323
+ * `Query` no longer typehints on the `$query` argument in the constructor,
324
+ allowing for strings and arrays.
325
+ * Exceptions thrown in the `end` event are now correctly wrapped with Guzzle
326
+ specific exceptions if necessary.
327
+
328
+ ## 5.0.3 - 2014-11-03
329
+
330
+ This change updates query strings so that they are treated as un-encoded values
331
+ by default where the value represents an un-encoded value to send over the
332
+ wire. A Query object then encodes the value before sending over the wire. This
333
+ means that even value query string values (e.g., ":") are url encoded. This
334
+ makes the Query class match PHP's http_build_query function. However, if you
335
+ want to send requests over the wire using valid query string characters that do
336
+ not need to be encoded, then you can provide a string to Url::setQuery() and
337
+ pass true as the second argument to specify that the query string is a raw
338
+ string that should not be parsed or encoded (unless a call to getQuery() is
339
+ subsequently made, forcing the query-string to be converted into a Query
340
+ object).
341
+
342
+ ## 5.0.2 - 2014-10-30
343
+
344
+ * Added a trailing `\r\n` to multipart/form-data payloads. See
345
+ https://github.com/guzzle/guzzle/pull/871
346
+ * Added a `GuzzleHttp\Pool::send()` convenience method to match the docs.
347
+ * Status codes are now returned as integers. See
348
+ https://github.com/guzzle/guzzle/issues/881
349
+ * No longer overwriting an existing `application/x-www-form-urlencoded` header
350
+ when sending POST requests, allowing for customized headers. See
351
+ https://github.com/guzzle/guzzle/issues/877
352
+ * Improved path URL serialization.
353
+
354
+ * No longer double percent-encoding characters in the path or query string if
355
+ they are already encoded.
356
+ * Now properly encoding the supplied path to a URL object, instead of only
357
+ encoding ' ' and '?'.
358
+ * Note: This has been changed in 5.0.3 to now encode query string values by
359
+ default unless the `rawString` argument is provided when setting the query
360
+ string on a URL: Now allowing many more characters to be present in the
361
+ query string without being percent encoded. See http://tools.ietf.org/html/rfc3986#appendix-A
362
+
363
+ ## 5.0.1 - 2014-10-16
364
+
365
+ Bugfix release.
366
+
367
+ * Fixed an issue where connection errors still returned response object in
368
+ error and end events event though the response is unusable. This has been
369
+ corrected so that a response is not returned in the `getResponse` method of
370
+ these events if the response did not complete. https://github.com/guzzle/guzzle/issues/867
371
+ * Fixed an issue where transfer statistics were not being populated in the
372
+ RingBridge. https://github.com/guzzle/guzzle/issues/866
373
+
374
+ ## 5.0.0 - 2014-10-12
375
+
376
+ Adding support for non-blocking responses and some minor API cleanup.
377
+
378
+ ### New Features
379
+
380
+ * Added support for non-blocking responses based on `guzzlehttp/guzzle-ring`.
381
+ * Added a public API for creating a default HTTP adapter.
382
+ * Updated the redirect plugin to be non-blocking so that redirects are sent
383
+ concurrently. Other plugins like this can now be updated to be non-blocking.
384
+ * Added a "progress" event so that you can get upload and download progress
385
+ events.
386
+ * Added `GuzzleHttp\Pool` which implements FutureInterface and transfers
387
+ requests concurrently using a capped pool size as efficiently as possible.
388
+ * Added `hasListeners()` to EmitterInterface.
389
+ * Removed `GuzzleHttp\ClientInterface::sendAll` and marked
390
+ `GuzzleHttp\Client::sendAll` as deprecated (it's still there, just not the
391
+ recommended way).
392
+
393
+ ### Breaking changes
394
+
395
+ The breaking changes in this release are relatively minor. The biggest thing to
396
+ look out for is that request and response objects no longer implement fluent
397
+ interfaces.
398
+
399
+ * Removed the fluent interfaces (i.e., `return $this`) from requests,
400
+ responses, `GuzzleHttp\Collection`, `GuzzleHttp\Url`,
401
+ `GuzzleHttp\Query`, `GuzzleHttp\Post\PostBody`, and
402
+ `GuzzleHttp\Cookie\SetCookie`. This blog post provides a good outline of
403
+ why I did this: http://ocramius.github.io/blog/fluent-interfaces-are-evil/.
404
+ This also makes the Guzzle message interfaces compatible with the current
405
+ PSR-7 message proposal.
406
+ * Removed "functions.php", so that Guzzle is truly PSR-4 compliant. Except
407
+ for the HTTP request functions from function.php, these functions are now
408
+ implemented in `GuzzleHttp\Utils` using camelCase. `GuzzleHttp\json_decode`
409
+ moved to `GuzzleHttp\Utils::jsonDecode`. `GuzzleHttp\get_path` moved to
410
+ `GuzzleHttp\Utils::getPath`. `GuzzleHttp\set_path` moved to
411
+ `GuzzleHttp\Utils::setPath`. `GuzzleHttp\batch` should now be
412
+ `GuzzleHttp\Pool::batch`, which returns an `objectStorage`. Using functions.php
413
+ caused problems for many users: they aren't PSR-4 compliant, require an
414
+ explicit include, and needed an if-guard to ensure that the functions are not
415
+ declared multiple times.
416
+ * Rewrote adapter layer.
417
+ * Removing all classes from `GuzzleHttp\Adapter`, these are now
418
+ implemented as callables that are stored in `GuzzleHttp\Ring\Client`.
419
+ * Removed the concept of "parallel adapters". Sending requests serially or
420
+ concurrently is now handled using a single adapter.
421
+ * Moved `GuzzleHttp\Adapter\Transaction` to `GuzzleHttp\Transaction`. The
422
+ Transaction object now exposes the request, response, and client as public
423
+ properties. The getters and setters have been removed.
424
+ * Removed the "headers" event. This event was only useful for changing the
425
+ body a response once the headers of the response were known. You can implement
426
+ a similar behavior in a number of ways. One example might be to use a
427
+ FnStream that has access to the transaction being sent. For example, when the
428
+ first byte is written, you could check if the response headers match your
429
+ expectations, and if so, change the actual stream body that is being
430
+ written to.
431
+ * Removed the `asArray` parameter from
432
+ `GuzzleHttp\Message\MessageInterface::getHeader`. If you want to get a header
433
+ value as an array, then use the newly added `getHeaderAsArray()` method of
434
+ `MessageInterface`. This change makes the Guzzle interfaces compatible with
435
+ the PSR-7 interfaces.
436
+ * `GuzzleHttp\Message\MessageFactory` no longer allows subclasses to add
437
+ custom request options using double-dispatch (this was an implementation
438
+ detail). Instead, you should now provide an associative array to the
439
+ constructor which is a mapping of the request option name mapping to a
440
+ function that applies the option value to a request.
441
+ * Removed the concept of "throwImmediately" from exceptions and error events.
442
+ This control mechanism was used to stop a transfer of concurrent requests
443
+ from completing. This can now be handled by throwing the exception or by
444
+ cancelling a pool of requests or each outstanding future request individually.
445
+ * Updated to "GuzzleHttp\Streams" 3.0.
446
+ * `GuzzleHttp\Stream\StreamInterface::getContents()` no longer accepts a
447
+ `maxLen` parameter. This update makes the Guzzle streams project
448
+ compatible with the current PSR-7 proposal.
449
+ * `GuzzleHttp\Stream\Stream::__construct`,
450
+ `GuzzleHttp\Stream\Stream::factory`, and
451
+ `GuzzleHttp\Stream\Utils::create` no longer accept a size in the second
452
+ argument. They now accept an associative array of options, including the
453
+ "size" key and "metadata" key which can be used to provide custom metadata.
454
+
455
+ ## 4.2.2 - 2014-09-08
456
+
457
+ * Fixed a memory leak in the CurlAdapter when reusing cURL handles.
458
+ * No longer using `request_fulluri` in stream adapter proxies.
459
+ * Relative redirects are now based on the last response, not the first response.
460
+
461
+ ## 4.2.1 - 2014-08-19
462
+
463
+ * Ensuring that the StreamAdapter does not always add a Content-Type header
464
+ * Adding automated github releases with a phar and zip
465
+
466
+ ## 4.2.0 - 2014-08-17
467
+
468
+ * Now merging in default options using a case-insensitive comparison.
469
+ Closes https://github.com/guzzle/guzzle/issues/767
470
+ * Added the ability to automatically decode `Content-Encoding` response bodies
471
+ using the `decode_content` request option. This is set to `true` by default
472
+ to decode the response body if it comes over the wire with a
473
+ `Content-Encoding`. Set this value to `false` to disable decoding the
474
+ response content, and pass a string to provide a request `Accept-Encoding`
475
+ header and turn on automatic response decoding. This feature now allows you
476
+ to pass an `Accept-Encoding` header in the headers of a request but still
477
+ disable automatic response decoding.
478
+ Closes https://github.com/guzzle/guzzle/issues/764
479
+ * Added the ability to throw an exception immediately when transferring
480
+ requests in parallel. Closes https://github.com/guzzle/guzzle/issues/760
481
+ * Updating guzzlehttp/streams dependency to ~2.1
482
+ * No longer utilizing the now deprecated namespaced methods from the stream
483
+ package.
484
+
485
+ ## 4.1.8 - 2014-08-14
486
+
487
+ * Fixed an issue in the CurlFactory that caused setting the `stream=false`
488
+ request option to throw an exception.
489
+ See: https://github.com/guzzle/guzzle/issues/769
490
+ * TransactionIterator now calls rewind on the inner iterator.
491
+ See: https://github.com/guzzle/guzzle/pull/765
492
+ * You can now set the `Content-Type` header to `multipart/form-data`
493
+ when creating POST requests to force multipart bodies.
494
+ See https://github.com/guzzle/guzzle/issues/768
495
+
496
+ ## 4.1.7 - 2014-08-07
497
+
498
+ * Fixed an error in the HistoryPlugin that caused the same request and response
499
+ to be logged multiple times when an HTTP protocol error occurs.
500
+ * Ensuring that cURL does not add a default Content-Type when no Content-Type
501
+ has been supplied by the user. This prevents the adapter layer from modifying
502
+ the request that is sent over the wire after any listeners may have already
503
+ put the request in a desired state (e.g., signed the request).
504
+ * Throwing an exception when you attempt to send requests that have the
505
+ "stream" set to true in parallel using the MultiAdapter.
506
+ * Only calling curl_multi_select when there are active cURL handles. This was
507
+ previously changed and caused performance problems on some systems due to PHP
508
+ always selecting until the maximum select timeout.
509
+ * Fixed a bug where multipart/form-data POST fields were not correctly
510
+ aggregated (e.g., values with "&").
511
+
512
+ ## 4.1.6 - 2014-08-03
513
+
514
+ * Added helper methods to make it easier to represent messages as strings,
515
+ including getting the start line and getting headers as a string.
516
+
517
+ ## 4.1.5 - 2014-08-02
518
+
519
+ * Automatically retrying cURL "Connection died, retrying a fresh connect"
520
+ errors when possible.
521
+ * cURL implementation cleanup
522
+ * Allowing multiple event subscriber listeners to be registered per event by
523
+ passing an array of arrays of listener configuration.
524
+
525
+ ## 4.1.4 - 2014-07-22
526
+
527
+ * Fixed a bug that caused multi-part POST requests with more than one field to
528
+ serialize incorrectly.
529
+ * Paths can now be set to "0"
530
+ * `ResponseInterface::xml` now accepts a `libxml_options` option and added a
531
+ missing default argument that was required when parsing XML response bodies.
532
+ * A `save_to` stream is now created lazily, which means that files are not
533
+ created on disk unless a request succeeds.
534
+
535
+ ## 4.1.3 - 2014-07-15
536
+
537
+ * Various fixes to multipart/form-data POST uploads
538
+ * Wrapping function.php in an if-statement to ensure Guzzle can be used
539
+ globally and in a Composer install
540
+ * Fixed an issue with generating and merging in events to an event array
541
+ * POST headers are only applied before sending a request to allow you to change
542
+ the query aggregator used before uploading
543
+ * Added much more robust query string parsing
544
+ * Fixed various parsing and normalization issues with URLs
545
+ * Fixing an issue where multi-valued headers were not being utilized correctly
546
+ in the StreamAdapter
547
+
548
+ ## 4.1.2 - 2014-06-18
549
+
550
+ * Added support for sending payloads with GET requests
551
+
552
+ ## 4.1.1 - 2014-06-08
553
+
554
+ * Fixed an issue related to using custom message factory options in subclasses
555
+ * Fixed an issue with nested form fields in a multi-part POST
556
+ * Fixed an issue with using the `json` request option for POST requests
557
+ * Added `ToArrayInterface` to `GuzzleHttp\Cookie\CookieJar`
558
+
559
+ ## 4.1.0 - 2014-05-27
560
+
561
+ * Added a `json` request option to easily serialize JSON payloads.
562
+ * Added a `GuzzleHttp\json_decode()` wrapper to safely parse JSON.
563
+ * Added `setPort()` and `getPort()` to `GuzzleHttp\Message\RequestInterface`.
564
+ * Added the ability to provide an emitter to a client in the client constructor.
565
+ * Added the ability to persist a cookie session using $_SESSION.
566
+ * Added a trait that can be used to add event listeners to an iterator.
567
+ * Removed request method constants from RequestInterface.
568
+ * Fixed warning when invalid request start-lines are received.
569
+ * Updated MessageFactory to work with custom request option methods.
570
+ * Updated cacert bundle to latest build.
571
+
572
+ 4.0.2 (2014-04-16)
573
+ ------------------
574
+
575
+ * Proxy requests using the StreamAdapter now properly use request_fulluri (#632)
576
+ * Added the ability to set scalars as POST fields (#628)
577
+
578
+ ## 4.0.1 - 2014-04-04
579
+
580
+ * The HTTP status code of a response is now set as the exception code of
581
+ RequestException objects.
582
+ * 303 redirects will now correctly switch from POST to GET requests.
583
+ * The default parallel adapter of a client now correctly uses the MultiAdapter.
584
+ * HasDataTrait now initializes the internal data array as an empty array so
585
+ that the toArray() method always returns an array.
586
+
587
+ ## 4.0.0 - 2014-03-29
588
+
589
+ * For more information on the 4.0 transition, see:
590
+ http://mtdowling.com/blog/2014/03/15/guzzle-4-rc/
591
+ * For information on changes and upgrading, see:
592
+ https://github.com/guzzle/guzzle/blob/master/UPGRADING.md#3x-to-40
593
+ * Added `GuzzleHttp\batch()` as a convenience function for sending requests in
594
+ parallel without needing to write asynchronous code.
595
+ * Restructured how events are added to `GuzzleHttp\ClientInterface::sendAll()`.
596
+ You can now pass a callable or an array of associative arrays where each
597
+ associative array contains the "fn", "priority", and "once" keys.
598
+
599
+ ## 4.0.0.rc-2 - 2014-03-25
600
+
601
+ * Removed `getConfig()` and `setConfig()` from clients to avoid confusion
602
+ around whether things like base_url, message_factory, etc. should be able to
603
+ be retrieved or modified.
604
+ * Added `getDefaultOption()` and `setDefaultOption()` to ClientInterface
605
+ * functions.php functions were renamed using snake_case to match PHP idioms
606
+ * Added support for `HTTP_PROXY`, `HTTPS_PROXY`, and
607
+ `GUZZLE_CURL_SELECT_TIMEOUT` environment variables
608
+ * Added the ability to specify custom `sendAll()` event priorities
609
+ * Added the ability to specify custom stream context options to the stream
610
+ adapter.
611
+ * Added a functions.php function for `get_path()` and `set_path()`
612
+ * CurlAdapter and MultiAdapter now use a callable to generate curl resources
613
+ * MockAdapter now properly reads a body and emits a `headers` event
614
+ * Updated Url class to check if a scheme and host are set before adding ":"
615
+ and "//". This allows empty Url (e.g., "") to be serialized as "".
616
+ * Parsing invalid XML no longer emits warnings
617
+ * Curl classes now properly throw AdapterExceptions
618
+ * Various performance optimizations
619
+ * Streams are created with the faster `Stream\create()` function
620
+ * Marked deprecation_proxy() as internal
621
+ * Test server is now a collection of static methods on a class
622
+
623
+ ## 4.0.0-rc.1 - 2014-03-15
624
+
625
+ * See https://github.com/guzzle/guzzle/blob/master/UPGRADING.md#3x-to-40
626
+
627
+ ## 3.8.1 - 2014-01-28
628
+
629
+ * Bug: Always using GET requests when redirecting from a 303 response
630
+ * Bug: CURLOPT_SSL_VERIFYHOST is now correctly set to false when setting `$certificateAuthority` to false in
631
+ `Guzzle\Http\ClientInterface::setSslVerification()`
632
+ * Bug: RedirectPlugin now uses strict RFC 3986 compliance when combining a base URL with a relative URL
633
+ * Bug: The body of a request can now be set to `"0"`
634
+ * Sending PHP stream requests no longer forces `HTTP/1.0`
635
+ * Adding more information to ExceptionCollection exceptions so that users have more context, including a stack trace of
636
+ each sub-exception
637
+ * Updated the `$ref` attribute in service descriptions to merge over any existing parameters of a schema (rather than
638
+ clobbering everything).
639
+ * Merging URLs will now use the query string object from the relative URL (thus allowing custom query aggregators)
640
+ * Query strings are now parsed in a way that they do no convert empty keys with no value to have a dangling `=`.
641
+ For example `foo&bar=baz` is now correctly parsed and recognized as `foo&bar=baz` rather than `foo=&bar=baz`.
642
+ * Now properly escaping the regular expression delimiter when matching Cookie domains.
643
+ * Network access is now disabled when loading XML documents
644
+
645
+ ## 3.8.0 - 2013-12-05
646
+
647
+ * Added the ability to define a POST name for a file
648
+ * JSON response parsing now properly walks additionalProperties
649
+ * cURL error code 18 is now retried automatically in the BackoffPlugin
650
+ * Fixed a cURL error when URLs contain fragments
651
+ * Fixed an issue in the BackoffPlugin retry event where it was trying to access all exceptions as if they were
652
+ CurlExceptions
653
+ * CURLOPT_PROGRESS function fix for PHP 5.5 (69fcc1e)
654
+ * Added the ability for Guzzle to work with older versions of cURL that do not support `CURLOPT_TIMEOUT_MS`
655
+ * Fixed a bug that was encountered when parsing empty header parameters
656
+ * UriTemplate now has a `setRegex()` method to match the docs
657
+ * The `debug` request parameter now checks if it is truthy rather than if it exists
658
+ * Setting the `debug` request parameter to true shows verbose cURL output instead of using the LogPlugin
659
+ * Added the ability to combine URLs using strict RFC 3986 compliance
660
+ * Command objects can now return the validation errors encountered by the command
661
+ * Various fixes to cache revalidation (#437 and 29797e5)
662
+ * Various fixes to the AsyncPlugin
663
+ * Cleaned up build scripts
664
+
665
+ ## 3.7.4 - 2013-10-02
666
+
667
+ * Bug fix: 0 is now an allowed value in a description parameter that has a default value (#430)
668
+ * Bug fix: SchemaFormatter now returns an integer when formatting to a Unix timestamp
669
+ (see https://github.com/aws/aws-sdk-php/issues/147)
670
+ * Bug fix: Cleaned up and fixed URL dot segment removal to properly resolve internal dots
671
+ * Minimum PHP version is now properly specified as 5.3.3 (up from 5.3.2) (#420)
672
+ * Updated the bundled cacert.pem (#419)
673
+ * OauthPlugin now supports adding authentication to headers or query string (#425)
674
+
675
+ ## 3.7.3 - 2013-09-08
676
+
677
+ * Added the ability to get the exception associated with a request/command when using `MultiTransferException` and
678
+ `CommandTransferException`.
679
+ * Setting `additionalParameters` of a response to false is now honored when parsing responses with a service description
680
+ * Schemas are only injected into response models when explicitly configured.
681
+ * No longer guessing Content-Type based on the path of a request. Content-Type is now only guessed based on the path of
682
+ an EntityBody.
683
+ * Bug fix: ChunkedIterator can now properly chunk a \Traversable as well as an \Iterator.
684
+ * Bug fix: FilterIterator now relies on `\Iterator` instead of `\Traversable`.
685
+ * Bug fix: Gracefully handling malformed responses in RequestMediator::writeResponseBody()
686
+ * Bug fix: Replaced call to canCache with canCacheRequest in the CallbackCanCacheStrategy of the CachePlugin
687
+ * Bug fix: Visiting XML attributes first before visiting XML children when serializing requests
688
+ * Bug fix: Properly parsing headers that contain commas contained in quotes
689
+ * Bug fix: mimetype guessing based on a filename is now case-insensitive
690
+
691
+ ## 3.7.2 - 2013-08-02
692
+
693
+ * Bug fix: Properly URL encoding paths when using the PHP-only version of the UriTemplate expander
694
+ See https://github.com/guzzle/guzzle/issues/371
695
+ * Bug fix: Cookie domains are now matched correctly according to RFC 6265
696
+ See https://github.com/guzzle/guzzle/issues/377
697
+ * Bug fix: GET parameters are now used when calculating an OAuth signature
698
+ * Bug fix: Fixed an issue with cache revalidation where the If-None-Match header was being double quoted
699
+ * `Guzzle\Common\AbstractHasDispatcher::dispatch()` now returns the event that was dispatched
700
+ * `Guzzle\Http\QueryString::factory()` now guesses the most appropriate query aggregator to used based on the input.
701
+ See https://github.com/guzzle/guzzle/issues/379
702
+ * Added a way to add custom domain objects to service description parsing using the `operation.parse_class` event. See
703
+ https://github.com/guzzle/guzzle/pull/380
704
+ * cURL multi cleanup and optimizations
705
+
706
+ ## 3.7.1 - 2013-07-05
707
+
708
+ * Bug fix: Setting default options on a client now works
709
+ * Bug fix: Setting options on HEAD requests now works. See #352
710
+ * Bug fix: Moving stream factory before send event to before building the stream. See #353
711
+ * Bug fix: Cookies no longer match on IP addresses per RFC 6265
712
+ * Bug fix: Correctly parsing header parameters that are in `<>` and quotes
713
+ * Added `cert` and `ssl_key` as request options
714
+ * `Host` header can now diverge from the host part of a URL if the header is set manually
715
+ * `Guzzle\Service\Command\LocationVisitor\Request\XmlVisitor` was rewritten to change from using SimpleXML to XMLWriter
716
+ * OAuth parameters are only added via the plugin if they aren't already set
717
+ * Exceptions are now thrown when a URL cannot be parsed
718
+ * Returning `false` if `Guzzle\Http\EntityBody::getContentMd5()` fails
719
+ * Not setting a `Content-MD5` on a command if calculating the Content-MD5 fails via the CommandContentMd5Plugin
720
+
721
+ ## 3.7.0 - 2013-06-10
722
+
723
+ * See UPGRADING.md for more information on how to upgrade.
724
+ * Requests now support the ability to specify an array of $options when creating a request to more easily modify a
725
+ request. You can pass a 'request.options' configuration setting to a client to apply default request options to
726
+ every request created by a client (e.g. default query string variables, headers, curl options, etc.).
727
+ * Added a static facade class that allows you to use Guzzle with static methods and mount the class to `\Guzzle`.
728
+ See `Guzzle\Http\StaticClient::mount`.
729
+ * Added `command.request_options` to `Guzzle\Service\Command\AbstractCommand` to pass request options to requests
730
+ created by a command (e.g. custom headers, query string variables, timeout settings, etc.).
731
+ * Stream size in `Guzzle\Stream\PhpStreamRequestFactory` will now be set if Content-Length is returned in the
732
+ headers of a response
733
+ * Added `Guzzle\Common\Collection::setPath($path, $value)` to set a value into an array using a nested key
734
+ (e.g. `$collection->setPath('foo/baz/bar', 'test'); echo $collection['foo']['bar']['bar'];`)
735
+ * ServiceBuilders now support storing and retrieving arbitrary data
736
+ * CachePlugin can now purge all resources for a given URI
737
+ * CachePlugin can automatically purge matching cached items when a non-idempotent request is sent to a resource
738
+ * CachePlugin now uses the Vary header to determine if a resource is a cache hit
739
+ * `Guzzle\Http\Message\Response` now implements `\Serializable`
740
+ * Added `Guzzle\Cache\CacheAdapterFactory::fromCache()` to more easily create cache adapters
741
+ * `Guzzle\Service\ClientInterface::execute()` now accepts an array, single command, or Traversable
742
+ * Fixed a bug in `Guzzle\Http\Message\Header\Link::addLink()`
743
+ * Better handling of calculating the size of a stream in `Guzzle\Stream\Stream` using fstat() and caching the size
744
+ * `Guzzle\Common\Exception\ExceptionCollection` now creates a more readable exception message
745
+ * Fixing BC break: Added back the MonologLogAdapter implementation rather than extending from PsrLog so that older
746
+ Symfony users can still use the old version of Monolog.
747
+ * Fixing BC break: Added the implementation back in for `Guzzle\Http\Message\AbstractMessage::getTokenizedHeader()`.
748
+ Now triggering an E_USER_DEPRECATED warning when used. Use `$message->getHeader()->parseParams()`.
749
+ * Several performance improvements to `Guzzle\Common\Collection`
750
+ * Added an `$options` argument to the end of the following methods of `Guzzle\Http\ClientInterface`:
751
+ createRequest, head, delete, put, patch, post, options, prepareRequest
752
+ * Added an `$options` argument to the end of `Guzzle\Http\Message\Request\RequestFactoryInterface::createRequest()`
753
+ * Added an `applyOptions()` method to `Guzzle\Http\Message\Request\RequestFactoryInterface`
754
+ * Changed `Guzzle\Http\ClientInterface::get($uri = null, $headers = null, $body = null)` to
755
+ `Guzzle\Http\ClientInterface::get($uri = null, $headers = null, $options = array())`. You can still pass in a
756
+ resource, string, or EntityBody into the $options parameter to specify the download location of the response.
757
+ * Changed `Guzzle\Common\Collection::__construct($data)` to no longer accepts a null value for `$data` but a
758
+ default `array()`
759
+ * Added `Guzzle\Stream\StreamInterface::isRepeatable`
760
+ * Removed `Guzzle\Http\ClientInterface::setDefaultHeaders(). Use
761
+ $client->getConfig()->setPath('request.options/headers/{header_name}', 'value')`. or
762
+ $client->getConfig()->setPath('request.options/headers', array('header_name' => 'value'))`.
763
+ * Removed `Guzzle\Http\ClientInterface::getDefaultHeaders(). Use $client->getConfig()->getPath('request.options/headers')`.
764
+ * Removed `Guzzle\Http\ClientInterface::expandTemplate()`
765
+ * Removed `Guzzle\Http\ClientInterface::setRequestFactory()`
766
+ * Removed `Guzzle\Http\ClientInterface::getCurlMulti()`
767
+ * Removed `Guzzle\Http\Message\RequestInterface::canCache`
768
+ * Removed `Guzzle\Http\Message\RequestInterface::setIsRedirect`
769
+ * Removed `Guzzle\Http\Message\RequestInterface::isRedirect`
770
+ * Made `Guzzle\Http\Client::expandTemplate` and `getUriTemplate` protected methods.
771
+ * You can now enable E_USER_DEPRECATED warnings to see if you are using a deprecated method by setting
772
+ `Guzzle\Common\Version::$emitWarnings` to true.
773
+ * Marked `Guzzle\Http\Message\Request::isResponseBodyRepeatable()` as deprecated. Use
774
+ `$request->getResponseBody()->isRepeatable()` instead.
775
+ * Marked `Guzzle\Http\Message\Request::canCache()` as deprecated. Use
776
+ `Guzzle\Plugin\Cache\DefaultCanCacheStrategy->canCacheRequest()` instead.
777
+ * Marked `Guzzle\Http\Message\Request::canCache()` as deprecated. Use
778
+ `Guzzle\Plugin\Cache\DefaultCanCacheStrategy->canCacheRequest()` instead.
779
+ * Marked `Guzzle\Http\Message\Request::setIsRedirect()` as deprecated. Use the HistoryPlugin instead.
780
+ * Marked `Guzzle\Http\Message\Request::isRedirect()` as deprecated. Use the HistoryPlugin instead.
781
+ * Marked `Guzzle\Cache\CacheAdapterFactory::factory()` as deprecated
782
+ * Marked 'command.headers', 'command.response_body' and 'command.on_complete' as deprecated for AbstractCommand.
783
+ These will work through Guzzle 4.0
784
+ * Marked 'request.params' for `Guzzle\Http\Client` as deprecated. Use [request.options][params].
785
+ * Marked `Guzzle\Service\Client::enableMagicMethods()` as deprecated. Magic methods can no longer be disabled on a Guzzle\Service\Client.
786
+ * Marked `Guzzle\Service\Client::getDefaultHeaders()` as deprecated. Use $client->getConfig()->getPath('request.options/headers')`.
787
+ * Marked `Guzzle\Service\Client::setDefaultHeaders()` as deprecated. Use $client->getConfig()->setPath('request.options/headers/{header_name}', 'value')`.
788
+ * Marked `Guzzle\Parser\Url\UrlParser` as deprecated. Just use PHP's `parse_url()` and percent encode your UTF-8.
789
+ * Marked `Guzzle\Common\Collection::inject()` as deprecated.
790
+ * Marked `Guzzle\Plugin\CurlAuth\CurlAuthPlugin` as deprecated. Use `$client->getConfig()->setPath('request.options/auth', array('user', 'pass', 'Basic|Digest');`
791
+ * CacheKeyProviderInterface and DefaultCacheKeyProvider are no longer used. All of this logic is handled in a
792
+ CacheStorageInterface. These two objects and interface will be removed in a future version.
793
+ * Always setting X-cache headers on cached responses
794
+ * Default cache TTLs are now handled by the CacheStorageInterface of a CachePlugin
795
+ * `CacheStorageInterface::cache($key, Response $response, $ttl = null)` has changed to `cache(RequestInterface
796
+ $request, Response $response);`
797
+ * `CacheStorageInterface::fetch($key)` has changed to `fetch(RequestInterface $request);`
798
+ * `CacheStorageInterface::delete($key)` has changed to `delete(RequestInterface $request);`
799
+ * Added `CacheStorageInterface::purge($url)`
800
+ * `DefaultRevalidation::__construct(CacheKeyProviderInterface $cacheKey, CacheStorageInterface $cache, CachePlugin
801
+ $plugin)` has changed to `DefaultRevalidation::__construct(CacheStorageInterface $cache,
802
+ CanCacheStrategyInterface $canCache = null)`
803
+ * Added `RevalidationInterface::shouldRevalidate(RequestInterface $request, Response $response)`
804
+
805
+ ## 3.6.0 - 2013-05-29
806
+
807
+ * ServiceDescription now implements ToArrayInterface
808
+ * Added command.hidden_params to blacklist certain headers from being treated as additionalParameters
809
+ * Guzzle can now correctly parse incomplete URLs
810
+ * Mixed casing of headers are now forced to be a single consistent casing across all values for that header.
811
+ * Messages internally use a HeaderCollection object to delegate handling case-insensitive header resolution
812
+ * Removed the whole changedHeader() function system of messages because all header changes now go through addHeader().
813
+ * Specific header implementations can be created for complex headers. When a message creates a header, it uses a
814
+ HeaderFactory which can map specific headers to specific header classes. There is now a Link header and
815
+ CacheControl header implementation.
816
+ * Removed from interface: Guzzle\Http\ClientInterface::setUriTemplate
817
+ * Removed from interface: Guzzle\Http\ClientInterface::setCurlMulti()
818
+ * Removed Guzzle\Http\Message\Request::receivedRequestHeader() and implemented this functionality in
819
+ Guzzle\Http\Curl\RequestMediator
820
+ * Removed the optional $asString parameter from MessageInterface::getHeader(). Just cast the header to a string.
821
+ * Removed the optional $tryChunkedTransfer option from Guzzle\Http\Message\EntityEnclosingRequestInterface
822
+ * Removed the $asObjects argument from Guzzle\Http\Message\MessageInterface::getHeaders()
823
+ * Removed Guzzle\Parser\ParserRegister::get(). Use getParser()
824
+ * Removed Guzzle\Parser\ParserRegister::set(). Use registerParser().
825
+ * All response header helper functions return a string rather than mixing Header objects and strings inconsistently
826
+ * Removed cURL blacklist support. This is no longer necessary now that Expect, Accept, etc. are managed by Guzzle
827
+ directly via interfaces
828
+ * Removed the injecting of a request object onto a response object. The methods to get and set a request still exist
829
+ but are a no-op until removed.
830
+ * Most classes that used to require a `Guzzle\Service\Command\CommandInterface` typehint now request a
831
+ `Guzzle\Service\Command\ArrayCommandInterface`.
832
+ * Added `Guzzle\Http\Message\RequestInterface::startResponse()` to the RequestInterface to handle injecting a response
833
+ on a request while the request is still being transferred
834
+ * The ability to case-insensitively search for header values
835
+ * Guzzle\Http\Message\Header::hasExactHeader
836
+ * Guzzle\Http\Message\Header::raw. Use getAll()
837
+ * Deprecated cache control specific methods on Guzzle\Http\Message\AbstractMessage. Use the CacheControl header object
838
+ instead.
839
+ * `Guzzle\Service\Command\CommandInterface` now extends from ToArrayInterface and ArrayAccess
840
+ * Added the ability to cast Model objects to a string to view debug information.
841
+
842
+ ## 3.5.0 - 2013-05-13
843
+
844
+ * Bug: Fixed a regression so that request responses are parsed only once per oncomplete event rather than multiple times
845
+ * Bug: Better cleanup of one-time events across the board (when an event is meant to fire once, it will now remove
846
+ itself from the EventDispatcher)
847
+ * Bug: `Guzzle\Log\MessageFormatter` now properly writes "total_time" and "connect_time" values
848
+ * Bug: Cloning an EntityEnclosingRequest now clones the EntityBody too
849
+ * Bug: Fixed an undefined index error when parsing nested JSON responses with a sentAs parameter that reference a
850
+ non-existent key
851
+ * Bug: All __call() method arguments are now required (helps with mocking frameworks)
852
+ * Deprecating Response::getRequest() and now using a shallow clone of a request object to remove a circular reference
853
+ to help with refcount based garbage collection of resources created by sending a request
854
+ * Deprecating ZF1 cache and log adapters. These will be removed in the next major version.
855
+ * Deprecating `Response::getPreviousResponse()` (method signature still exists, but it's deprecated). Use the
856
+ HistoryPlugin for a history.
857
+ * Added a `responseBody` alias for the `response_body` location
858
+ * Refactored internals to no longer rely on Response::getRequest()
859
+ * HistoryPlugin can now be cast to a string
860
+ * HistoryPlugin now logs transactions rather than requests and responses to more accurately keep track of the requests
861
+ and responses that are sent over the wire
862
+ * Added `getEffectiveUrl()` and `getRedirectCount()` to Response objects
863
+
864
+ ## 3.4.3 - 2013-04-30
865
+
866
+ * Bug fix: Fixing bug introduced in 3.4.2 where redirect responses are duplicated on the final redirected response
867
+ * Added a check to re-extract the temp cacert bundle from the phar before sending each request
868
+
869
+ ## 3.4.2 - 2013-04-29
870
+
871
+ * Bug fix: Stream objects now work correctly with "a" and "a+" modes
872
+ * Bug fix: Removing `Transfer-Encoding: chunked` header when a Content-Length is present
873
+ * Bug fix: AsyncPlugin no longer forces HEAD requests
874
+ * Bug fix: DateTime timezones are now properly handled when using the service description schema formatter
875
+ * Bug fix: CachePlugin now properly handles stale-if-error directives when a request to the origin server fails
876
+ * Setting a response on a request will write to the custom request body from the response body if one is specified
877
+ * LogPlugin now writes to php://output when STDERR is undefined
878
+ * Added the ability to set multiple POST files for the same key in a single call
879
+ * application/x-www-form-urlencoded POSTs now use the utf-8 charset by default
880
+ * Added the ability to queue CurlExceptions to the MockPlugin
881
+ * Cleaned up how manual responses are queued on requests (removed "queued_response" and now using request.before_send)
882
+ * Configuration loading now allows remote files
883
+
884
+ ## 3.4.1 - 2013-04-16
885
+
886
+ * Large refactoring to how CurlMulti handles work. There is now a proxy that sits in front of a pool of CurlMulti
887
+ handles. This greatly simplifies the implementation, fixes a couple bugs, and provides a small performance boost.
888
+ * Exceptions are now properly grouped when sending requests in parallel
889
+ * Redirects are now properly aggregated when a multi transaction fails
890
+ * Redirects now set the response on the original object even in the event of a failure
891
+ * Bug fix: Model names are now properly set even when using $refs
892
+ * Added support for PHP 5.5's CurlFile to prevent warnings with the deprecated @ syntax
893
+ * Added support for oauth_callback in OAuth signatures
894
+ * Added support for oauth_verifier in OAuth signatures
895
+ * Added support to attempt to retrieve a command first literally, then ucfirst, the with inflection
896
+
897
+ ## 3.4.0 - 2013-04-11
898
+
899
+ * Bug fix: URLs are now resolved correctly based on http://tools.ietf.org/html/rfc3986#section-5.2. #289
900
+ * Bug fix: Absolute URLs with a path in a service description will now properly override the base URL. #289
901
+ * Bug fix: Parsing a query string with a single PHP array value will now result in an array. #263
902
+ * Bug fix: Better normalization of the User-Agent header to prevent duplicate headers. #264.
903
+ * Bug fix: Added `number` type to service descriptions.
904
+ * Bug fix: empty parameters are removed from an OAuth signature
905
+ * Bug fix: Revalidating a cache entry prefers the Last-Modified over the Date header
906
+ * Bug fix: Fixed "array to string" error when validating a union of types in a service description
907
+ * Bug fix: Removed code that attempted to determine the size of a stream when data is written to the stream
908
+ * Bug fix: Not including an `oauth_token` if the value is null in the OauthPlugin.
909
+ * Bug fix: Now correctly aggregating successful requests and failed requests in CurlMulti when a redirect occurs.
910
+ * The new default CURLOPT_TIMEOUT setting has been increased to 150 seconds so that Guzzle works on poor connections.
911
+ * Added a feature to EntityEnclosingRequest::setBody() that will automatically set the Content-Type of the request if
912
+ the Content-Type can be determined based on the entity body or the path of the request.
913
+ * Added the ability to overwrite configuration settings in a client when grabbing a throwaway client from a builder.
914
+ * Added support for a PSR-3 LogAdapter.
915
+ * Added a `command.after_prepare` event
916
+ * Added `oauth_callback` parameter to the OauthPlugin
917
+ * Added the ability to create a custom stream class when using a stream factory
918
+ * Added a CachingEntityBody decorator
919
+ * Added support for `additionalParameters` in service descriptions to define how custom parameters are serialized.
920
+ * The bundled SSL certificate is now provided in the phar file and extracted when running Guzzle from a phar.
921
+ * You can now send any EntityEnclosingRequest with POST fields or POST files and cURL will handle creating bodies
922
+ * POST requests using a custom entity body are now treated exactly like PUT requests but with a custom cURL method. This
923
+ means that the redirect behavior of POST requests with custom bodies will not be the same as POST requests that use
924
+ POST fields or files (the latter is only used when emulating a form POST in the browser).
925
+ * Lots of cleanup to CurlHandle::factory and RequestFactory::createRequest
926
+
927
+ ## 3.3.1 - 2013-03-10
928
+
929
+ * Added the ability to create PHP streaming responses from HTTP requests
930
+ * Bug fix: Running any filters when parsing response headers with service descriptions
931
+ * Bug fix: OauthPlugin fixes to allow for multi-dimensional array signing, and sorting parameters before signing
932
+ * Bug fix: Removed the adding of default empty arrays and false Booleans to responses in order to be consistent across
933
+ response location visitors.
934
+ * Bug fix: Removed the possibility of creating configuration files with circular dependencies
935
+ * RequestFactory::create() now uses the key of a POST file when setting the POST file name
936
+ * Added xmlAllowEmpty to serialize an XML body even if no XML specific parameters are set
937
+
938
+ ## 3.3.0 - 2013-03-03
939
+
940
+ * A large number of performance optimizations have been made
941
+ * Bug fix: Added 'wb' as a valid write mode for streams
942
+ * Bug fix: `Guzzle\Http\Message\Response::json()` now allows scalar values to be returned
943
+ * Bug fix: Fixed bug in `Guzzle\Http\Message\Response` where wrapping quotes were stripped from `getEtag()`
944
+ * BC: Removed `Guzzle\Http\Utils` class
945
+ * BC: Setting a service description on a client will no longer modify the client's command factories.
946
+ * BC: Emitting IO events from a RequestMediator is now a parameter that must be set in a request's curl options using
947
+ the 'emit_io' key. This was previously set under a request's parameters using 'curl.emit_io'
948
+ * BC: `Guzzle\Stream\Stream::getWrapper()` and `Guzzle\Stream\Stream::getSteamType()` are no longer converted to
949
+ lowercase
950
+ * Operation parameter objects are now lazy loaded internally
951
+ * Added ErrorResponsePlugin that can throw errors for responses defined in service description operations' errorResponses
952
+ * Added support for instantiating responseType=class responseClass classes. Classes must implement
953
+ `Guzzle\Service\Command\ResponseClassInterface`
954
+ * Added support for additionalProperties for top-level parameters in responseType=model responseClasses. These
955
+ additional properties also support locations and can be used to parse JSON responses where the outermost part of the
956
+ JSON is an array
957
+ * Added support for nested renaming of JSON models (rename sentAs to name)
958
+ * CachePlugin
959
+ * Added support for stale-if-error so that the CachePlugin can now serve stale content from the cache on error
960
+ * Debug headers can now added to cached response in the CachePlugin
961
+
962
+ ## 3.2.0 - 2013-02-14
963
+
964
+ * CurlMulti is no longer reused globally. A new multi object is created per-client. This helps to isolate clients.
965
+ * URLs with no path no longer contain a "/" by default
966
+ * Guzzle\Http\QueryString does no longer manages the leading "?". This is now handled in Guzzle\Http\Url.
967
+ * BadResponseException no longer includes the full request and response message
968
+ * Adding setData() to Guzzle\Service\Description\ServiceDescriptionInterface
969
+ * Adding getResponseBody() to Guzzle\Http\Message\RequestInterface
970
+ * Various updates to classes to use ServiceDescriptionInterface type hints rather than ServiceDescription
971
+ * Header values can now be normalized into distinct values when multiple headers are combined with a comma separated list
972
+ * xmlEncoding can now be customized for the XML declaration of a XML service description operation
973
+ * Guzzle\Http\QueryString now uses Guzzle\Http\QueryAggregator\QueryAggregatorInterface objects to add custom value
974
+ aggregation and no longer uses callbacks
975
+ * The URL encoding implementation of Guzzle\Http\QueryString can now be customized
976
+ * Bug fix: Filters were not always invoked for array service description parameters
977
+ * Bug fix: Redirects now use a target response body rather than a temporary response body
978
+ * Bug fix: The default exponential backoff BackoffPlugin was not giving when the request threshold was exceeded
979
+ * Bug fix: Guzzle now takes the first found value when grabbing Cache-Control directives
980
+
981
+ ## 3.1.2 - 2013-01-27
982
+
983
+ * Refactored how operation responses are parsed. Visitors now include a before() method responsible for parsing the
984
+ response body. For example, the XmlVisitor now parses the XML response into an array in the before() method.
985
+ * Fixed an issue where cURL would not automatically decompress responses when the Accept-Encoding header was sent
986
+ * CURLOPT_SSL_VERIFYHOST is never set to 1 because it is deprecated (see 5e0ff2ef20f839e19d1eeb298f90ba3598784444)
987
+ * Fixed a bug where redirect responses were not chained correctly using getPreviousResponse()
988
+ * Setting default headers on a client after setting the user-agent will not erase the user-agent setting
989
+
990
+ ## 3.1.1 - 2013-01-20
991
+
992
+ * Adding wildcard support to Guzzle\Common\Collection::getPath()
993
+ * Adding alias support to ServiceBuilder configs
994
+ * Adding Guzzle\Service\Resource\CompositeResourceIteratorFactory and cleaning up factory interface
995
+
996
+ ## 3.1.0 - 2013-01-12
997
+
998
+ * BC: CurlException now extends from RequestException rather than BadResponseException
999
+ * BC: Renamed Guzzle\Plugin\Cache\CanCacheStrategyInterface::canCache() to canCacheRequest() and added CanCacheResponse()
1000
+ * Added getData to ServiceDescriptionInterface
1001
+ * Added context array to RequestInterface::setState()
1002
+ * Bug: Removing hard dependency on the BackoffPlugin from Guzzle\Http
1003
+ * Bug: Adding required content-type when JSON request visitor adds JSON to a command
1004
+ * Bug: Fixing the serialization of a service description with custom data
1005
+ * Made it easier to deal with exceptions thrown when transferring commands or requests in parallel by providing
1006
+ an array of successful and failed responses
1007
+ * Moved getPath from Guzzle\Service\Resource\Model to Guzzle\Common\Collection
1008
+ * Added Guzzle\Http\IoEmittingEntityBody
1009
+ * Moved command filtration from validators to location visitors
1010
+ * Added `extends` attributes to service description parameters
1011
+ * Added getModels to ServiceDescriptionInterface
1012
+
1013
+ ## 3.0.7 - 2012-12-19
1014
+
1015
+ * Fixing phar detection when forcing a cacert to system if null or true
1016
+ * Allowing filename to be passed to `Guzzle\Http\Message\Request::setResponseBody()`
1017
+ * Cleaning up `Guzzle\Common\Collection::inject` method
1018
+ * Adding a response_body location to service descriptions
1019
+
1020
+ ## 3.0.6 - 2012-12-09
1021
+
1022
+ * CurlMulti performance improvements
1023
+ * Adding setErrorResponses() to Operation
1024
+ * composer.json tweaks
1025
+
1026
+ ## 3.0.5 - 2012-11-18
1027
+
1028
+ * Bug: Fixing an infinite recursion bug caused from revalidating with the CachePlugin
1029
+ * Bug: Response body can now be a string containing "0"
1030
+ * Bug: Using Guzzle inside of a phar uses system by default but now allows for a custom cacert
1031
+ * Bug: QueryString::fromString now properly parses query string parameters that contain equal signs
1032
+ * Added support for XML attributes in service description responses
1033
+ * DefaultRequestSerializer now supports array URI parameter values for URI template expansion
1034
+ * Added better mimetype guessing to requests and post files
1035
+
1036
+ ## 3.0.4 - 2012-11-11
1037
+
1038
+ * Bug: Fixed a bug when adding multiple cookies to a request to use the correct glue value
1039
+ * Bug: Cookies can now be added that have a name, domain, or value set to "0"
1040
+ * Bug: Using the system cacert bundle when using the Phar
1041
+ * Added json and xml methods to Response to make it easier to parse JSON and XML response data into data structures
1042
+ * Enhanced cookie jar de-duplication
1043
+ * Added the ability to enable strict cookie jars that throw exceptions when invalid cookies are added
1044
+ * Added setStream to StreamInterface to actually make it possible to implement custom rewind behavior for entity bodies
1045
+ * Added the ability to create any sort of hash for a stream rather than just an MD5 hash
1046
+
1047
+ ## 3.0.3 - 2012-11-04
1048
+
1049
+ * Implementing redirects in PHP rather than cURL
1050
+ * Added PECL URI template extension and using as default parser if available
1051
+ * Bug: Fixed Content-Length parsing of Response factory
1052
+ * Adding rewind() method to entity bodies and streams. Allows for custom rewinding of non-repeatable streams.
1053
+ * Adding ToArrayInterface throughout library
1054
+ * Fixing OauthPlugin to create unique nonce values per request
1055
+
1056
+ ## 3.0.2 - 2012-10-25
1057
+
1058
+ * Magic methods are enabled by default on clients
1059
+ * Magic methods return the result of a command
1060
+ * Service clients no longer require a base_url option in the factory
1061
+ * Bug: Fixed an issue with URI templates where null template variables were being expanded
1062
+
1063
+ ## 3.0.1 - 2012-10-22
1064
+
1065
+ * Models can now be used like regular collection objects by calling filter, map, etc.
1066
+ * Models no longer require a Parameter structure or initial data in the constructor
1067
+ * Added a custom AppendIterator to get around a PHP bug with the `\AppendIterator`
1068
+
1069
+ ## 3.0.0 - 2012-10-15
1070
+
1071
+ * Rewrote service description format to be based on Swagger
1072
+ * Now based on JSON schema
1073
+ * Added nested input structures and nested response models
1074
+ * Support for JSON and XML input and output models
1075
+ * Renamed `commands` to `operations`
1076
+ * Removed dot class notation
1077
+ * Removed custom types
1078
+ * Broke the project into smaller top-level namespaces to be more component friendly
1079
+ * Removed support for XML configs and descriptions. Use arrays or JSON files.
1080
+ * Removed the Validation component and Inspector
1081
+ * Moved all cookie code to Guzzle\Plugin\Cookie
1082
+ * Magic methods on a Guzzle\Service\Client now return the command un-executed.
1083
+ * Calling getResult() or getResponse() on a command will lazily execute the command if needed.
1084
+ * Now shipping with cURL's CA certs and using it by default
1085
+ * Added previousResponse() method to response objects
1086
+ * No longer sending Accept and Accept-Encoding headers on every request
1087
+ * Only sending an Expect header by default when a payload is greater than 1MB
1088
+ * Added/moved client options:
1089
+ * curl.blacklist to curl.option.blacklist
1090
+ * Added ssl.certificate_authority
1091
+ * Added a Guzzle\Iterator component
1092
+ * Moved plugins from Guzzle\Http\Plugin to Guzzle\Plugin
1093
+ * Added a more robust backoff retry strategy (replaced the ExponentialBackoffPlugin)
1094
+ * Added a more robust caching plugin
1095
+ * Added setBody to response objects
1096
+ * Updating LogPlugin to use a more flexible MessageFormatter
1097
+ * Added a completely revamped build process
1098
+ * Cleaning up Collection class and removing default values from the get method
1099
+ * Fixed ZF2 cache adapters
1100
+
1101
+ ## 2.8.8 - 2012-10-15
1102
+
1103
+ * Bug: Fixed a cookie issue that caused dot prefixed domains to not match where popular browsers did
1104
+
1105
+ ## 2.8.7 - 2012-09-30
1106
+
1107
+ * Bug: Fixed config file aliases for JSON includes
1108
+ * Bug: Fixed cookie bug on a request object by using CookieParser to parse cookies on requests
1109
+ * Bug: Removing the path to a file when sending a Content-Disposition header on a POST upload
1110
+ * Bug: Hardening request and response parsing to account for missing parts
1111
+ * Bug: Fixed PEAR packaging
1112
+ * Bug: Fixed Request::getInfo
1113
+ * Bug: Fixed cases where CURLM_CALL_MULTI_PERFORM return codes were causing curl transactions to fail
1114
+ * Adding the ability for the namespace Iterator factory to look in multiple directories
1115
+ * Added more getters/setters/removers from service descriptions
1116
+ * Added the ability to remove POST fields from OAuth signatures
1117
+ * OAuth plugin now supports 2-legged OAuth
1118
+
1119
+ ## 2.8.6 - 2012-09-05
1120
+
1121
+ * Added the ability to modify and build service descriptions
1122
+ * Added the use of visitors to apply parameters to locations in service descriptions using the dynamic command
1123
+ * Added a `json` parameter location
1124
+ * Now allowing dot notation for classes in the CacheAdapterFactory
1125
+ * Using the union of two arrays rather than an array_merge when extending service builder services and service params
1126
+ * Ensuring that a service is a string before doing strpos() checks on it when substituting services for references
1127
+ in service builder config files.
1128
+ * Services defined in two different config files that include one another will by default replace the previously
1129
+ defined service, but you can now create services that extend themselves and merge their settings over the previous
1130
+ * The JsonLoader now supports aliasing filenames with different filenames. This allows you to alias something like
1131
+ '_default' with a default JSON configuration file.
1132
+
1133
+ ## 2.8.5 - 2012-08-29
1134
+
1135
+ * Bug: Suppressed empty arrays from URI templates
1136
+ * Bug: Added the missing $options argument from ServiceDescription::factory to enable caching
1137
+ * Added support for HTTP responses that do not contain a reason phrase in the start-line
1138
+ * AbstractCommand commands are now invokable
1139
+ * Added a way to get the data used when signing an Oauth request before a request is sent
1140
+
1141
+ ## 2.8.4 - 2012-08-15
1142
+
1143
+ * Bug: Custom delay time calculations are no longer ignored in the ExponentialBackoffPlugin
1144
+ * Added the ability to transfer entity bodies as a string rather than streamed. This gets around curl error 65. Set `body_as_string` in a request's curl options to enable.
1145
+ * Added a StreamInterface, EntityBodyInterface, and added ftell() to Guzzle\Common\Stream
1146
+ * Added an AbstractEntityBodyDecorator and a ReadLimitEntityBody decorator to transfer only a subset of a decorated stream
1147
+ * Stream and EntityBody objects will now return the file position to the previous position after a read required operation (e.g. getContentMd5())
1148
+ * Added additional response status codes
1149
+ * Removed SSL information from the default User-Agent header
1150
+ * DELETE requests can now send an entity body
1151
+ * Added an EventDispatcher to the ExponentialBackoffPlugin and added an ExponentialBackoffLogger to log backoff retries
1152
+ * Added the ability of the MockPlugin to consume mocked request bodies
1153
+ * LogPlugin now exposes request and response objects in the extras array
1154
+
1155
+ ## 2.8.3 - 2012-07-30
1156
+
1157
+ * Bug: Fixed a case where empty POST requests were sent as GET requests
1158
+ * Bug: Fixed a bug in ExponentialBackoffPlugin that caused fatal errors when retrying an EntityEnclosingRequest that does not have a body
1159
+ * Bug: Setting the response body of a request to null after completing a request, not when setting the state of a request to new
1160
+ * Added multiple inheritance to service description commands
1161
+ * Added an ApiCommandInterface and added `getParamNames()` and `hasParam()`
1162
+ * Removed the default 2mb size cutoff from the Md5ValidatorPlugin so that it now defaults to validating everything
1163
+ * Changed CurlMulti::perform to pass a smaller timeout to CurlMulti::executeHandles
1164
+
1165
+ ## 2.8.2 - 2012-07-24
1166
+
1167
+ * Bug: Query string values set to 0 are no longer dropped from the query string
1168
+ * Bug: A Collection object is no longer created each time a call is made to `Guzzle\Service\Command\AbstractCommand::getRequestHeaders()`
1169
+ * Bug: `+` is now treated as an encoded space when parsing query strings
1170
+ * QueryString and Collection performance improvements
1171
+ * Allowing dot notation for class paths in filters attribute of a service descriptions
1172
+
1173
+ ## 2.8.1 - 2012-07-16
1174
+
1175
+ * Loosening Event Dispatcher dependency
1176
+ * POST redirects can now be customized using CURLOPT_POSTREDIR
1177
+
1178
+ ## 2.8.0 - 2012-07-15
1179
+
1180
+ * BC: Guzzle\Http\Query
1181
+ * Query strings with empty variables will always show an equal sign unless the variable is set to QueryString::BLANK (e.g. ?acl= vs ?acl)
1182
+ * Changed isEncodingValues() and isEncodingFields() to isUrlEncoding()
1183
+ * Changed setEncodeValues(bool) and setEncodeFields(bool) to useUrlEncoding(bool)
1184
+ * Changed the aggregation functions of QueryString to be static methods
1185
+ * Can now use fromString() with querystrings that have a leading ?
1186
+ * cURL configuration values can be specified in service descriptions using `curl.` prefixed parameters
1187
+ * Content-Length is set to 0 before emitting the request.before_send event when sending an empty request body
1188
+ * Cookies are no longer URL decoded by default
1189
+ * Bug: URI template variables set to null are no longer expanded
1190
+
1191
+ ## 2.7.2 - 2012-07-02
1192
+
1193
+ * BC: Moving things to get ready for subtree splits. Moving Inflection into Common. Moving Guzzle\Http\Parser to Guzzle\Parser.
1194
+ * BC: Removing Guzzle\Common\Batch\Batch::count() and replacing it with isEmpty()
1195
+ * CachePlugin now allows for a custom request parameter function to check if a request can be cached
1196
+ * Bug fix: CachePlugin now only caches GET and HEAD requests by default
1197
+ * Bug fix: Using header glue when transferring headers over the wire
1198
+ * Allowing deeply nested arrays for composite variables in URI templates
1199
+ * Batch divisors can now return iterators or arrays
1200
+
1201
+ ## 2.7.1 - 2012-06-26
1202
+
1203
+ * Minor patch to update version number in UA string
1204
+ * Updating build process
1205
+
1206
+ ## 2.7.0 - 2012-06-25
1207
+
1208
+ * BC: Inflection classes moved to Guzzle\Inflection. No longer static methods. Can now inject custom inflectors into classes.
1209
+ * BC: Removed magic setX methods from commands
1210
+ * BC: Magic methods mapped to service description commands are now inflected in the command factory rather than the client __call() method
1211
+ * Verbose cURL options are no longer enabled by default. Set curl.debug to true on a client to enable.
1212
+ * Bug: Now allowing colons in a response start-line (e.g. HTTP/1.1 503 Service Unavailable: Back-end server is at capacity)
1213
+ * Guzzle\Service\Resource\ResourceIteratorApplyBatched now internally uses the Guzzle\Common\Batch namespace
1214
+ * Added Guzzle\Service\Plugin namespace and a PluginCollectionPlugin
1215
+ * Added the ability to set POST fields and files in a service description
1216
+ * Guzzle\Http\EntityBody::factory() now accepts objects with a __toString() method
1217
+ * Adding a command.before_prepare event to clients
1218
+ * Added BatchClosureTransfer and BatchClosureDivisor
1219
+ * BatchTransferException now includes references to the batch divisor and transfer strategies
1220
+ * Fixed some tests so that they pass more reliably
1221
+ * Added Guzzle\Common\Log\ArrayLogAdapter
1222
+
1223
+ ## 2.6.6 - 2012-06-10
1224
+
1225
+ * BC: Removing Guzzle\Http\Plugin\BatchQueuePlugin
1226
+ * BC: Removing Guzzle\Service\Command\CommandSet
1227
+ * Adding generic batching system (replaces the batch queue plugin and command set)
1228
+ * Updating ZF cache and log adapters and now using ZF's composer repository
1229
+ * Bug: Setting the name of each ApiParam when creating through an ApiCommand
1230
+ * Adding result_type, result_doc, deprecated, and doc_url to service descriptions
1231
+ * Bug: Changed the default cookie header casing back to 'Cookie'
1232
+
1233
+ ## 2.6.5 - 2012-06-03
1234
+
1235
+ * BC: Renaming Guzzle\Http\Message\RequestInterface::getResourceUri() to getResource()
1236
+ * BC: Removing unused AUTH_BASIC and AUTH_DIGEST constants from
1237
+ * BC: Guzzle\Http\Cookie is now used to manage Set-Cookie data, not Cookie data
1238
+ * BC: Renaming methods in the CookieJarInterface
1239
+ * Moving almost all cookie logic out of the CookiePlugin and into the Cookie or CookieJar implementations
1240
+ * Making the default glue for HTTP headers ';' instead of ','
1241
+ * Adding a removeValue to Guzzle\Http\Message\Header
1242
+ * Adding getCookies() to request interface.
1243
+ * Making it easier to add event subscribers to HasDispatcherInterface classes. Can now directly call addSubscriber()
1244
+
1245
+ ## 2.6.4 - 2012-05-30
1246
+
1247
+ * BC: Cleaning up how POST files are stored in EntityEnclosingRequest objects. Adding PostFile class.
1248
+ * BC: Moving ApiCommand specific functionality from the Inspector and on to the ApiCommand
1249
+ * Bug: Fixing magic method command calls on clients
1250
+ * Bug: Email constraint only validates strings
1251
+ * Bug: Aggregate POST fields when POST files are present in curl handle
1252
+ * Bug: Fixing default User-Agent header
1253
+ * Bug: Only appending or prepending parameters in commands if they are specified
1254
+ * Bug: Not requiring response reason phrases or status codes to match a predefined list of codes
1255
+ * Allowing the use of dot notation for class namespaces when using instance_of constraint
1256
+ * Added any_match validation constraint
1257
+ * Added an AsyncPlugin
1258
+ * Passing request object to the calculateWait method of the ExponentialBackoffPlugin
1259
+ * Allowing the result of a command object to be changed
1260
+ * Parsing location and type sub values when instantiating a service description rather than over and over at runtime
1261
+
1262
+ ## 2.6.3 - 2012-05-23
1263
+
1264
+ * [BC] Guzzle\Common\FromConfigInterface no longer requires any config options.
1265
+ * [BC] Refactoring how POST files are stored on an EntityEnclosingRequest. They are now separate from POST fields.
1266
+ * You can now use an array of data when creating PUT request bodies in the request factory.
1267
+ * Removing the requirement that HTTPS requests needed a Cache-Control: public directive to be cacheable.
1268
+ * [Http] Adding support for Content-Type in multipart POST uploads per upload
1269
+ * [Http] Added support for uploading multiple files using the same name (foo[0], foo[1])
1270
+ * Adding more POST data operations for easier manipulation of POST data.
1271
+ * You can now set empty POST fields.
1272
+ * The body of a request is only shown on EntityEnclosingRequest objects that do not use POST files.
1273
+ * Split the Guzzle\Service\Inspector::validateConfig method into two methods. One to initialize when a command is created, and one to validate.
1274
+ * CS updates
1275
+
1276
+ ## 2.6.2 - 2012-05-19
1277
+
1278
+ * [Http] Better handling of nested scope requests in CurlMulti. Requests are now always prepares in the send() method rather than the addRequest() method.
1279
+
1280
+ ## 2.6.1 - 2012-05-19
1281
+
1282
+ * [BC] Removing 'path' support in service descriptions. Use 'uri'.
1283
+ * [BC] Guzzle\Service\Inspector::parseDocBlock is now protected. Adding getApiParamsForClass() with cache.
1284
+ * [BC] Removing Guzzle\Common\NullObject. Use https://github.com/mtdowling/NullObject if you need it.
1285
+ * [BC] Removing Guzzle\Common\XmlElement.
1286
+ * All commands, both dynamic and concrete, have ApiCommand objects.
1287
+ * Adding a fix for CurlMulti so that if all of the connections encounter some sort of curl error, then the loop exits.
1288
+ * Adding checks to EntityEnclosingRequest so that empty POST files and fields are ignored.
1289
+ * Making the method signature of Guzzle\Service\Builder\ServiceBuilder::factory more flexible.
1290
+
1291
+ ## 2.6.0 - 2012-05-15
1292
+
1293
+ * [BC] Moving Guzzle\Service\Builder to Guzzle\Service\Builder\ServiceBuilder
1294
+ * [BC] Executing a Command returns the result of the command rather than the command
1295
+ * [BC] Moving all HTTP parsing logic to Guzzle\Http\Parsers. Allows for faster C implementations if needed.
1296
+ * [BC] Changing the Guzzle\Http\Message\Response::setProtocol() method to accept a protocol and version in separate args.
1297
+ * [BC] Moving ResourceIterator* to Guzzle\Service\Resource
1298
+ * [BC] Completely refactored ResourceIterators to iterate over a cloned command object
1299
+ * [BC] Moved Guzzle\Http\UriTemplate to Guzzle\Http\Parser\UriTemplate\UriTemplate
1300
+ * [BC] Guzzle\Guzzle is now deprecated
1301
+ * Moving Guzzle\Common\Guzzle::inject to Guzzle\Common\Collection::inject
1302
+ * Adding Guzzle\Version class to give version information about Guzzle
1303
+ * Adding Guzzle\Http\Utils class to provide getDefaultUserAgent() and getHttpDate()
1304
+ * Adding Guzzle\Curl\CurlVersion to manage caching curl_version() data
1305
+ * ServiceDescription and ServiceBuilder are now cacheable using similar configs
1306
+ * Changing the format of XML and JSON service builder configs. Backwards compatible.
1307
+ * Cleaned up Cookie parsing
1308
+ * Trimming the default Guzzle User-Agent header
1309
+ * Adding a setOnComplete() method to Commands that is called when a command completes
1310
+ * Keeping track of requests that were mocked in the MockPlugin
1311
+ * Fixed a caching bug in the CacheAdapterFactory
1312
+ * Inspector objects can be injected into a Command object
1313
+ * Refactoring a lot of code and tests to be case insensitive when dealing with headers
1314
+ * Adding Guzzle\Http\Message\HeaderComparison for easy comparison of HTTP headers using a DSL
1315
+ * Adding the ability to set global option overrides to service builder configs
1316
+ * Adding the ability to include other service builder config files from within XML and JSON files
1317
+ * Moving the parseQuery method out of Url and on to QueryString::fromString() as a static factory method.
1318
+
1319
+ ## 2.5.0 - 2012-05-08
1320
+
1321
+ * Major performance improvements
1322
+ * [BC] Simplifying Guzzle\Common\Collection. Please check to see if you are using features that are now deprecated.
1323
+ * [BC] Using a custom validation system that allows a flyweight implementation for much faster validation. No longer using Symfony2 Validation component.
1324
+ * [BC] No longer supporting "{{ }}" for injecting into command or UriTemplates. Use "{}"
1325
+ * Added the ability to passed parameters to all requests created by a client
1326
+ * Added callback functionality to the ExponentialBackoffPlugin
1327
+ * Using microtime in ExponentialBackoffPlugin to allow more granular backoff strategies.
1328
+ * Rewinding request stream bodies when retrying requests
1329
+ * Exception is thrown when JSON response body cannot be decoded
1330
+ * Added configurable magic method calls to clients and commands. This is off by default.
1331
+ * Fixed a defect that added a hash to every parsed URL part
1332
+ * Fixed duplicate none generation for OauthPlugin.
1333
+ * Emitting an event each time a client is generated by a ServiceBuilder
1334
+ * Using an ApiParams object instead of a Collection for parameters of an ApiCommand
1335
+ * cache.* request parameters should be renamed to params.cache.*
1336
+ * Added the ability to set arbitrary curl options on requests (disable_wire, progress, etc.). See CurlHandle.
1337
+ * Added the ability to disable type validation of service descriptions
1338
+ * ServiceDescriptions and ServiceBuilders are now Serializable
vendor/guzzlehttp/guzzle/LICENSE DELETED
@@ -1,19 +0,0 @@
1
- Copyright (c) 2011-2018 Michael Dowling, https://github.com/mtdowling <mtdowling@gmail.com>
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the "Software"), to deal
5
- in the Software without restriction, including without limitation the rights
6
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- copies of the Software, and to permit persons to whom the Software is
8
- furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in
11
- all copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- THE SOFTWARE.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/guzzlehttp/guzzle/phpstan-baseline.neon DELETED
@@ -1,230 +0,0 @@
1
-
2
-
3
- parameters:
4
- ignoreErrors:
5
- -
6
- message: "#^Method GuzzleHttp\\\\Client\\:\\:__call\\(\\) should return GuzzleHttp\\\\Promise\\\\PromiseInterface but returns GuzzleHttp\\\\PromiseInterface\\|Psr\\\\Http\\\\Message\\\\ResponseInterface\\.$#"
7
- count: 1
8
- path: src/Client.php
9
-
10
- -
11
- message: "#^Return typehint of method GuzzleHttp\\\\Client\\:\\:sendAsync\\(\\) has invalid type GuzzleHttp\\\\PromiseInterface\\.$#"
12
- count: 1
13
- path: src/Client.php
14
-
15
- -
16
- message: "#^Method GuzzleHttp\\\\Client\\:\\:sendAsync\\(\\) should return GuzzleHttp\\\\PromiseInterface but returns GuzzleHttp\\\\Promise\\\\PromiseInterface\\.$#"
17
- count: 1
18
- path: src/Client.php
19
-
20
- -
21
- message: "#^PHPDoc tag @throws with type GuzzleHttp\\\\GuzzleException is not subtype of Throwable$#"
22
- count: 2
23
- path: src/Client.php
24
-
25
- -
26
- message: "#^Call to method wait\\(\\) on an unknown class GuzzleHttp\\\\PromiseInterface\\.$#"
27
- count: 2
28
- path: src/Client.php
29
-
30
- -
31
- message: "#^Return typehint of method GuzzleHttp\\\\Client\\:\\:requestAsync\\(\\) has invalid type GuzzleHttp\\\\PromiseInterface\\.$#"
32
- count: 1
33
- path: src/Client.php
34
-
35
- -
36
- message: "#^Method GuzzleHttp\\\\Client\\:\\:requestAsync\\(\\) should return GuzzleHttp\\\\PromiseInterface but returns GuzzleHttp\\\\Promise\\\\PromiseInterface\\.$#"
37
- count: 1
38
- path: src/Client.php
39
-
40
- -
41
- message: "#^Parameter \\#1 \\$str of function strtolower expects string, int\\|string given\\.$#"
42
- count: 1
43
- path: src/Client.php
44
-
45
- -
46
- message: "#^Parameter \\#2 \\$prefix of function http_build_query expects string, null given\\.$#"
47
- count: 1
48
- path: src/Client.php
49
-
50
- -
51
- message: "#^PHPDoc tag @throws with type GuzzleHttp\\\\InvalidArgumentException is not subtype of Throwable$#"
52
- count: 1
53
- path: src/Client.php
54
-
55
- -
56
- message: "#^Result of \\|\\| is always false\\.$#"
57
- count: 1
58
- path: src/Cookie/CookieJar.php
59
-
60
- -
61
- message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#"
62
- count: 2
63
- path: src/Cookie/CookieJar.php
64
-
65
- -
66
- message: "#^Method GuzzleHttp\\\\Cookie\\\\CookieJar\\:\\:clear\\(\\) should return GuzzleHttp\\\\Cookie\\\\CookieJarInterface but empty return statement found\\.$#"
67
- count: 1
68
- path: src/Cookie/CookieJar.php
69
-
70
- -
71
- message: "#^Parameter \\#3 \\$length of function substr expects int, int\\|false given\\.$#"
72
- count: 1
73
- path: src/Cookie/CookieJar.php
74
-
75
- -
76
- message: "#^Property GuzzleHttp\\\\Cookie\\\\SetCookie\\:\\:\\$data \\(array\\) does not accept array\\|null\\.$#"
77
- count: 1
78
- path: src/Cookie/SetCookie.php
79
-
80
- -
81
- message: "#^Else branch is unreachable because ternary operator condition is always true\\.$#"
82
- count: 1
83
- path: src/Cookie/SetCookie.php
84
-
85
- -
86
- message: "#^Parameter \\#1 \\$str of function ltrim expects string, string\\|null given\\.$#"
87
- count: 1
88
- path: src/Cookie/SetCookie.php
89
-
90
- -
91
- message: "#^Negated boolean expression is always false\\.$#"
92
- count: 1
93
- path: src/Handler/CurlFactory.php
94
-
95
- -
96
- message: "#^If condition is always true\\.$#"
97
- count: 1
98
- path: src/Handler/CurlFactory.php
99
-
100
- -
101
- message: "#^Parameter \\#1 \\$str1 of function strcasecmp expects string, int\\|string given\\.$#"
102
- count: 1
103
- path: src/Handler/CurlFactory.php
104
-
105
- -
106
- message: "#^Property GuzzleHttp\\\\Handler\\\\CurlMultiHandler\\:\\:\\$_mh \\(resource\\) does not accept resource\\|false\\.$#"
107
- count: 1
108
- path: src/Handler/CurlMultiHandler.php
109
-
110
- -
111
- message: "#^Parameter \\#1 \\$mh of function curl_multi_setopt expects resource, resource\\|false given\\.$#"
112
- count: 1
113
- path: src/Handler/CurlMultiHandler.php
114
-
115
- -
116
- message: "#^Parameter \\#1 \\$status of class GuzzleHttp\\\\Psr7\\\\Response constructor expects int, string given\\.$#"
117
- count: 1
118
- path: src/Handler/EasyHandle.php
119
-
120
- -
121
- message: "#^Parameter \\#2 \\$parameters of function call_user_func_array expects array\\<int, mixed\\>, array given\\.$#"
122
- count: 1
123
- path: src/Handler/MockHandler.php
124
-
125
- -
126
- message: "#^Binary operation \"\\*\" between float\\|int\\|string and 1000 results in an error\\.$#"
127
- count: 1
128
- path: src/Handler/MockHandler.php
129
-
130
- -
131
- message: "#^Parameter \\#1 \\$status of class GuzzleHttp\\\\Psr7\\\\Response constructor expects int, string given\\.$#"
132
- count: 1
133
- path: src/Handler/StreamHandler.php
134
-
135
- -
136
- message: "#^Argument of an invalid type array\\<int, array\\<string, int\\|string\\>\\>\\|null supplied for foreach, only iterables are supported\\.$#"
137
- count: 1
138
- path: src/Handler/StreamHandler.php
139
-
140
- -
141
- message: "#^Parameter \\#3 \\$use_include_path of function fopen expects bool, null given\\.$#"
142
- count: 1
143
- path: src/Handler/StreamHandler.php
144
-
145
- -
146
- message: "#^Parameter \\#1 \\$stream of function stream_set_timeout expects resource, resource\\|false given\\.$#"
147
- count: 1
148
- path: src/Handler/StreamHandler.php
149
-
150
- -
151
- message: "#^Parameter \\#3 \\$microseconds of function stream_set_timeout expects int, float\\|int given\\.$#"
152
- count: 1
153
- path: src/Handler/StreamHandler.php
154
-
155
- -
156
- message: "#^Parameter \\#1 \\$obj of function spl_object_hash expects object, callable given\\.$#"
157
- count: 1
158
- path: src/HandlerStack.php
159
-
160
- -
161
- message: "#^Method GuzzleHttp\\\\MessageFormatter\\:\\:format\\(\\) should return string but returns string\\|null\\.$#"
162
- count: 1
163
- path: src/MessageFormatter.php
164
-
165
- -
166
- message: "#^Result of && is always false\\.$#"
167
- count: 1
168
- path: src/Middleware.php
169
-
170
- -
171
- message: "#^Return typehint of method GuzzleHttp\\\\Pool\\:\\:promise\\(\\) has invalid type GuzzleHttp\\\\GuzzleHttp\\\\Promise\\\\Promise\\.$#"
172
- count: 1
173
- path: src/Pool.php
174
-
175
- -
176
- message: "#^Method GuzzleHttp\\\\Pool\\:\\:promise\\(\\) should return GuzzleHttp\\\\GuzzleHttp\\\\Promise\\\\Promise but returns GuzzleHttp\\\\Promise\\\\PromiseInterface\\.$#"
177
- count: 1
178
- path: src/Pool.php
179
-
180
- -
181
- message: "#^Call to method wait\\(\\) on an unknown class GuzzleHttp\\\\GuzzleHttp\\\\Promise\\\\Promise\\.$#"
182
- count: 1
183
- path: src/Pool.php
184
-
185
- -
186
- message: "#^Parameter \\#1 \\$str of function substr expects string, int given\\.$#"
187
- count: 1
188
- path: src/RedirectMiddleware.php
189
-
190
- -
191
- message: "#^Parameter \\#1 \\$promise of method GuzzleHttp\\\\RedirectMiddleware\\:\\:withTracking\\(\\) expects GuzzleHttp\\\\Promise\\\\PromiseInterface, GuzzleHttp\\\\Promise\\\\PromiseInterface\\|Psr\\\\Http\\\\Message\\\\ResponseInterface given\\.$#"
192
- count: 1
193
- path: src/RedirectMiddleware.php
194
-
195
- -
196
- message: "#^Parameter \\#2 \\$value of method Psr\\\\Http\\\\Message\\\\MessageInterface\\:\\:withHeader\\(\\) expects array\\<string\\>\\|string, array given\\.$#"
197
- count: 2
198
- path: src/RedirectMiddleware.php
199
-
200
- -
201
- message: "#^Method GuzzleHttp\\\\RetryMiddleware\\:\\:doRetry\\(\\) should return GuzzleHttp\\\\RetryMiddleware but returns GuzzleHttp\\\\Promise\\\\PromiseInterface\\.$#"
202
- count: 1
203
- path: src/RetryMiddleware.php
204
-
205
- -
206
- message: "#^Function uri_template not found\\.$#"
207
- count: 1
208
- path: src/functions.php
209
-
210
- -
211
- message: "#^Parameter \\#1 \\$str of function rtrim expects string, string\\|false given\\.$#"
212
- count: 1
213
- path: src/functions.php
214
-
215
- -
216
- message: "#^Function GuzzleHttp\\\\debug_resource\\(\\) should return resource but returns resource\\|false\\.$#"
217
- count: 1
218
- path: src/functions.php
219
-
220
- -
221
- message: "#^Parameter \\#1 \\$str of function substr expects string, string\\|null given\\.$#"
222
- count: 1
223
- path: src/functions.php
224
-
225
- -
226
- message: "#^Function GuzzleHttp\\\\json_encode\\(\\) should return string but returns string\\|false\\.$#"
227
- count: 1
228
- path: src/functions.php
229
-
230
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/guzzlehttp/guzzle/phpstan.neon.dist DELETED
@@ -1,7 +0,0 @@
1
- includes:
2
- - phpstan-baseline.neon
3
-
4
- parameters:
5
- level: max
6
- paths:
7
- - src
 
 
 
 
 
 
 
vendor/guzzlehttp/guzzle/src/Client.php CHANGED
@@ -2,6 +2,7 @@
2
  namespace GuzzleHttp;
3
 
4
  use GuzzleHttp\Cookie\CookieJar;
 
5
  use GuzzleHttp\Promise;
6
  use GuzzleHttp\Psr7;
7
  use Psr\Http\Message\RequestInterface;
@@ -46,9 +47,8 @@ class Client implements ClientInterface
46
  * wire. The function is called with a Psr7\Http\Message\RequestInterface
47
  * and array of transfer options, and must return a
48
  * GuzzleHttp\Promise\PromiseInterface that is fulfilled with a
49
- * Psr7\Http\Message\ResponseInterface on success. "handler" is a
50
- * constructor only option that cannot be overridden in per/request
51
- * options. If no handler is provided, a default handler will be created
52
  * that enables all of the request options below by attaching all of the
53
  * default middleware to the handler.
54
  * - base_uri: (string|UriInterface) Base URI of the client that is merged
@@ -101,7 +101,7 @@ class Client implements ClientInterface
101
  * @param array $options Request options to apply to the given
102
  * request and to the transfer. See \GuzzleHttp\RequestOptions.
103
  *
104
- * @return PromiseInterface
105
  */
106
  public function sendAsync(RequestInterface $request, array $options = [])
107
  {
@@ -141,7 +141,7 @@ class Client implements ClientInterface
141
  * @param string|UriInterface $uri URI object or string.
142
  * @param array $options Request options to apply. See \GuzzleHttp\RequestOptions.
143
  *
144
- * @return PromiseInterface
145
  */
146
  public function requestAsync($method, $uri = '', array $options = [])
147
  {
@@ -214,6 +214,11 @@ class Client implements ClientInterface
214
  $uri = Psr7\UriResolver::resolve(Psr7\uri_for($config['base_uri']), $uri);
215
  }
216
 
 
 
 
 
 
217
  return $uri->getScheme() === '' && $uri->getHost() !== '' ? $uri->withScheme('http') : $uri;
218
  }
219
 
@@ -230,7 +235,8 @@ class Client implements ClientInterface
230
  'http_errors' => true,
231
  'decode_content' => true,
232
  'verify' => true,
233
- 'cookies' => false
 
234
  ];
235
 
236
  // Use the standard Linux HTTP_PROXY and HTTPS_PROXY if set.
@@ -238,7 +244,7 @@ class Client implements ClientInterface
238
  // We can only trust the HTTP_PROXY environment variable in a CLI
239
  // process due to the fact that PHP has no reliable mechanism to
240
  // get environment variables that start with "HTTP_".
241
- if (php_sapi_name() == 'cli' && getenv('HTTP_PROXY')) {
242
  $defaults['proxy']['http'] = getenv('HTTP_PROXY');
243
  }
244
 
@@ -482,7 +488,7 @@ class Client implements ClientInterface
482
  /**
483
  * Throw Exception with pre-set message.
484
  * @return void
485
- * @throws InvalidArgumentException Invalid body.
486
  */
487
  private function invalidBody()
488
  {
2
  namespace GuzzleHttp;
3
 
4
  use GuzzleHttp\Cookie\CookieJar;
5
+ use GuzzleHttp\Exception\GuzzleException;
6
  use GuzzleHttp\Promise;
7
  use GuzzleHttp\Psr7;
8
  use Psr\Http\Message\RequestInterface;
47
  * wire. The function is called with a Psr7\Http\Message\RequestInterface
48
  * and array of transfer options, and must return a
49
  * GuzzleHttp\Promise\PromiseInterface that is fulfilled with a
50
+ * Psr7\Http\Message\ResponseInterface on success.
51
+ * If no handler is provided, a default handler will be created
 
52
  * that enables all of the request options below by attaching all of the
53
  * default middleware to the handler.
54
  * - base_uri: (string|UriInterface) Base URI of the client that is merged
101
  * @param array $options Request options to apply to the given
102
  * request and to the transfer. See \GuzzleHttp\RequestOptions.
103
  *
104
+ * @return Promise\PromiseInterface
105
  */
106
  public function sendAsync(RequestInterface $request, array $options = [])
107
  {
141
  * @param string|UriInterface $uri URI object or string.
142
  * @param array $options Request options to apply. See \GuzzleHttp\RequestOptions.
143
  *
144
+ * @return Promise\PromiseInterface
145
  */
146
  public function requestAsync($method, $uri = '', array $options = [])
147
  {
214
  $uri = Psr7\UriResolver::resolve(Psr7\uri_for($config['base_uri']), $uri);
215
  }
216
 
217
+ if (isset($config['idn_conversion']) && ($config['idn_conversion'] !== false)) {
218
+ $idnOptions = ($config['idn_conversion'] === true) ? IDNA_DEFAULT : $config['idn_conversion'];
219
+ $uri = Utils::idnUriConvert($uri, $idnOptions);
220
+ }
221
+
222
  return $uri->getScheme() === '' && $uri->getHost() !== '' ? $uri->withScheme('http') : $uri;
223
  }
224
 
235
  'http_errors' => true,
236
  'decode_content' => true,
237
  'verify' => true,
238
+ 'cookies' => false,
239
+ 'idn_conversion' => true,
240
  ];
241
 
242
  // Use the standard Linux HTTP_PROXY and HTTPS_PROXY if set.
244
  // We can only trust the HTTP_PROXY environment variable in a CLI
245
  // process due to the fact that PHP has no reliable mechanism to
246
  // get environment variables that start with "HTTP_".
247
+ if (php_sapi_name() === 'cli' && getenv('HTTP_PROXY')) {
248
  $defaults['proxy']['http'] = getenv('HTTP_PROXY');
249
  }
250
 
488
  /**
489
  * Throw Exception with pre-set message.
490
  * @return void
491
+ * @throws \InvalidArgumentException Invalid body.
492
  */
493
  private function invalidBody()
494
  {
vendor/guzzlehttp/guzzle/src/ClientInterface.php CHANGED
@@ -15,7 +15,7 @@ interface ClientInterface
15
  /**
16
  * @deprecated Will be removed in Guzzle 7.0.0
17
  */
18
- const VERSION = '6.4.1';
19
 
20
  /**
21
  * Send an HTTP request.
15
  /**
16
  * @deprecated Will be removed in Guzzle 7.0.0
17
  */
18
+ const VERSION = '6.5.5';
19
 
20
  /**
21
  * Send an HTTP request.
vendor/guzzlehttp/guzzle/src/Exception/RequestException.php CHANGED
@@ -128,7 +128,7 @@ class RequestException extends TransferException
128
  }
129
 
130
  /**
131
- * Obfuscates URI if there is an username and a password present
132
  *
133
  * @param UriInterface $uri
134
  *
128
  }
129
 
130
  /**
131
+ * Obfuscates URI if there is a username and a password present
132
  *
133
  * @param UriInterface $uri
134
  *
vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  namespace GuzzleHttp\Handler;
3
 
4
- use GuzzleHttp\Exception\InvalidArgumentException;
5
  use GuzzleHttp\Promise as P;
6
  use GuzzleHttp\Promise\Promise;
 
7
  use Psr\Http\Message\RequestInterface;
8
 
9
  /**
@@ -102,7 +102,7 @@ class CurlMultiHandler
102
  {
103
  // Add any delayed handles if needed.
104
  if ($this->delays) {
105
- $currentTime = \GuzzleHttp\_current_time();
106
  foreach ($this->delays as $id => $delay) {
107
  if ($currentTime >= $delay) {
108
  unset($this->delays[$id]);
@@ -154,7 +154,7 @@ class CurlMultiHandler
154
  if (empty($easy->options['delay'])) {
155
  curl_multi_add_handle($this->_mh, $easy->handle);
156
  } else {
157
- $this->delays[$id] = \GuzzleHttp\_current_time() + ($easy->options['delay'] / 1000);
158
  }
159
  }
160
 
@@ -206,7 +206,7 @@ class CurlMultiHandler
206
 
207
  private function timeToNext()
208
  {
209
- $currentTime = \GuzzleHttp\_current_time();
210
  $nextTime = PHP_INT_MAX;
211
  foreach ($this->delays as $time) {
212
  if ($time < $nextTime) {
1
  <?php
2
  namespace GuzzleHttp\Handler;
3
 
 
4
  use GuzzleHttp\Promise as P;
5
  use GuzzleHttp\Promise\Promise;
6
+ use GuzzleHttp\Utils;
7
  use Psr\Http\Message\RequestInterface;
8
 
9
  /**
102
  {
103
  // Add any delayed handles if needed.
104
  if ($this->delays) {
105
+ $currentTime = Utils::currentTime();
106
  foreach ($this->delays as $id => $delay) {
107
  if ($currentTime >= $delay) {
108
  unset($this->delays[$id]);
154
  if (empty($easy->options['delay'])) {
155
  curl_multi_add_handle($this->_mh, $easy->handle);
156
  } else {
157
+ $this->delays[$id] = Utils::currentTime() + ($easy->options['delay'] / 1000);
158
  }
159
  }
160
 
206
 
207
  private function timeToNext()
208
  {
209
+ $currentTime = Utils::currentTime();
210
  $nextTime = PHP_INT_MAX;
211
  foreach ($this->delays as $time) {
212
  if ($time < $nextTime) {
vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php CHANGED
@@ -7,6 +7,7 @@ use GuzzleHttp\Promise\FulfilledPromise;
7
  use GuzzleHttp\Promise\PromiseInterface;
8
  use GuzzleHttp\Psr7;
9
  use GuzzleHttp\TransferStats;
 
10
  use Psr\Http\Message\RequestInterface;
11
  use Psr\Http\Message\ResponseInterface;
12
  use Psr\Http\Message\StreamInterface;
@@ -33,7 +34,7 @@ class StreamHandler
33
  usleep($options['delay'] * 1000);
34
  }
35
 
36
- $startTime = isset($options['on_stats']) ? \GuzzleHttp\_current_time() : null;
37
 
38
  try {
39
  // Does not support the expect header.
@@ -82,7 +83,7 @@ class StreamHandler
82
  $stats = new TransferStats(
83
  $request,
84
  $response,
85
- \GuzzleHttp\_current_time() - $startTime,
86
  $error,
87
  []
88
  );
7
  use GuzzleHttp\Promise\PromiseInterface;
8
  use GuzzleHttp\Psr7;
9
  use GuzzleHttp\TransferStats;
10
+ use GuzzleHttp\Utils;
11
  use Psr\Http\Message\RequestInterface;
12
  use Psr\Http\Message\ResponseInterface;
13
  use Psr\Http\Message\StreamInterface;
34
  usleep($options['delay'] * 1000);
35
  }
36
 
37
+ $startTime = isset($options['on_stats']) ? Utils::currentTime() : null;
38
 
39
  try {
40
  // Does not support the expect header.
83
  $stats = new TransferStats(
84
  $request,
85
  $response,
86
+ Utils::currentTime() - $startTime,
87
  $error,
88
  []
89
  );
vendor/guzzlehttp/guzzle/src/Pool.php CHANGED
@@ -2,6 +2,7 @@
2
  namespace GuzzleHttp;
3
 
4
  use GuzzleHttp\Promise\EachPromise;
 
5
  use GuzzleHttp\Promise\PromisorInterface;
6
  use Psr\Http\Message\RequestInterface;
7
 
@@ -71,7 +72,8 @@ class Pool implements PromisorInterface
71
 
72
  /**
73
  * Get promise
74
- * @return GuzzleHttp\Promise\Promise
 
75
  */
76
  public function promise()
77
  {
2
  namespace GuzzleHttp;
3
 
4
  use GuzzleHttp\Promise\EachPromise;
5
+ use GuzzleHttp\Promise\PromiseInterface;
6
  use GuzzleHttp\Promise\PromisorInterface;
7
  use Psr\Http\Message\RequestInterface;
8
 
72
 
73
  /**
74
  * Get promise
75
+ *
76
+ * @return PromiseInterface
77
  */
78
  public function promise()
79
  {
vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php CHANGED
@@ -13,7 +13,7 @@ use Psr\Http\Message\UriInterface;
13
  * Request redirect middleware.
14
  *
15
  * Apply this middleware like other middleware using
16
- * {@see GuzzleHttp\Middleware::redirect()}.
17
  */
18
  class RedirectMiddleware
19
  {
@@ -190,7 +190,13 @@ class RedirectMiddleware
190
  $modify['body'] = '';
191
  }
192
 
193
- $modify['uri'] = $this->redirectUri($request, $response, $protocols);
 
 
 
 
 
 
194
  Psr7\rewind_body($request);
195
 
196
  // Add the Referer header if it is told to do so and only
13
  * Request redirect middleware.
14
  *
15
  * Apply this middleware like other middleware using
16
+ * {@see \GuzzleHttp\Middleware::redirect()}.
17
  */
18
  class RedirectMiddleware
19
  {
190
  $modify['body'] = '';
191
  }
192
 
193
+ $uri = $this->redirectUri($request, $response, $protocols);
194
+ if (isset($options['idn_conversion']) && ($options['idn_conversion'] !== false)) {
195
+ $idnOptions = ($options['idn_conversion'] === true) ? IDNA_DEFAULT : $options['idn_conversion'];
196
+ $uri = Utils::idnUriConvert($uri, $idnOptions);
197
+ }
198
+
199
+ $modify['uri'] = $uri;
200
  Psr7\rewind_body($request);
201
 
202
  // Add the Referer header if it is told to do so and only
vendor/guzzlehttp/guzzle/src/RequestOptions.php CHANGED
@@ -132,6 +132,14 @@ final class RequestOptions
132
  */
133
  const HTTP_ERRORS = 'http_errors';
134
 
 
 
 
 
 
 
 
 
135
  /**
136
  * json: (mixed) Adds JSON data to a request. The provided value is JSON
137
  * encoded and a Content-Type header of application/json will be added to
132
  */
133
  const HTTP_ERRORS = 'http_errors';
134
 
135
+ /**
136
+ * idn: (bool|int, default=true) A combination of IDNA_* constants for
137
+ * idn_to_ascii() PHP's function (see "options" parameter). Set to false to
138
+ * disable IDN support completely, or to true to use the default
139
+ * configuration (IDNA_DEFAULT constant).
140
+ */
141
+ const IDN_CONVERSION = 'idn_conversion';
142
+
143
  /**
144
  * json: (mixed) Adds JSON data to a request. The provided value is JSON
145
  * encoded and a Content-Type header of application/json will be added to
vendor/guzzlehttp/guzzle/src/RetryMiddleware.php CHANGED
@@ -47,11 +47,11 @@ class RetryMiddleware
47
  *
48
  * @param int $retries
49
  *
50
- * @return int
51
  */
52
  public static function exponentialDelay($retries)
53
  {
54
- return (int) pow(2, $retries - 1);
55
  }
56
 
57
  /**
47
  *
48
  * @param int $retries
49
  *
50
+ * @return int milliseconds.
51
  */
52
  public static function exponentialDelay($retries)
53
  {
54
+ return (int) pow(2, $retries - 1) * 1000;
55
  }
56
 
57
  /**
vendor/guzzlehttp/guzzle/src/Utils.php ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace GuzzleHttp;
3
+
4
+ use GuzzleHttp\Exception\InvalidArgumentException;
5
+ use Psr\Http\Message\UriInterface;
6
+ use Symfony\Polyfill\Intl\Idn\Idn;
7
+
8
+ final class Utils
9
+ {
10
+ /**
11
+ * Wrapper for the hrtime() or microtime() functions
12
+ * (depending on the PHP version, one of the two is used)
13
+ *
14
+ * @return float|mixed UNIX timestamp
15
+ *
16
+ * @internal
17
+ */
18
+ public static function currentTime()
19
+ {
20
+ return function_exists('hrtime') ? hrtime(true) / 1e9 : microtime(true);
21
+ }
22
+
23
+ /**
24
+ * @param int $options
25
+ *
26
+ * @return UriInterface
27
+ * @throws InvalidArgumentException
28
+ *
29
+ * @internal
30
+ */
31
+ public static function idnUriConvert(UriInterface $uri, $options = 0)
32
+ {
33
+ if ($uri->getHost()) {
34
+ $asciiHost = self::idnToAsci($uri->getHost(), $options, $info);
35
+ if ($asciiHost === false) {
36
+ $errorBitSet = isset($info['errors']) ? $info['errors'] : 0;
37
+
38
+ $errorConstants = array_filter(array_keys(get_defined_constants()), function ($name) {
39
+ return substr($name, 0, 11) === 'IDNA_ERROR_';
40
+ });
41
+
42
+ $errors = [];
43
+ foreach ($errorConstants as $errorConstant) {
44
+ if ($errorBitSet & constant($errorConstant)) {
45
+ $errors[] = $errorConstant;
46
+ }
47
+ }
48
+
49
+ $errorMessage = 'IDN conversion failed';
50
+ if ($errors) {
51
+ $errorMessage .= ' (errors: ' . implode(', ', $errors) . ')';
52
+ }
53
+
54
+ throw new InvalidArgumentException($errorMessage);
55
+ } else {
56
+ if ($uri->getHost() !== $asciiHost) {
57
+ // Replace URI only if the ASCII version is different
58
+ $uri = $uri->withHost($asciiHost);
59
+ }
60
+ }
61
+ }
62
+
63
+ return $uri;
64
+ }
65
+
66
+ /**
67
+ * @param string $domain
68
+ * @param int $options
69
+ * @param array $info
70
+ *
71
+ * @return string|false
72
+ */
73
+ private static function idnToAsci($domain, $options, &$info = [])
74
+ {
75
+ if (\preg_match('%^[ -~]+$%', $domain) === 1) {
76
+ return $domain;
77
+ }
78
+
79
+ if (\extension_loaded('intl') && defined('INTL_IDNA_VARIANT_UTS46')) {
80
+ return \idn_to_ascii($domain, $options, INTL_IDNA_VARIANT_UTS46, $info);
81
+ }
82
+
83
+ /*
84
+ * The Idn class is marked as @internal. Verify that class and method exists.
85
+ */
86
+ if (method_exists(Idn::class, 'idn_to_ascii')) {
87
+ return Idn::idn_to_ascii($domain, $options, Idn::INTL_IDNA_VARIANT_UTS46, $info);
88
+ }
89
+
90
+ throw new \RuntimeException('ext-intl or symfony/polyfill-intl-idn not loaded or too old');
91
+ }
92
+ }
vendor/guzzlehttp/guzzle/src/functions.php CHANGED
@@ -97,8 +97,8 @@ function debug_resource($value = null)
97
  *
98
  * The returned handler is not wrapped by any default middlewares.
99
  *
100
- * @throws \RuntimeException if no viable Handler is available.
101
  * @return callable Returns the best handler for the given system.
 
102
  */
103
  function choose_handler()
104
  {
@@ -332,15 +332,3 @@ function json_encode($value, $options = 0, $depth = 512)
332
 
333
  return $json;
334
  }
335
-
336
- /**
337
- * Wrapper for the hrtime() or microtime() functions
338
- * (depending on the PHP version, one of the two is used)
339
- *
340
- * @return float|mixed UNIX timestamp
341
- * @internal
342
- */
343
- function _current_time()
344
- {
345
- return function_exists('hrtime') ? hrtime(true) / 1e9 : microtime(true);
346
- }
97
  *
98
  * The returned handler is not wrapped by any default middlewares.
99
  *
 
100
  * @return callable Returns the best handler for the given system.
101
+ * @throws \RuntimeException if no viable Handler is available.
102
  */
103
  function choose_handler()
104
  {
332
 
333
  return $json;
334
  }
 
 
 
 
 
 
 
 
 
 
 
 
vendor/guzzlehttp/promises/CHANGELOG.md ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CHANGELOG
2
+
3
+
4
+ ## 1.4.0 - 2020-09-30
5
+
6
+ ### Added
7
+
8
+ - Support for PHP 8
9
+ - Optional `$recursive` flag to `all`
10
+ - Replaced functions by static methods
11
+
12
+ ### Fixed
13
+
14
+ - Fix empty `each` processing
15
+ - Fix promise handling for Iterators of non-unique keys
16
+ - Fixed `method_exists` crashes on PHP 8
17
+ - Memory leak on exceptions
18
+
19
+
20
+ ## 1.3.1 - 2016-12-20
21
+
22
+ ### Fixed
23
+
24
+ - `wait()` foreign promise compatibility
25
+
26
+
27
+ ## 1.3.0 - 2016-11-18
28
+
29
+ ### Added
30
+
31
+ - Adds support for custom task queues.
32
+
33
+ ### Fixed
34
+
35
+ - Fixed coroutine promise memory leak.
36
+
37
+
38
+ ## 1.2.0 - 2016-05-18
39
+
40
+ ### Changed
41
+
42
+ - Update to now catch `\Throwable` on PHP 7+
43
+
44
+
45
+ ## 1.1.0 - 2016-03-07
46
+
47
+ ### Changed
48
+
49
+ - Update EachPromise to prevent recurring on a iterator when advancing, as this
50
+ could trigger fatal generator errors.
51
+ - Update Promise to allow recursive waiting without unwrapping exceptions.
52
+
53
+
54
+ ## 1.0.3 - 2015-10-15
55
+
56
+ ### Changed
57
+
58
+ - Update EachPromise to immediately resolve when the underlying promise iterator
59
+ is empty. Previously, such a promise would throw an exception when its `wait`
60
+ function was called.
61
+
62
+
63
+ ## 1.0.2 - 2015-05-15
64
+
65
+ ### Changed
66
+
67
+ - Conditionally require functions.php.
68
+
69
+
70
+ ## 1.0.1 - 2015-06-24
71
+
72
+ ### Changed
73
+
74
+ - Updating EachPromise to call next on the underlying promise iterator as late
75
+ as possible to ensure that generators that generate new requests based on
76
+ callbacks are not iterated until after callbacks are invoked.
77
+
78
+
79
+ ## 1.0.0 - 2015-05-12
80
+
81
+ - Initial release
vendor/guzzlehttp/promises/LICENSE DELETED
@@ -1,19 +0,0 @@
1
- Copyright (c) 2015-2016 Michael Dowling, https://github.com/mtdowling <mtdowling@gmail.com>
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the "Software"), to deal
5
- in the Software without restriction, including without limitation the rights
6
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- copies of the Software, and to permit persons to whom the Software is
8
- furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in
11
- all copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- THE SOFTWARE.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/guzzlehttp/promises/src/AggregateException.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  /**
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  /**
vendor/guzzlehttp/promises/src/CancellationException.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  /**
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  /**
vendor/guzzlehttp/promises/src/Coroutine.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  use Exception;
@@ -9,7 +10,7 @@ use Throwable;
9
  * Creates a promise that is resolved using a generator that yields values or
10
  * promises (somewhat similar to C#'s async keyword).
11
  *
12
- * When called, the coroutine function will start an instance of the generator
13
  * and returns a promise that is fulfilled with its final yielded value.
14
  *
15
  * Control is returned back to the generator when the yielded promise settles.
@@ -22,7 +23,7 @@ use Throwable;
22
  * return new Promise\FulfilledPromise($value);
23
  * }
24
  *
25
- * $promise = Promise\coroutine(function () {
26
  * $value = (yield createPromise('a'));
27
  * try {
28
  * $value = (yield createPromise($value . 'b'));
@@ -38,6 +39,7 @@ use Throwable;
38
  * @param callable $generatorFn Generator function to wrap into a promise.
39
  *
40
  * @return Promise
 
41
  * @link https://github.com/petkaantonov/bluebird/blob/master/API.md#generators inspiration
42
  */
43
  final class Coroutine implements PromiseInterface
@@ -65,7 +67,23 @@ final class Coroutine implements PromiseInterface
65
  $this->currentPromise->wait();
66
  }
67
  });
68
- $this->nextCoroutine($this->generator->current());
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  }
70
 
71
  public function then(
@@ -108,7 +126,7 @@ final class Coroutine implements PromiseInterface
108
 
109
  private function nextCoroutine($yielded)
110
  {
111
- $this->currentPromise = promise_for($yielded)
112
  ->then([$this, '_handleSuccess'], [$this, '_handleFailure']);
113
  }
114
 
@@ -139,7 +157,7 @@ final class Coroutine implements PromiseInterface
139
  {
140
  unset($this->currentPromise);
141
  try {
142
- $nextYield = $this->generator->throw(exception_for($reason));
143
  // The throw was caught, so keep iterating on the coroutine
144
  $this->nextCoroutine($nextYield);
145
  } catch (Exception $exception) {
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  use Exception;
10
  * Creates a promise that is resolved using a generator that yields values or
11
  * promises (somewhat similar to C#'s async keyword).
12
  *
13
+ * When called, the Coroutine::of method will start an instance of the generator
14
  * and returns a promise that is fulfilled with its final yielded value.
15
  *
16
  * Control is returned back to the generator when the yielded promise settles.
23
  * return new Promise\FulfilledPromise($value);
24
  * }
25
  *
26
+ * $promise = Promise\Coroutine::of(function () {
27
  * $value = (yield createPromise('a'));
28
  * try {
29
  * $value = (yield createPromise($value . 'b'));
39
  * @param callable $generatorFn Generator function to wrap into a promise.
40
  *
41
  * @return Promise
42
+ *
43
  * @link https://github.com/petkaantonov/bluebird/blob/master/API.md#generators inspiration
44
  */
45
  final class Coroutine implements PromiseInterface
67
  $this->currentPromise->wait();
68
  }
69
  });
70
+ try {
71
+ $this->nextCoroutine($this->generator->current());
72
+ } catch (\Exception $exception) {
73
+ $this->result->reject($exception);
74
+ } catch (Throwable $throwable) {
75
+ $this->result->reject($throwable);
76
+ }
77
+ }
78
+
79
+ /**
80
+ * Create a new coroutine.
81
+ *
82
+ * @return self
83
+ */
84
+ public static function of(callable $generatorFn)
85
+ {
86
+ return new self($generatorFn);
87
  }
88
 
89
  public function then(
126
 
127
  private function nextCoroutine($yielded)
128
  {
129
+ $this->currentPromise = Create::promiseFor($yielded)
130
  ->then([$this, '_handleSuccess'], [$this, '_handleFailure']);
131
  }
132
 
157
  {
158
  unset($this->currentPromise);
159
  try {
160
+ $nextYield = $this->generator->throw(Create::exceptionFor($reason));
161
  // The throw was caught, so keep iterating on the coroutine
162
  $this->nextCoroutine($nextYield);
163
  } catch (Exception $exception) {
vendor/guzzlehttp/promises/src/Create.php ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace GuzzleHttp\Promise;
4
+
5
+ final class Create
6
+ {
7
+ /**
8
+ * Creates a promise for a value if the value is not a promise.
9
+ *
10
+ * @param mixed $value Promise or value.
11
+ *
12
+ * @return PromiseInterface
13
+ */
14
+ public static function promiseFor($value)
15
+ {
16
+ if ($value instanceof PromiseInterface) {
17
+ return $value;
18
+ }
19
+
20
+ // Return a Guzzle promise that shadows the given promise.
21
+ if (is_object($value) && method_exists($value, 'then')) {
22
+ $wfn = method_exists($value, 'wait') ? [$value, 'wait'] : null;
23
+ $cfn = method_exists($value, 'cancel') ? [$value, 'cancel'] : null;
24
+ $promise = new Promise($wfn, $cfn);
25
+ $value->then([$promise, 'resolve'], [$promise, 'reject']);
26
+ return $promise;
27
+ }
28
+
29
+ return new FulfilledPromise($value);
30
+ }
31
+
32
+ /**
33
+ * Creates a rejected promise for a reason if the reason is not a promise.
34
+ * If the provided reason is a promise, then it is returned as-is.
35
+ *
36
+ * @param mixed $reason Promise or reason.
37
+ *
38
+ * @return PromiseInterface
39
+ */
40
+ public static function rejectionFor($reason)
41
+ {
42
+ if ($reason instanceof PromiseInterface) {
43
+ return $reason;
44
+ }
45
+
46
+ return new RejectedPromise($reason);
47
+ }
48
+
49
+ /**
50
+ * Create an exception for a rejected promise value.
51
+ *
52
+ * @param mixed $reason
53
+ *
54
+ * @return \Exception|\Throwable
55
+ */
56
+ public static function exceptionFor($reason)
57
+ {
58
+ if ($reason instanceof \Exception || $reason instanceof \Throwable) {
59
+ return $reason;
60
+ }
61
+
62
+ return new RejectionException($reason);
63
+ }
64
+
65
+ /**
66
+ * Returns an iterator for the given value.
67
+ *
68
+ * @param mixed $value
69
+ *
70
+ * @return \Iterator
71
+ */
72
+ public static function iterFor($value)
73
+ {
74
+ if ($value instanceof \Iterator) {
75
+ return $value;
76
+ }
77
+
78
+ if (is_array($value)) {
79
+ return new \ArrayIterator($value);
80
+ }
81
+
82
+ return new \ArrayIterator([$value]);
83
+ }
84
+ }
vendor/guzzlehttp/promises/src/Each.php ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace GuzzleHttp\Promise;
4
+
5
+ final class Each
6
+ {
7
+ /**
8
+ * Given an iterator that yields promises or values, returns a promise that
9
+ * is fulfilled with a null value when the iterator has been consumed or
10
+ * the aggregate promise has been fulfilled or rejected.
11
+ *
12
+ * $onFulfilled is a function that accepts the fulfilled value, iterator
13
+ * index, and the aggregate promise. The callback can invoke any necessary
14
+ * side effects and choose to resolve or reject the aggregate if needed.
15
+ *
16
+ * $onRejected is a function that accepts the rejection reason, iterator
17
+ * index, and the aggregate promise. The callback can invoke any necessary
18
+ * side effects and choose to resolve or reject the aggregate if needed.
19
+ *
20
+ * @param mixed $iterable Iterator or array to iterate over.
21
+ * @param callable $onFulfilled
22
+ * @param callable $onRejected
23
+ *
24
+ * @return PromiseInterface
25
+ */
26
+ public static function of(
27
+ $iterable,
28
+ callable $onFulfilled = null,
29
+ callable $onRejected = null
30
+ ) {
31
+ return (new EachPromise($iterable, [
32
+ 'fulfilled' => $onFulfilled,
33
+ 'rejected' => $onRejected
34
+ ]))->promise();
35
+ }
36
+
37
+ /**
38
+ * Like of, but only allows a certain number of outstanding promises at any
39
+ * given time.
40
+ *
41
+ * $concurrency may be an integer or a function that accepts the number of
42
+ * pending promises and returns a numeric concurrency limit value to allow
43
+ * for dynamic a concurrency size.
44
+ *
45
+ * @param mixed $iterable
46
+ * @param int|callable $concurrency
47
+ * @param callable $onFulfilled
48
+ * @param callable $onRejected
49
+ *
50
+ * @return PromiseInterface
51
+ */
52
+ public static function ofLimit(
53
+ $iterable,
54
+ $concurrency,
55
+ callable $onFulfilled = null,
56
+ callable $onRejected = null
57
+ ) {
58
+ return (new EachPromise($iterable, [
59
+ 'fulfilled' => $onFulfilled,
60
+ 'rejected' => $onRejected,
61
+ 'concurrency' => $concurrency
62
+ ]))->promise();
63
+ }
64
+
65
+ /**
66
+ * Like limit, but ensures that no promise in the given $iterable argument
67
+ * is rejected. If any promise is rejected, then the aggregate promise is
68
+ * rejected with the encountered rejection.
69
+ *
70
+ * @param mixed $iterable
71
+ * @param int|callable $concurrency
72
+ * @param callable $onFulfilled
73
+ *
74
+ * @return PromiseInterface
75
+ */
76
+ public static function ofLimitAll(
77
+ $iterable,
78
+ $concurrency,
79
+ callable $onFulfilled = null
80
+ ) {
81
+ return each_limit(
82
+ $iterable,
83
+ $concurrency,
84
+ $onFulfilled,
85
+ function ($reason, $idx, PromiseInterface $aggregate) {
86
+ $aggregate->reject($reason);
87
+ }
88
+ );
89
+ }
90
+ }
vendor/guzzlehttp/promises/src/EachPromise.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  /**
@@ -9,22 +10,24 @@ class EachPromise implements PromisorInterface
9
  {
10
  private $pending = [];
11
 
12
- /** @var \Iterator */
 
 
13
  private $iterable;
14
 
15
- /** @var callable|int */
16
  private $concurrency;
17
 
18
- /** @var callable */
19
  private $onFulfilled;
20
 
21
- /** @var callable */
22
  private $onRejected;
23
 
24
- /** @var Promise */
25
  private $aggregate;
26
 
27
- /** @var bool */
28
  private $mutex;
29
 
30
  /**
@@ -45,12 +48,12 @@ class EachPromise implements PromisorInterface
45
  * allowed number of outstanding concurrently executing promises,
46
  * creating a capped pool of promises. There is no limit by default.
47
  *
48
- * @param mixed $iterable Promises or values to iterate.
49
- * @param array $config Configuration options
50
  */
51
  public function __construct($iterable, array $config = [])
52
  {
53
- $this->iterable = iter_for($iterable);
54
 
55
  if (isset($config['concurrency'])) {
56
  $this->concurrency = $config['concurrency'];
@@ -65,6 +68,7 @@ class EachPromise implements PromisorInterface
65
  }
66
  }
67
 
 
68
  public function promise()
69
  {
70
  if ($this->aggregate) {
@@ -73,16 +77,29 @@ class EachPromise implements PromisorInterface
73
 
74
  try {
75
  $this->createPromise();
 
76
  $this->iterable->rewind();
77
  if (!$this->checkIfFinished()) {
78
  $this->refillPending();
79
  }
80
  } catch (\Throwable $e) {
 
 
 
 
81
  $this->aggregate->reject($e);
82
  } catch (\Exception $e) {
 
 
 
 
83
  $this->aggregate->reject($e);
84
  }
85
 
 
 
 
 
86
  return $this->aggregate;
87
  }
88
 
@@ -96,7 +113,7 @@ class EachPromise implements PromisorInterface
96
  while ($promise = current($this->pending)) {
97
  next($this->pending);
98
  $promise->wait();
99
- if ($this->aggregate->getState() !== PromiseInterface::PENDING) {
100
  return;
101
  }
102
  }
@@ -106,6 +123,7 @@ class EachPromise implements PromisorInterface
106
  $clearFn = function () {
107
  $this->iterable = $this->concurrency = $this->pending = null;
108
  $this->onFulfilled = $this->onRejected = null;
 
109
  };
110
 
111
  $this->aggregate->then($clearFn, $clearFn);
@@ -145,20 +163,21 @@ class EachPromise implements PromisorInterface
145
  return false;
146
  }
147
 
148
- $promise = promise_for($this->iterable->current());
149
  $key = $this->iterable->key();
150
 
151
- // Iterable keys may not be unique, so we add the promises at the end
152
- // of the pending array and retrieve the array index being used
153
- $this->pending[] = null;
154
- end($this->pending);
155
- $idx = key($this->pending);
156
 
157
  $this->pending[$idx] = $promise->then(
158
  function ($value) use ($idx, $key) {
159
  if ($this->onFulfilled) {
160
  call_user_func(
161
- $this->onFulfilled, $value, $key, $this->aggregate
 
 
 
162
  );
163
  }
164
  $this->step($idx);
@@ -166,7 +185,10 @@ class EachPromise implements PromisorInterface
166
  function ($reason) use ($idx, $key) {
167
  if ($this->onRejected) {
168
  call_user_func(
169
- $this->onRejected, $reason, $key, $this->aggregate
 
 
 
170
  );
171
  }
172
  $this->step($idx);
@@ -204,7 +226,7 @@ class EachPromise implements PromisorInterface
204
  private function step($idx)
205
  {
206
  // If the promise was already resolved, then ignore this step.
207
- if ($this->aggregate->getState() !== PromiseInterface::PENDING) {
208
  return;
209
  }
210
 
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  /**
10
  {
11
  private $pending = [];
12
 
13
+ private $nextPendingIndex = 0;
14
+
15
+ /** @var \Iterator|null */
16
  private $iterable;
17
 
18
+ /** @var callable|int|null */
19
  private $concurrency;
20
 
21
+ /** @var callable|null */
22
  private $onFulfilled;
23
 
24
+ /** @var callable|null */
25
  private $onRejected;
26
 
27
+ /** @var Promise|null */
28
  private $aggregate;
29
 
30
+ /** @var bool|null */
31
  private $mutex;
32
 
33
  /**
48
  * allowed number of outstanding concurrently executing promises,
49
  * creating a capped pool of promises. There is no limit by default.
50
  *
51
+ * @param mixed $iterable Promises or values to iterate.
52
+ * @param array $config Configuration options
53
  */
54
  public function __construct($iterable, array $config = [])
55
  {
56
+ $this->iterable = Create::iterFor($iterable);
57
 
58
  if (isset($config['concurrency'])) {
59
  $this->concurrency = $config['concurrency'];
68
  }
69
  }
70
 
71
+ /** @psalm-suppress InvalidNullableReturnType */
72
  public function promise()
73
  {
74
  if ($this->aggregate) {
77
 
78
  try {
79
  $this->createPromise();
80
+ /** @psalm-assert Promise $this->aggregate */
81
  $this->iterable->rewind();
82
  if (!$this->checkIfFinished()) {
83
  $this->refillPending();
84
  }
85
  } catch (\Throwable $e) {
86
+ /**
87
+ * @psalm-suppress NullReference
88
+ * @phpstan-ignore-next-line
89
+ */
90
  $this->aggregate->reject($e);
91
  } catch (\Exception $e) {
92
+ /**
93
+ * @psalm-suppress NullReference
94
+ * @phpstan-ignore-next-line
95
+ */
96
  $this->aggregate->reject($e);
97
  }
98
 
99
+ /**
100
+ * @psalm-suppress NullableReturnStatement
101
+ * @phpstan-ignore-next-line
102
+ */
103
  return $this->aggregate;
104
  }
105
 
113
  while ($promise = current($this->pending)) {
114
  next($this->pending);
115
  $promise->wait();
116
+ if (Is::settled($this->aggregate)) {
117
  return;
118
  }
119
  }
123
  $clearFn = function () {
124
  $this->iterable = $this->concurrency = $this->pending = null;
125
  $this->onFulfilled = $this->onRejected = null;
126
+ $this->nextPendingIndex = 0;
127
  };
128
 
129
  $this->aggregate->then($clearFn, $clearFn);
163
  return false;
164
  }
165
 
166
+ $promise = Create::promiseFor($this->iterable->current());
167
  $key = $this->iterable->key();
168
 
169
+ // Iterable keys may not be unique, so we use a counter to
170
+ // guarantee uniqueness
171
+ $idx = $this->nextPendingIndex++;
 
 
172
 
173
  $this->pending[$idx] = $promise->then(
174
  function ($value) use ($idx, $key) {
175
  if ($this->onFulfilled) {
176
  call_user_func(
177
+ $this->onFulfilled,
178
+ $value,
179
+ $key,
180
+ $this->aggregate
181
  );
182
  }
183
  $this->step($idx);
185
  function ($reason) use ($idx, $key) {
186
  if ($this->onRejected) {
187
  call_user_func(
188
+ $this->onRejected,
189
+ $reason,
190
+ $key,
191
+ $this->aggregate
192
  );
193
  }
194
  $this->step($idx);
226
  private function step($idx)
227
  {
228
  // If the promise was already resolved, then ignore this step.
229
+ if (Is::settled($this->aggregate)) {
230
  return;
231
  }
232
 
vendor/guzzlehttp/promises/src/FulfilledPromise.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  /**
@@ -13,9 +14,10 @@ class FulfilledPromise implements PromiseInterface
13
 
14
  public function __construct($value)
15
  {
16
- if (method_exists($value, 'then')) {
17
  throw new \InvalidArgumentException(
18
- 'You cannot create a FulfilledPromise with a promise.');
 
19
  }
20
 
21
  $this->value = $value;
@@ -30,11 +32,11 @@ class FulfilledPromise implements PromiseInterface
30
  return $this;
31
  }
32
 
33
- $queue = queue();
34
  $p = new Promise([$queue, 'run']);
35
  $value = $this->value;
36
  $queue->add(static function () use ($p, $value, $onFulfilled) {
37
- if ($p->getState() === self::PENDING) {
38
  try {
39
  $p->resolve($onFulfilled($value));
40
  } catch (\Throwable $e) {
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  /**
14
 
15
  public function __construct($value)
16
  {
17
+ if (is_object($value) && method_exists($value, 'then')) {
18
  throw new \InvalidArgumentException(
19
+ 'You cannot create a FulfilledPromise with a promise.'
20
+ );
21
  }
22
 
23
  $this->value = $value;
32
  return $this;
33
  }
34
 
35
+ $queue = Utils::queue();
36
  $p = new Promise([$queue, 'run']);
37
  $value = $this->value;
38
  $queue->add(static function () use ($p, $value, $onFulfilled) {
39
+ if (Is::pending($p)) {
40
  try {
41
  $p->resolve($onFulfilled($value));
42
  } catch (\Throwable $e) {
vendor/guzzlehttp/promises/src/Is.php ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace GuzzleHttp\Promise;
4
+
5
+ final class Is
6
+ {
7
+ /**
8
+ * Returns true if a promise is pending.
9
+ *
10
+ * @return bool
11
+ */
12
+ public static function pending(PromiseInterface $promise)
13
+ {
14
+ return $promise->getState() === PromiseInterface::PENDING;
15
+ }
16
+
17
+ /**
18
+ * Returns true if a promise is fulfilled or rejected.
19
+ *
20
+ * @return bool
21
+ */
22
+ public static function settled(PromiseInterface $promise)
23
+ {
24
+ return $promise->getState() !== PromiseInterface::PENDING;
25
+ }
26
+
27
+ /**
28
+ * Returns true if a promise is fulfilled.
29
+ *
30
+ * @return bool
31
+ */
32
+ public static function fulfilled(PromiseInterface $promise)
33
+ {
34
+ return $promise->getState() === PromiseInterface::FULFILLED;
35
+ }
36
+
37
+ /**
38
+ * Returns true if a promise is rejected.
39
+ *
40
+ * @return bool
41
+ */
42
+ public static function rejected(PromiseInterface $promise)
43
+ {
44
+ return $promise->getState() === PromiseInterface::REJECTED;
45
+ }
46
+ }
vendor/guzzlehttp/promises/src/Promise.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  /**
@@ -41,14 +42,13 @@ class Promise implements PromiseInterface
41
 
42
  // Return a fulfilled promise and immediately invoke any callbacks.
43
  if ($this->state === self::FULFILLED) {
44
- return $onFulfilled
45
- ? promise_for($this->result)->then($onFulfilled)
46
- : promise_for($this->result);
47
  }
48
 
49
  // It's either cancelled or rejected, so return a rejected promise
50
  // and immediately invoke any callbacks.
51
- $rejection = rejection_for($this->result);
52
  return $onRejected ? $rejection->then(null, $onRejected) : $rejection;
53
  }
54
 
@@ -61,19 +61,15 @@ class Promise implements PromiseInterface
61
  {
62
  $this->waitIfPending();
63
 
64
- $inner = $this->result instanceof PromiseInterface
65
- ? $this->result->wait($unwrap)
66
- : $this->result;
67
-
68
  if ($unwrap) {
69
- if ($this->result instanceof PromiseInterface
70
- || $this->state === self::FULFILLED
71
- ) {
72
- return $inner;
73
- } else {
74
- // It's rejected so "unwrap" and throw an exception.
75
- throw exception_for($inner);
76
  }
 
 
77
  }
78
  }
79
 
@@ -103,6 +99,7 @@ class Promise implements PromiseInterface
103
  }
104
 
105
  // Reject the promise only if it wasn't rejected in a then callback.
 
106
  if ($this->state === self::PENDING) {
107
  $this->reject(new CancellationException('Promise has been cancelled'));
108
  }
@@ -148,17 +145,15 @@ class Promise implements PromiseInterface
148
 
149
  // If the value was not a settled promise or a thenable, then resolve
150
  // it in the task queue using the correct ID.
151
- if (!method_exists($value, 'then')) {
152
  $id = $state === self::FULFILLED ? 1 : 2;
153
  // It's a success, so resolve the handlers in the queue.
154
- queue()->add(static function () use ($id, $value, $handlers) {
155
  foreach ($handlers as $handler) {
156
  self::callHandler($id, $value, $handler);
157
  }
158
  });
159
- } elseif ($value instanceof Promise
160
- && $value->getState() === self::PENDING
161
- ) {
162
  // We can just merge our handlers onto the next promise.
163
  $value->handlers = array_merge($value->handlers, $handlers);
164
  } else {
@@ -184,8 +179,6 @@ class Promise implements PromiseInterface
184
  * @param int $index 1 (resolve) or 2 (reject).
185
  * @param mixed $value Value to pass to the callback.
186
  * @param array $handler Array of handler data (promise and callbacks).
187
- *
188
- * @return array Returns the next group to resolve.
189
  */
190
  private static function callHandler($index, $value, array $handler)
191
  {
@@ -194,13 +187,21 @@ class Promise implements PromiseInterface
194
 
195
  // The promise may have been cancelled or resolved before placing
196
  // this thunk in the queue.
197
- if ($promise->getState() !== self::PENDING) {
198
  return;
199
  }
200
 
201
  try {
202
  if (isset($handler[$index])) {
203
- $promise->resolve($handler[$index]($value));
 
 
 
 
 
 
 
 
204
  } elseif ($index === 1) {
205
  // Forward resolution values as-is.
206
  $promise->resolve($value);
@@ -231,8 +232,9 @@ class Promise implements PromiseInterface
231
  . 'wait on a promise.');
232
  }
233
 
234
- queue()->run();
235
 
 
236
  if ($this->state === self::PENDING) {
237
  $this->reject('Invoking the wait callback did not resolve the promise');
238
  }
@@ -263,17 +265,13 @@ class Promise implements PromiseInterface
263
  $this->waitList = null;
264
 
265
  foreach ($waitList as $result) {
266
- while (true) {
267
  $result->waitIfPending();
 
 
268
 
269
- if ($result->result instanceof Promise) {
270
- $result = $result->result;
271
- } else {
272
- if ($result->result instanceof PromiseInterface) {
273
- $result->result->wait(false);
274
- }
275
- break;
276
- }
277
  }
278
  }
279
  }
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  /**
42
 
43
  // Return a fulfilled promise and immediately invoke any callbacks.
44
  if ($this->state === self::FULFILLED) {
45
+ $promise = Create::promiseFor($this->result);
46
+ return $onFulfilled ? $promise->then($onFulfilled) : $promise;
 
47
  }
48
 
49
  // It's either cancelled or rejected, so return a rejected promise
50
  // and immediately invoke any callbacks.
51
+ $rejection = Create::rejectionFor($this->result);
52
  return $onRejected ? $rejection->then(null, $onRejected) : $rejection;
53
  }
54
 
61
  {
62
  $this->waitIfPending();
63
 
64
+ if ($this->result instanceof PromiseInterface) {
65
+ return $this->result->wait($unwrap);
66
+ }
 
67
  if ($unwrap) {
68
+ if ($this->state === self::FULFILLED) {
69
+ return $this->result;
 
 
 
 
 
70
  }
71
+ // It's rejected so "unwrap" and throw an exception.
72
+ throw Create::exceptionFor($this->result);
73
  }
74
  }
75
 
99
  }
100
 
101
  // Reject the promise only if it wasn't rejected in a then callback.
102
+ /** @psalm-suppress RedundantCondition */
103
  if ($this->state === self::PENDING) {
104
  $this->reject(new CancellationException('Promise has been cancelled'));
105
  }
145
 
146
  // If the value was not a settled promise or a thenable, then resolve
147
  // it in the task queue using the correct ID.
148
+ if (!is_object($value) || !method_exists($value, 'then')) {
149
  $id = $state === self::FULFILLED ? 1 : 2;
150
  // It's a success, so resolve the handlers in the queue.
151
+ Utils::queue()->add(static function () use ($id, $value, $handlers) {
152
  foreach ($handlers as $handler) {
153
  self::callHandler($id, $value, $handler);
154
  }
155
  });
156
+ } elseif ($value instanceof Promise && Is::pending($value)) {
 
 
157
  // We can just merge our handlers onto the next promise.
158
  $value->handlers = array_merge($value->handlers, $handlers);
159
  } else {
179
  * @param int $index 1 (resolve) or 2 (reject).
180
  * @param mixed $value Value to pass to the callback.
181
  * @param array $handler Array of handler data (promise and callbacks).
 
 
182
  */
183
  private static function callHandler($index, $value, array $handler)
184
  {
187
 
188
  // The promise may have been cancelled or resolved before placing
189
  // this thunk in the queue.
190
+ if (Is::settled($promise)) {
191
  return;
192
  }
193
 
194
  try {
195
  if (isset($handler[$index])) {
196
+ /*
197
+ * If $f throws an exception, then $handler will be in the exception
198
+ * stack trace. Since $handler contains a reference to the callable
199
+ * itself we get a circular reference. We clear the $handler
200
+ * here to avoid that memory leak.
201
+ */
202
+ $f = $handler[$index];
203
+ unset($handler);
204
+ $promise->resolve($f($value));
205
  } elseif ($index === 1) {
206
  // Forward resolution values as-is.
207
  $promise->resolve($value);
232
  . 'wait on a promise.');
233
  }
234
 
235
+ Utils::queue()->run();
236
 
237
+ /** @psalm-suppress RedundantCondition */
238
  if ($this->state === self::PENDING) {
239
  $this->reject('Invoking the wait callback did not resolve the promise');
240
  }
265
  $this->waitList = null;
266
 
267
  foreach ($waitList as $result) {
268
+ do {
269
  $result->waitIfPending();
270
+ $result = $result->result;
271
+ } while ($result instanceof Promise);
272
 
273
+ if ($result instanceof PromiseInterface) {
274
+ $result->wait(false);
 
 
 
 
 
 
275
  }
276
  }
277
  }
vendor/guzzlehttp/promises/src/PromiseInterface.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  /**
@@ -56,6 +57,7 @@ interface PromiseInterface
56
  * Resolve the promise with the given value.
57
  *
58
  * @param mixed $value
 
59
  * @throws \RuntimeException if the promise is already resolved.
60
  */
61
  public function resolve($value);
@@ -64,6 +66,7 @@ interface PromiseInterface
64
  * Reject the promise with the given reason.
65
  *
66
  * @param mixed $reason
 
67
  * @throws \RuntimeException if the promise is already resolved.
68
  */
69
  public function reject($reason);
@@ -86,6 +89,7 @@ interface PromiseInterface
86
  * @param bool $unwrap
87
  *
88
  * @return mixed
 
89
  * @throws \LogicException if the promise has no wait function or if the
90
  * promise does not settle after waiting.
91
  */
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  /**
57
  * Resolve the promise with the given value.
58
  *
59
  * @param mixed $value
60
+ *
61
  * @throws \RuntimeException if the promise is already resolved.
62
  */
63
  public function resolve($value);
66
  * Reject the promise with the given reason.
67
  *
68
  * @param mixed $reason
69
+ *
70
  * @throws \RuntimeException if the promise is already resolved.
71
  */
72
  public function reject($reason);
89
  * @param bool $unwrap
90
  *
91
  * @return mixed
92
+ *
93
  * @throws \LogicException if the promise has no wait function or if the
94
  * promise does not settle after waiting.
95
  */
vendor/guzzlehttp/promises/src/PromisorInterface.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  /**
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  /**
vendor/guzzlehttp/promises/src/RejectedPromise.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  /**
@@ -13,9 +14,10 @@ class RejectedPromise implements PromiseInterface
13
 
14
  public function __construct($reason)
15
  {
16
- if (method_exists($reason, 'then')) {
17
  throw new \InvalidArgumentException(
18
- 'You cannot create a RejectedPromise with a promise.');
 
19
  }
20
 
21
  $this->reason = $reason;
@@ -30,11 +32,11 @@ class RejectedPromise implements PromiseInterface
30
  return $this;
31
  }
32
 
33
- $queue = queue();
34
  $reason = $this->reason;
35
  $p = new Promise([$queue, 'run']);
36
  $queue->add(static function () use ($p, $reason, $onRejected) {
37
- if ($p->getState() === self::PENDING) {
38
  try {
39
  // Return a resolved promise if onRejected does not throw.
40
  $p->resolve($onRejected($reason));
@@ -59,8 +61,10 @@ class RejectedPromise implements PromiseInterface
59
  public function wait($unwrap = true, $defaultDelivery = null)
60
  {
61
  if ($unwrap) {
62
- throw exception_for($this->reason);
63
  }
 
 
64
  }
65
 
66
  public function getState()
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  /**
14
 
15
  public function __construct($reason)
16
  {
17
+ if (is_object($reason) && method_exists($reason, 'then')) {
18
  throw new \InvalidArgumentException(
19
+ 'You cannot create a RejectedPromise with a promise.'
20
+ );
21
  }
22
 
23
  $this->reason = $reason;
32
  return $this;
33
  }
34
 
35
+ $queue = Utils::queue();
36
  $reason = $this->reason;
37
  $p = new Promise([$queue, 'run']);
38
  $queue->add(static function () use ($p, $reason, $onRejected) {
39
+ if (Is::pending($p)) {
40
  try {
41
  // Return a resolved promise if onRejected does not throw.
42
  $p->resolve($onRejected($reason));
61
  public function wait($unwrap = true, $defaultDelivery = null)
62
  {
63
  if ($unwrap) {
64
+ throw Create::exceptionFor($this->reason);
65
  }
66
+
67
+ return null;
68
  }
69
 
70
  public function getState()
vendor/guzzlehttp/promises/src/RejectionException.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  /**
@@ -12,7 +13,7 @@ class RejectionException extends \RuntimeException
12
  private $reason;
13
 
14
  /**
15
- * @param mixed $reason Rejection reason.
16
  * @param string $description Optional description
17
  */
18
  public function __construct($reason, $description = null)
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  /**
13
  private $reason;
14
 
15
  /**
16
+ * @param mixed $reason Rejection reason.
17
  * @param string $description Optional description
18
  */
19
  public function __construct($reason, $description = null)
vendor/guzzlehttp/promises/src/TaskQueue.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  /**
@@ -8,7 +9,7 @@ namespace GuzzleHttp\Promise;
8
  * maintains a constant stack size. You can use the task queue asynchronously
9
  * by calling the `run()` function of the global task queue in an event loop.
10
  *
11
- * GuzzleHttp\Promise\queue()->run();
12
  */
13
  class TaskQueue implements TaskQueueInterface
14
  {
@@ -42,8 +43,8 @@ class TaskQueue implements TaskQueueInterface
42
 
43
  public function run()
44
  {
45
- /** @var callable $task */
46
  while ($task = array_shift($this->queue)) {
 
47
  $task();
48
  }
49
  }
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  /**
9
  * maintains a constant stack size. You can use the task queue asynchronously
10
  * by calling the `run()` function of the global task queue in an event loop.
11
  *
12
+ * GuzzleHttp\Promise\Utils::queue()->run();
13
  */
14
  class TaskQueue implements TaskQueueInterface
15
  {
43
 
44
  public function run()
45
  {
 
46
  while ($task = array_shift($this->queue)) {
47
+ /** @var callable $task */
48
  $task();
49
  }
50
  }
vendor/guzzlehttp/promises/src/TaskQueueInterface.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  interface TaskQueueInterface
@@ -13,8 +14,6 @@ interface TaskQueueInterface
13
  /**
14
  * Adds a task to the queue that will be executed the next time run is
15
  * called.
16
- *
17
- * @param callable $task
18
  */
19
  public function add(callable $task);
20
 
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  interface TaskQueueInterface
14
  /**
15
  * Adds a task to the queue that will be executed the next time run is
16
  * called.
 
 
17
  */
18
  public function add(callable $task);
19
 
vendor/guzzlehttp/promises/src/Utils.php ADDED
@@ -0,0 +1,274 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace GuzzleHttp\Promise;
4
+
5
+ final class Utils
6
+ {
7
+ /**
8
+ * Get the global task queue used for promise resolution.
9
+ *
10
+ * This task queue MUST be run in an event loop in order for promises to be
11
+ * settled asynchronously. It will be automatically run when synchronously
12
+ * waiting on a promise.
13
+ *
14
+ * <code>
15
+ * while ($eventLoop->isRunning()) {
16
+ * GuzzleHttp\Promise\Utils::queue()->run();
17
+ * }
18
+ * </code>
19
+ *
20
+ * @param TaskQueueInterface $assign Optionally specify a new queue instance.
21
+ *
22
+ * @return TaskQueueInterface
23
+ */
24
+ public static function queue(TaskQueueInterface $assign = null)
25
+ {
26
+ static $queue;
27
+
28
+ if ($assign) {
29
+ $queue = $assign;
30
+ } elseif (!$queue) {
31
+ $queue = new TaskQueue();
32
+ }
33
+
34
+ return $queue;
35
+ }
36
+
37
+ /**
38
+ * Adds a function to run in the task queue when it is next `run()` and
39
+ * returns a promise that is fulfilled or rejected with the result.
40
+ *
41
+ * @param callable $task Task function to run.
42
+ *
43
+ * @return PromiseInterface
44
+ */
45
+ public static function task(callable $task)
46
+ {
47
+ $queue = self::queue();
48
+ $promise = new Promise([$queue, 'run']);
49
+ $queue->add(function () use ($task, $promise) {
50
+ try {
51
+ $promise->resolve($task());
52
+ } catch (\Throwable $e) {
53
+ $promise->reject($e);
54
+ } catch (\Exception $e) {
55
+ $promise->reject($e);
56
+ }
57
+ });
58
+
59
+ return $promise;
60
+ }
61
+
62
+ /**
63
+ * Synchronously waits on a promise to resolve and returns an inspection
64
+ * state array.
65
+ *
66
+ * Returns a state associative array containing a "state" key mapping to a
67
+ * valid promise state. If the state of the promise is "fulfilled", the
68
+ * array will contain a "value" key mapping to the fulfilled value of the
69
+ * promise. If the promise is rejected, the array will contain a "reason"
70
+ * key mapping to the rejection reason of the promise.
71
+ *
72
+ * @param PromiseInterface $promise Promise or value.
73
+ *
74
+ * @return array
75
+ */
76
+ public static function inspect(PromiseInterface $promise)
77
+ {
78
+ try {
79
+ return [
80
+ 'state' => PromiseInterface::FULFILLED,
81
+ 'value' => $promise->wait()
82
+ ];
83
+ } catch (RejectionException $e) {
84
+ return ['state' => PromiseInterface::REJECTED, 'reason' => $e->getReason()];
85
+ } catch (\Throwable $e) {
86
+ return ['state' => PromiseInterface::REJECTED, 'reason' => $e];
87
+ } catch (\Exception $e) {
88
+ return ['state' => PromiseInterface::REJECTED, 'reason' => $e];
89
+ }
90
+ }
91
+
92
+ /**
93
+ * Waits on all of the provided promises, but does not unwrap rejected
94
+ * promises as thrown exception.
95
+ *
96
+ * Returns an array of inspection state arrays.
97
+ *
98
+ * @see inspect for the inspection state array format.
99
+ *
100
+ * @param PromiseInterface[] $promises Traversable of promises to wait upon.
101
+ *
102
+ * @return array
103
+ */
104
+ public static function inspectAll($promises)
105
+ {
106
+ $results = [];
107
+ foreach ($promises as $key => $promise) {
108
+ $results[$key] = inspect($promise);
109
+ }
110
+
111
+ return $results;
112
+ }
113
+
114
+ /**
115
+ * Waits on all of the provided promises and returns the fulfilled values.
116
+ *
117
+ * Returns an array that contains the value of each promise (in the same
118
+ * order the promises were provided). An exception is thrown if any of the
119
+ * promises are rejected.
120
+ *
121
+ * @param iterable<PromiseInterface> $promises Iterable of PromiseInterface objects to wait on.
122
+ *
123
+ * @return array
124
+ *
125
+ * @throws \Exception on error
126
+ * @throws \Throwable on error in PHP >=7
127
+ */
128
+ public static function unwrap($promises)
129
+ {
130
+ $results = [];
131
+ foreach ($promises as $key => $promise) {
132
+ $results[$key] = $promise->wait();
133
+ }
134
+
135
+ return $results;
136
+ }
137
+
138
+ /**
139
+ * Given an array of promises, return a promise that is fulfilled when all
140
+ * the items in the array are fulfilled.
141
+ *
142
+ * The promise's fulfillment value is an array with fulfillment values at
143
+ * respective positions to the original array. If any promise in the array
144
+ * rejects, the returned promise is rejected with the rejection reason.
145
+ *
146
+ * @param mixed $promises Promises or values.
147
+ * @param bool $recursive If true, resolves new promises that might have been added to the stack during its own resolution.
148
+ *
149
+ * @return PromiseInterface
150
+ */
151
+ public static function all($promises, $recursive = false)
152
+ {
153
+ $results = [];
154
+ $promise = Each::of(
155
+ $promises,
156
+ function ($value, $idx) use (&$results) {
157
+ $results[$idx] = $value;
158
+ },
159
+ function ($reason, $idx, Promise $aggregate) {
160
+ $aggregate->reject($reason);
161
+ }
162
+ )->then(function () use (&$results) {
163
+ ksort($results);
164
+ return $results;
165
+ });
166
+
167
+ if (true === $recursive) {
168
+ $promise = $promise->then(function ($results) use ($recursive, &$promises) {
169
+ foreach ($promises as $promise) {
170
+ if (Is::pending($promise)) {
171
+ return self::all($promises, $recursive);
172
+ }
173
+ }
174
+ return $results;
175
+ });
176
+ }
177
+
178
+ return $promise;
179
+ }
180
+
181
+ /**
182
+ * Initiate a competitive race between multiple promises or values (values
183
+ * will become immediately fulfilled promises).
184
+ *
185
+ * When count amount of promises have been fulfilled, the returned promise
186
+ * is fulfilled with an array that contains the fulfillment values of the
187
+ * winners in order of resolution.
188
+ *
189
+ * This promise is rejected with a {@see AggregateException} if the number
190
+ * of fulfilled promises is less than the desired $count.
191
+ *
192
+ * @param int $count Total number of promises.
193
+ * @param mixed $promises Promises or values.
194
+ *
195
+ * @return PromiseInterface
196
+ */
197
+ public static function some($count, $promises)
198
+ {
199
+ $results = [];
200
+ $rejections = [];
201
+
202
+ return Each::of(
203
+ $promises,
204
+ function ($value, $idx, PromiseInterface $p) use (&$results, $count) {
205
+ if (Is::settled($p)) {
206
+ return;
207
+ }
208
+ $results[$idx] = $value;
209
+ if (count($results) >= $count) {
210
+ $p->resolve(null);
211
+ }
212
+ },
213
+ function ($reason) use (&$rejections) {
214
+ $rejections[] = $reason;
215
+ }
216
+ )->then(
217
+ function () use (&$results, &$rejections, $count) {
218
+ if (count($results) !== $count) {
219
+ throw new AggregateException(
220
+ 'Not enough promises to fulfill count',
221
+ $rejections
222
+ );
223
+ }
224
+ ksort($results);
225
+ return array_values($results);
226
+ }
227
+ );
228
+ }
229
+
230
+ /**
231
+ * Like some(), with 1 as count. However, if the promise fulfills, the
232
+ * fulfillment value is not an array of 1 but the value directly.
233
+ *
234
+ * @param mixed $promises Promises or values.
235
+ *
236
+ * @return PromiseInterface
237
+ */
238
+ public static function any($promises)
239
+ {
240
+ return self::some(1, $promises)->then(function ($values) {
241
+ return $values[0];
242
+ });
243
+ }
244
+
245
+ /**
246
+ * Returns a promise that is fulfilled when all of the provided promises have
247
+ * been fulfilled or rejected.
248
+ *
249
+ * The returned promise is fulfilled with an array of inspection state arrays.
250
+ *
251
+ * @see inspect for the inspection state array format.
252
+ *
253
+ * @param mixed $promises Promises or values.
254
+ *
255
+ * @return PromiseInterface
256
+ */
257
+ public static function settle($promises)
258
+ {
259
+ $results = [];
260
+
261
+ return Each::of(
262
+ $promises,
263
+ function ($value, $idx) use (&$results) {
264
+ $results[$idx] = ['state' => PromiseInterface::FULFILLED, 'value' => $value];
265
+ },
266
+ function ($reason, $idx) use (&$results) {
267
+ $results[$idx] = ['state' => PromiseInterface::REJECTED, 'reason' => $reason];
268
+ }
269
+ )->then(function () use (&$results) {
270
+ ksort($results);
271
+ return $results;
272
+ });
273
+ }
274
+ }
vendor/guzzlehttp/promises/src/functions.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Promise;
3
 
4
  /**
@@ -17,18 +18,12 @@ namespace GuzzleHttp\Promise;
17
  * @param TaskQueueInterface $assign Optionally specify a new queue instance.
18
  *
19
  * @return TaskQueueInterface
 
 
20
  */
21
  function queue(TaskQueueInterface $assign = null)
22
  {
23
- static $queue;
24
-
25
- if ($assign) {
26
- $queue = $assign;
27
- } elseif (!$queue) {
28
- $queue = new TaskQueue();
29
- }
30
-
31
- return $queue;
32
  }
33
 
34
  /**
@@ -38,22 +33,12 @@ function queue(TaskQueueInterface $assign = null)
38
  * @param callable $task Task function to run.
39
  *
40
  * @return PromiseInterface
 
 
41
  */
42
  function task(callable $task)
43
  {
44
- $queue = queue();
45
- $promise = new Promise([$queue, 'run']);
46
- $queue->add(function () use ($task, $promise) {
47
- try {
48
- $promise->resolve($task());
49
- } catch (\Throwable $e) {
50
- $promise->reject($e);
51
- } catch (\Exception $e) {
52
- $promise->reject($e);
53
- }
54
- });
55
-
56
- return $promise;
57
  }
58
 
59
  /**
@@ -62,23 +47,12 @@ function task(callable $task)
62
  * @param mixed $value Promise or value.
63
  *
64
  * @return PromiseInterface
 
 
65
  */
66
  function promise_for($value)
67
  {
68
- if ($value instanceof PromiseInterface) {
69
- return $value;
70
- }
71
-
72
- // Return a Guzzle promise that shadows the given promise.
73
- if (method_exists($value, 'then')) {
74
- $wfn = method_exists($value, 'wait') ? [$value, 'wait'] : null;
75
- $cfn = method_exists($value, 'cancel') ? [$value, 'cancel'] : null;
76
- $promise = new Promise($wfn, $cfn);
77
- $value->then([$promise, 'resolve'], [$promise, 'reject']);
78
- return $promise;
79
- }
80
-
81
- return new FulfilledPromise($value);
82
  }
83
 
84
  /**
@@ -88,14 +62,12 @@ function promise_for($value)
88
  * @param mixed $reason Promise or reason.
89
  *
90
  * @return PromiseInterface
 
 
91
  */
92
  function rejection_for($reason)
93
  {
94
- if ($reason instanceof PromiseInterface) {
95
- return $reason;
96
- }
97
-
98
- return new RejectedPromise($reason);
99
  }
100
 
101
  /**
@@ -104,12 +76,12 @@ function rejection_for($reason)
104
  * @param mixed $reason
105
  *
106
  * @return \Exception|\Throwable
 
 
107
  */
108
  function exception_for($reason)
109
  {
110
- return $reason instanceof \Exception || $reason instanceof \Throwable
111
- ? $reason
112
- : new RejectionException($reason);
113
  }
114
 
115
  /**
@@ -118,16 +90,12 @@ function exception_for($reason)
118
  * @param mixed $value
119
  *
120
  * @return \Iterator
 
 
121
  */
122
  function iter_for($value)
123
  {
124
- if ($value instanceof \Iterator) {
125
- return $value;
126
- } elseif (is_array($value)) {
127
- return new \ArrayIterator($value);
128
- } else {
129
- return new \ArrayIterator([$value]);
130
- }
131
  }
132
 
133
  /**
@@ -143,21 +111,12 @@ function iter_for($value)
143
  * @param PromiseInterface $promise Promise or value.
144
  *
145
  * @return array
 
 
146
  */
147
  function inspect(PromiseInterface $promise)
148
  {
149
- try {
150
- return [
151
- 'state' => PromiseInterface::FULFILLED,
152
- 'value' => $promise->wait()
153
- ];
154
- } catch (RejectionException $e) {
155
- return ['state' => PromiseInterface::REJECTED, 'reason' => $e->getReason()];
156
- } catch (\Throwable $e) {
157
- return ['state' => PromiseInterface::REJECTED, 'reason' => $e];
158
- } catch (\Exception $e) {
159
- return ['state' => PromiseInterface::REJECTED, 'reason' => $e];
160
- }
161
  }
162
 
163
  /**
@@ -166,19 +125,17 @@ function inspect(PromiseInterface $promise)
166
  *
167
  * Returns an array of inspection state arrays.
168
  *
 
 
169
  * @param PromiseInterface[] $promises Traversable of promises to wait upon.
170
  *
171
  * @return array
172
- * @see GuzzleHttp\Promise\inspect for the inspection state array format.
 
173
  */
174
  function inspect_all($promises)
175
  {
176
- $results = [];
177
- foreach ($promises as $key => $promise) {
178
- $results[$key] = inspect($promise);
179
- }
180
-
181
- return $results;
182
  }
183
 
184
  /**
@@ -188,20 +145,18 @@ function inspect_all($promises)
188
  * the promises were provided). An exception is thrown if any of the promises
189
  * are rejected.
190
  *
191
- * @param mixed $promises Iterable of PromiseInterface objects to wait on.
192
  *
193
  * @return array
 
194
  * @throws \Exception on error
195
  * @throws \Throwable on error in PHP >=7
 
 
196
  */
197
  function unwrap($promises)
198
  {
199
- $results = [];
200
- foreach ($promises as $key => $promise) {
201
- $results[$key] = $promise->wait();
202
- }
203
-
204
- return $results;
205
  }
206
 
207
  /**
@@ -212,39 +167,16 @@ function unwrap($promises)
212
  * respective positions to the original array. If any promise in the array
213
  * rejects, the returned promise is rejected with the rejection reason.
214
  *
215
- * @param mixed $promises Promises or values.
216
- * @param bool $recursive - If true, resolves new promises that might have been added to the stack during its own resolution.
217
  *
218
  * @return PromiseInterface
 
 
219
  */
220
  function all($promises, $recursive = false)
221
  {
222
- $results = [];
223
- $promise = \GuzzleHttp\Promise\each(
224
- $promises,
225
- function ($value, $idx) use (&$results) {
226
- $results[$idx] = $value;
227
- },
228
- function ($reason, $idx, Promise $aggregate) {
229
- $aggregate->reject($reason);
230
- }
231
- )->then(function () use (&$results) {
232
- ksort($results);
233
- return $results;
234
- });
235
-
236
- if (true === $recursive) {
237
- $promise = $promise->then(function ($results) use ($recursive, &$promises) {
238
- foreach ($promises AS $promise) {
239
- if (\GuzzleHttp\Promise\PromiseInterface::PENDING === $promise->getState()) {
240
- return all($promises, $recursive);
241
- }
242
- }
243
- return $results;
244
- });
245
- }
246
-
247
- return $promise;
248
  }
249
 
250
  /**
@@ -255,45 +187,19 @@ function all($promises, $recursive = false)
255
  * fulfilled with an array that contains the fulfillment values of the winners
256
  * in order of resolution.
257
  *
258
- * This promise is rejected with a {@see GuzzleHttp\Promise\AggregateException}
259
- * if the number of fulfilled promises is less than the desired $count.
260
  *
261
  * @param int $count Total number of promises.
262
  * @param mixed $promises Promises or values.
263
  *
264
  * @return PromiseInterface
 
 
265
  */
266
  function some($count, $promises)
267
  {
268
- $results = [];
269
- $rejections = [];
270
-
271
- return \GuzzleHttp\Promise\each(
272
- $promises,
273
- function ($value, $idx, PromiseInterface $p) use (&$results, $count) {
274
- if ($p->getState() !== PromiseInterface::PENDING) {
275
- return;
276
- }
277
- $results[$idx] = $value;
278
- if (count($results) >= $count) {
279
- $p->resolve(null);
280
- }
281
- },
282
- function ($reason) use (&$rejections) {
283
- $rejections[] = $reason;
284
- }
285
- )->then(
286
- function () use (&$results, &$rejections, $count) {
287
- if (count($results) !== $count) {
288
- throw new AggregateException(
289
- 'Not enough promises to fulfill count',
290
- $rejections
291
- );
292
- }
293
- ksort($results);
294
- return array_values($results);
295
- }
296
- );
297
  }
298
 
299
  /**
@@ -303,10 +209,12 @@ function some($count, $promises)
303
  * @param mixed $promises Promises or values.
304
  *
305
  * @return PromiseInterface
 
 
306
  */
307
  function any($promises)
308
  {
309
- return some(1, $promises)->then(function ($values) { return $values[0]; });
310
  }
311
 
312
  /**
@@ -315,27 +223,17 @@ function any($promises)
315
  *
316
  * The returned promise is fulfilled with an array of inspection state arrays.
317
  *
 
 
318
  * @param mixed $promises Promises or values.
319
  *
320
  * @return PromiseInterface
321
- * @see GuzzleHttp\Promise\inspect for the inspection state array format.
 
322
  */
323
  function settle($promises)
324
  {
325
- $results = [];
326
-
327
- return \GuzzleHttp\Promise\each(
328
- $promises,
329
- function ($value, $idx) use (&$results) {
330
- $results[$idx] = ['state' => PromiseInterface::FULFILLED, 'value' => $value];
331
- },
332
- function ($reason, $idx) use (&$results) {
333
- $results[$idx] = ['state' => PromiseInterface::REJECTED, 'reason' => $reason];
334
- }
335
- )->then(function () use (&$results) {
336
- ksort($results);
337
- return $results;
338
- });
339
  }
340
 
341
  /**
@@ -343,29 +241,28 @@ function settle($promises)
343
  * fulfilled with a null value when the iterator has been consumed or the
344
  * aggregate promise has been fulfilled or rejected.
345
  *
346
- * $onFulfilled is a function that accepts the fulfilled value, iterator
347
- * index, and the aggregate promise. The callback can invoke any necessary side
348
- * effects and choose to resolve or reject the aggregate promise if needed.
349
  *
350
- * $onRejected is a function that accepts the rejection reason, iterator
351
- * index, and the aggregate promise. The callback can invoke any necessary side
352
- * effects and choose to resolve or reject the aggregate promise if needed.
353
  *
354
  * @param mixed $iterable Iterator or array to iterate over.
355
  * @param callable $onFulfilled
356
  * @param callable $onRejected
357
  *
358
  * @return PromiseInterface
 
 
359
  */
360
  function each(
361
  $iterable,
362
  callable $onFulfilled = null,
363
  callable $onRejected = null
364
  ) {
365
- return (new EachPromise($iterable, [
366
- 'fulfilled' => $onFulfilled,
367
- 'rejected' => $onRejected
368
- ]))->promise();
369
  }
370
 
371
  /**
@@ -382,6 +279,8 @@ function each(
382
  * @param callable $onRejected
383
  *
384
  * @return PromiseInterface
 
 
385
  */
386
  function each_limit(
387
  $iterable,
@@ -389,11 +288,7 @@ function each_limit(
389
  callable $onFulfilled = null,
390
  callable $onRejected = null
391
  ) {
392
- return (new EachPromise($iterable, [
393
- 'fulfilled' => $onFulfilled,
394
- 'rejected' => $onRejected,
395
- 'concurrency' => $concurrency
396
- ]))->promise();
397
  }
398
 
399
  /**
@@ -406,66 +301,63 @@ function each_limit(
406
  * @param callable $onFulfilled
407
  *
408
  * @return PromiseInterface
 
 
409
  */
410
  function each_limit_all(
411
  $iterable,
412
  $concurrency,
413
  callable $onFulfilled = null
414
  ) {
415
- return each_limit(
416
- $iterable,
417
- $concurrency,
418
- $onFulfilled,
419
- function ($reason, $idx, PromiseInterface $aggregate) {
420
- $aggregate->reject($reason);
421
- }
422
- );
423
  }
424
 
425
  /**
426
  * Returns true if a promise is fulfilled.
427
  *
428
- * @param PromiseInterface $promise
429
- *
430
  * @return bool
 
 
431
  */
432
  function is_fulfilled(PromiseInterface $promise)
433
  {
434
- return $promise->getState() === PromiseInterface::FULFILLED;
435
  }
436
 
437
  /**
438
  * Returns true if a promise is rejected.
439
  *
440
- * @param PromiseInterface $promise
441
- *
442
  * @return bool
 
 
443
  */
444
  function is_rejected(PromiseInterface $promise)
445
  {
446
- return $promise->getState() === PromiseInterface::REJECTED;
447
  }
448
 
449
  /**
450
  * Returns true if a promise is fulfilled or rejected.
451
  *
452
- * @param PromiseInterface $promise
453
- *
454
  * @return bool
 
 
455
  */
456
  function is_settled(PromiseInterface $promise)
457
  {
458
- return $promise->getState() !== PromiseInterface::PENDING;
459
  }
460
 
461
  /**
462
- * @see Coroutine
463
  *
464
- * @param callable $generatorFn
465
  *
466
  * @return PromiseInterface
 
 
467
  */
468
  function coroutine(callable $generatorFn)
469
  {
470
- return new Coroutine($generatorFn);
471
  }
1
  <?php
2
+
3
  namespace GuzzleHttp\Promise;
4
 
5
  /**
18
  * @param TaskQueueInterface $assign Optionally specify a new queue instance.
19
  *
20
  * @return TaskQueueInterface
21
+ *
22
+ * @deprecated queue will be removed in guzzlehttp/promises:2.0. Use Utils::queue instead.
23
  */
24
  function queue(TaskQueueInterface $assign = null)
25
  {
26
+ return Utils::queue($assign);
 
 
 
 
 
 
 
 
27
  }
28
 
29
  /**
33
  * @param callable $task Task function to run.
34
  *
35
  * @return PromiseInterface
36
+ *
37
+ * @deprecated task will be removed in guzzlehttp/promises:2.0. Use Utils::task instead.
38
  */
39
  function task(callable $task)
40
  {
41
+ return Utils::task($task);
 
 
 
 
 
 
 
 
 
 
 
 
42
  }
43
 
44
  /**
47
  * @param mixed $value Promise or value.
48
  *
49
  * @return PromiseInterface
50
+ *
51
+ * @deprecated promise_for will be removed in guzzlehttp/promises:2.0. Use Create::promiseFor instead.
52
  */
53
  function promise_for($value)
54
  {
55
+ return Create::promiseFor($value);
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  }
57
 
58
  /**
62
  * @param mixed $reason Promise or reason.
63
  *
64
  * @return PromiseInterface
65
+ *
66
+ * @deprecated rejection_for will be removed in guzzlehttp/promises:2.0. Use Create::rejectionFor instead.
67
  */
68
  function rejection_for($reason)
69
  {
70
+ return Create::rejectionFor($reason);
 
 
 
 
71
  }
72
 
73
  /**
76
  * @param mixed $reason
77
  *
78
  * @return \Exception|\Throwable
79
+ *
80
+ * @deprecated exception_for will be removed in guzzlehttp/promises:2.0. Use Create::exceptionFor instead.
81
  */
82
  function exception_for($reason)
83
  {
84
+ return Create::exceptionFor($reason);
 
 
85
  }
86
 
87
  /**
90
  * @param mixed $value
91
  *
92
  * @return \Iterator
93
+ *
94
+ * @deprecated iter_for will be removed in guzzlehttp/promises:2.0. Use Create::iterFor instead.
95
  */
96
  function iter_for($value)
97
  {
98
+ return Create::iterFor($value);
 
 
 
 
 
 
99
  }
100
 
101
  /**
111
  * @param PromiseInterface $promise Promise or value.
112
  *
113
  * @return array
114
+ *
115
+ * @deprecated inspect will be removed in guzzlehttp/promises:2.0. Use Utils::inspect instead.
116
  */
117
  function inspect(PromiseInterface $promise)
118
  {
119
+ return Utils::inspect($promise);
 
 
 
 
 
 
 
 
 
 
 
120
  }
121
 
122
  /**
125
  *
126
  * Returns an array of inspection state arrays.
127
  *
128
+ * @see inspect for the inspection state array format.
129
+ *
130
  * @param PromiseInterface[] $promises Traversable of promises to wait upon.
131
  *
132
  * @return array
133
+ *
134
+ * @deprecated inspect will be removed in guzzlehttp/promises:2.0. Use Utils::inspectAll instead.
135
  */
136
  function inspect_all($promises)
137
  {
138
+ return Utils::inspectAll($promises);
 
 
 
 
 
139
  }
140
 
141
  /**
145
  * the promises were provided). An exception is thrown if any of the promises
146
  * are rejected.
147
  *
148
+ * @param iterable<PromiseInterface> $promises Iterable of PromiseInterface objects to wait on.
149
  *
150
  * @return array
151
+ *
152
  * @throws \Exception on error
153
  * @throws \Throwable on error in PHP >=7
154
+ *
155
+ * @deprecated unwrap will be removed in guzzlehttp/promises:2.0. Use Utils::unwrap instead.
156
  */
157
  function unwrap($promises)
158
  {
159
+ return Utils::unwrap($promises);
 
 
 
 
 
160
  }
161
 
162
  /**
167
  * respective positions to the original array. If any promise in the array
168
  * rejects, the returned promise is rejected with the rejection reason.
169
  *
170
+ * @param mixed $promises Promises or values.
171
+ * @param bool $recursive If true, resolves new promises that might have been added to the stack during its own resolution.
172
  *
173
  * @return PromiseInterface
174
+ *
175
+ * @deprecated all will be removed in guzzlehttp/promises:2.0. Use Utils::all instead.
176
  */
177
  function all($promises, $recursive = false)
178
  {
179
+ return Utils::all($promises, $recursive);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
  }
181
 
182
  /**
187
  * fulfilled with an array that contains the fulfillment values of the winners
188
  * in order of resolution.
189
  *
190
+ * This promise is rejected with a {@see AggregateException} if the number of
191
+ * fulfilled promises is less than the desired $count.
192
  *
193
  * @param int $count Total number of promises.
194
  * @param mixed $promises Promises or values.
195
  *
196
  * @return PromiseInterface
197
+ *
198
+ * @deprecated some will be removed in guzzlehttp/promises:2.0. Use Utils::some instead.
199
  */
200
  function some($count, $promises)
201
  {
202
+ return Utils::some($count, $promises);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  }
204
 
205
  /**
209
  * @param mixed $promises Promises or values.
210
  *
211
  * @return PromiseInterface
212
+ *
213
+ * @deprecated any will be removed in guzzlehttp/promises:2.0. Use Utils::any instead.
214
  */
215
  function any($promises)
216
  {
217
+ return Utils::any($promises);
218
  }
219
 
220
  /**
223
  *
224
  * The returned promise is fulfilled with an array of inspection state arrays.
225
  *
226
+ * @see inspect for the inspection state array format.
227
+ *
228
  * @param mixed $promises Promises or values.
229
  *
230
  * @return PromiseInterface
231
+ *
232
+ * @deprecated settle will be removed in guzzlehttp/promises:2.0. Use Utils::settle instead.
233
  */
234
  function settle($promises)
235
  {
236
+ return Utils::settle($promises);
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  }
238
 
239
  /**
241
  * fulfilled with a null value when the iterator has been consumed or the
242
  * aggregate promise has been fulfilled or rejected.
243
  *
244
+ * $onFulfilled is a function that accepts the fulfilled value, iterator index,
245
+ * and the aggregate promise. The callback can invoke any necessary side
246
+ * effects and choose to resolve or reject the aggregate if needed.
247
  *
248
+ * $onRejected is a function that accepts the rejection reason, iterator index,
249
+ * and the aggregate promise. The callback can invoke any necessary side
250
+ * effects and choose to resolve or reject the aggregate if needed.
251
  *
252
  * @param mixed $iterable Iterator or array to iterate over.
253
  * @param callable $onFulfilled
254
  * @param callable $onRejected
255
  *
256
  * @return PromiseInterface
257
+ *
258
+ * @deprecated each will be removed in guzzlehttp/promises:2.0. Use Each::of instead.
259
  */
260
  function each(
261
  $iterable,
262
  callable $onFulfilled = null,
263
  callable $onRejected = null
264
  ) {
265
+ return Each::of($iterable, $onFulfilled, $onRejected);
 
 
 
266
  }
267
 
268
  /**
279
  * @param callable $onRejected
280
  *
281
  * @return PromiseInterface
282
+ *
283
+ * @deprecated each_limit will be removed in guzzlehttp/promises:2.0. Use Each::ofLimit instead.
284
  */
285
  function each_limit(
286
  $iterable,
288
  callable $onFulfilled = null,
289
  callable $onRejected = null
290
  ) {
291
+ return Each::ofLimit($iterable, $concurrency, $onFulfilled, $onRejected);
 
 
 
 
292
  }
293
 
294
  /**
301
  * @param callable $onFulfilled
302
  *
303
  * @return PromiseInterface
304
+ *
305
+ * @deprecated each_limit_all will be removed in guzzlehttp/promises:2.0. Use Each::ofLimitAll instead.
306
  */
307
  function each_limit_all(
308
  $iterable,
309
  $concurrency,
310
  callable $onFulfilled = null
311
  ) {
312
+ return Each::ofLimitAll($iterable, $concurrency, $onFulfilled);
 
 
 
 
 
 
 
313
  }
314
 
315
  /**
316
  * Returns true if a promise is fulfilled.
317
  *
 
 
318
  * @return bool
319
+ *
320
+ * @deprecated is_fulfilled will be removed in guzzlehttp/promises:2.0. Use Is::fulfilled instead.
321
  */
322
  function is_fulfilled(PromiseInterface $promise)
323
  {
324
+ return Is::fulfilled($promise);
325
  }
326
 
327
  /**
328
  * Returns true if a promise is rejected.
329
  *
 
 
330
  * @return bool
331
+ *
332
+ * @deprecated is_rejected will be removed in guzzlehttp/promises:2.0. Use Is::rejected instead.
333
  */
334
  function is_rejected(PromiseInterface $promise)
335
  {
336
+ return Is::rejected($promise);
337
  }
338
 
339
  /**
340
  * Returns true if a promise is fulfilled or rejected.
341
  *
 
 
342
  * @return bool
343
+ *
344
+ * @deprecated is_settled will be removed in guzzlehttp/promises:2.0. Use Is::settled instead.
345
  */
346
  function is_settled(PromiseInterface $promise)
347
  {
348
+ return Is::settled($promise);
349
  }
350
 
351
  /**
352
+ * Create a new coroutine.
353
  *
354
+ * @see Coroutine
355
  *
356
  * @return PromiseInterface
357
+ *
358
+ * @deprecated coroutine will be removed in guzzlehttp/promises:2.0. Use Coroutine::of instead.
359
  */
360
  function coroutine(callable $generatorFn)
361
  {
362
+ return Coroutine::of($generatorFn);
363
  }
vendor/guzzlehttp/psr7/CHANGELOG.md ADDED
@@ -0,0 +1,270 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Change Log
2
+
3
+
4
+ All notable changes to this project will be documented in this file.
5
+
6
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
7
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
8
+
9
+
10
+ ## [Unreleased]
11
+
12
+ ## [1.7.0] - 2020-09-30
13
+
14
+ ### Added
15
+
16
+ - Replaced functions by static methods
17
+
18
+ ### Fixed
19
+
20
+ - Converting a non-seekable stream to a string
21
+ - Handle multiple Set-Cookie correctly
22
+ - Ignore array keys in header values when merging
23
+ - Allow multibyte characters to be parsed in `Message:bodySummary()`
24
+
25
+ ### Changed
26
+
27
+ - Restored partial HHVM 3 support
28
+
29
+
30
+ ## [1.6.1] - 2019-07-02
31
+
32
+ ### Fixed
33
+
34
+ - Accept null and bool header values again
35
+
36
+
37
+ ## [1.6.0] - 2019-06-30
38
+
39
+ ### Added
40
+
41
+ - Allowed version `^3.0` of `ralouphie/getallheaders` dependency (#244)
42
+ - Added MIME type for WEBP image format (#246)
43
+ - Added more validation of values according to PSR-7 and RFC standards, e.g. status code range (#250, #272)
44
+
45
+ ### Changed
46
+
47
+ - Tests don't pass with HHVM 4.0, so HHVM support got dropped. Other libraries like composer have done the same. (#262)
48
+ - Accept port number 0 to be valid (#270)
49
+
50
+ ### Fixed
51
+
52
+ - Fixed subsequent reads from `php://input` in ServerRequest (#247)
53
+ - Fixed readable/writable detection for certain stream modes (#248)
54
+ - Fixed encoding of special characters in the `userInfo` component of an URI (#253)
55
+
56
+
57
+ ## [1.5.2] - 2018-12-04
58
+
59
+ ### Fixed
60
+
61
+ - Check body size when getting the message summary
62
+
63
+
64
+ ## [1.5.1] - 2018-12-04
65
+
66
+ ### Fixed
67
+
68
+ - Get the summary of a body only if it is readable
69
+
70
+
71
+ ## [1.5.0] - 2018-12-03
72
+
73
+ ### Added
74
+
75
+ - Response first-line to response string exception (fixes #145)
76
+ - A test for #129 behavior
77
+ - `get_message_body_summary` function in order to get the message summary
78
+ - `3gp` and `mkv` mime types
79
+
80
+ ### Changed
81
+
82
+ - Clarify exception message when stream is detached
83
+
84
+ ### Deprecated
85
+
86
+ - Deprecated parsing folded header lines as per RFC 7230
87
+
88
+ ### Fixed
89
+
90
+ - Fix `AppendStream::detach` to not close streams
91
+ - `InflateStream` preserves `isSeekable` attribute of the underlying stream
92
+ - `ServerRequest::getUriFromGlobals` to support URLs in query parameters
93
+
94
+
95
+ Several other fixes and improvements.
96
+
97
+
98
+ ## [1.4.2] - 2017-03-20
99
+
100
+ ### Fixed
101
+
102
+ - Reverted BC break to `Uri::resolve` and `Uri::removeDotSegments` by removing
103
+ calls to `trigger_error` when deprecated methods are invoked.
104
+
105
+
106
+ ## [1.4.1] - 2017-02-27
107
+
108
+ ### Added
109
+
110
+ - Rriggering of silenced deprecation warnings.
111
+
112
+ ### Fixed
113
+
114
+ - Reverted BC break by reintroducing behavior to automagically fix a URI with a
115
+ relative path and an authority by adding a leading slash to the path. It's only
116
+ deprecated now.
117
+
118
+
119
+ ## [1.4.0] - 2017-02-21
120
+
121
+ ### Added
122
+
123
+ - Added common URI utility methods based on RFC 3986 (see documentation in the readme):
124
+ - `Uri::isDefaultPort`
125
+ - `Uri::isAbsolute`
126
+ - `Uri::isNetworkPathReference`
127
+ - `Uri::isAbsolutePathReference`
128
+ - `Uri::isRelativePathReference`
129
+ - `Uri::isSameDocumentReference`
130
+ - `Uri::composeComponents`
131
+ - `UriNormalizer::normalize`
132
+ - `UriNormalizer::isEquivalent`
133
+ - `UriResolver::relativize`
134
+
135
+ ### Changed
136
+
137
+ - Ensure `ServerRequest::getUriFromGlobals` returns a URI in absolute form.
138
+ - Allow `parse_response` to parse a response without delimiting space and reason.
139
+ - Ensure each URI modification results in a valid URI according to PSR-7 discussions.
140
+ Invalid modifications will throw an exception instead of returning a wrong URI or
141
+ doing some magic.
142
+ - `(new Uri)->withPath('foo')->withHost('example.com')` will throw an exception
143
+ because the path of a URI with an authority must start with a slash "/" or be empty
144
+ - `(new Uri())->withScheme('http')` will return `'http://localhost'`
145
+
146
+ ### Deprecated
147
+
148
+ - `Uri::resolve` in favor of `UriResolver::resolve`
149
+ - `Uri::removeDotSegments` in favor of `UriResolver::removeDotSegments`
150
+
151
+ ### Fixed
152
+
153
+ - `Stream::read` when length parameter <= 0.
154
+ - `copy_to_stream` reads bytes in chunks instead of `maxLen` into memory.
155
+ - `ServerRequest::getUriFromGlobals` when `Host` header contains port.
156
+ - Compatibility of URIs with `file` scheme and empty host.
157
+
158
+
159
+ ## [1.3.1] - 2016-06-25
160
+
161
+ ### Fixed
162
+
163
+ - `Uri::__toString` for network path references, e.g. `//example.org`.
164
+ - Missing lowercase normalization for host.
165
+ - Handling of URI components in case they are `'0'` in a lot of places,
166
+ e.g. as a user info password.
167
+ - `Uri::withAddedHeader` to correctly merge headers with different case.
168
+ - Trimming of header values in `Uri::withAddedHeader`. Header values may
169
+ be surrounded by whitespace which should be ignored according to RFC 7230
170
+ Section 3.2.4. This does not apply to header names.
171
+ - `Uri::withAddedHeader` with an array of header values.
172
+ - `Uri::resolve` when base path has no slash and handling of fragment.
173
+ - Handling of encoding in `Uri::with(out)QueryValue` so one can pass the
174
+ key/value both in encoded as well as decoded form to those methods. This is
175
+ consistent with withPath, withQuery etc.
176
+ - `ServerRequest::withoutAttribute` when attribute value is null.
177
+
178
+
179
+ ## [1.3.0] - 2016-04-13
180
+
181
+ ### Added
182
+
183
+ - Remaining interfaces needed for full PSR7 compatibility
184
+ (ServerRequestInterface, UploadedFileInterface, etc.).
185
+ - Support for stream_for from scalars.
186
+
187
+ ### Changed
188
+
189
+ - Can now extend Uri.
190
+
191
+ ### Fixed
192
+ - A bug in validating request methods by making it more permissive.
193
+
194
+
195
+ ## [1.2.3] - 2016-02-18
196
+
197
+ ### Fixed
198
+
199
+ - Support in `GuzzleHttp\Psr7\CachingStream` for seeking forward on remote
200
+ streams, which can sometimes return fewer bytes than requested with `fread`.
201
+ - Handling of gzipped responses with FNAME headers.
202
+
203
+
204
+ ## [1.2.2] - 2016-01-22
205
+
206
+ ### Added
207
+
208
+ - Support for URIs without any authority.
209
+ - Support for HTTP 451 'Unavailable For Legal Reasons.'
210
+ - Support for using '0' as a filename.
211
+ - Support for including non-standard ports in Host headers.
212
+
213
+
214
+ ## [1.2.1] - 2015-11-02
215
+
216
+ ### Changes
217
+
218
+ - Now supporting negative offsets when seeking to SEEK_END.
219
+
220
+
221
+ ## [1.2.0] - 2015-08-15
222
+
223
+ ### Changed
224
+
225
+ - Body as `"0"` is now properly added to a response.
226
+ - Now allowing forward seeking in CachingStream.
227
+ - Now properly parsing HTTP requests that contain proxy targets in
228
+ `parse_request`.
229
+ - functions.php is now conditionally required.
230
+ - user-info is no longer dropped when resolving URIs.
231
+
232
+
233
+ ## [1.1.0] - 2015-06-24
234
+
235
+ ### Changed
236
+
237
+ - URIs can now be relative.
238
+ - `multipart/form-data` headers are now overridden case-insensitively.
239
+ - URI paths no longer encode the following characters because they are allowed
240
+ in URIs: "(", ")", "*", "!", "'"
241
+ - A port is no longer added to a URI when the scheme is missing and no port is
242
+ present.
243
+
244
+
245
+ ## 1.0.0 - 2015-05-19
246
+
247
+ Initial release.
248
+
249
+ Currently unsupported:
250
+
251
+ - `Psr\Http\Message\ServerRequestInterface`
252
+ - `Psr\Http\Message\UploadedFileInterface`
253
+
254
+
255
+
256
+ [Unreleased]: https://github.com/guzzle/psr7/compare/1.6.0...HEAD
257
+ [1.6.0]: https://github.com/guzzle/psr7/compare/1.5.2...1.6.0
258
+ [1.5.2]: https://github.com/guzzle/psr7/compare/1.5.1...1.5.2
259
+ [1.5.1]: https://github.com/guzzle/psr7/compare/1.5.0...1.5.1
260
+ [1.5.0]: https://github.com/guzzle/psr7/compare/1.4.2...1.5.0
261
+ [1.4.2]: https://github.com/guzzle/psr7/compare/1.4.1...1.4.2
262
+ [1.4.1]: https://github.com/guzzle/psr7/compare/1.4.0...1.4.1
263
+ [1.4.0]: https://github.com/guzzle/psr7/compare/1.3.1...1.4.0
264
+ [1.3.1]: https://github.com/guzzle/psr7/compare/1.3.0...1.3.1
265
+ [1.3.0]: https://github.com/guzzle/psr7/compare/1.2.3...1.3.0
266
+ [1.2.3]: https://github.com/guzzle/psr7/compare/1.2.2...1.2.3
267
+ [1.2.2]: https://github.com/guzzle/psr7/compare/1.2.1...1.2.2
268
+ [1.2.1]: https://github.com/guzzle/psr7/compare/1.2.0...1.2.1
269
+ [1.2.0]: https://github.com/guzzle/psr7/compare/1.1.0...1.2.0
270
+ [1.1.0]: https://github.com/guzzle/psr7/compare/1.0.0...1.1.0
vendor/guzzlehttp/psr7/LICENSE DELETED
@@ -1,19 +0,0 @@
1
- Copyright (c) 2015 Michael Dowling, https://github.com/mtdowling <mtdowling@gmail.com>
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the "Software"), to deal
5
- in the Software without restriction, including without limitation the rights
6
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- copies of the Software, and to permit persons to whom the Software is
8
- furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in
11
- all copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- THE SOFTWARE.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/guzzlehttp/psr7/src/AppendStream.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
@@ -61,7 +62,7 @@ class AppendStream implements StreamInterface
61
 
62
  public function getContents()
63
  {
64
- return copy_to_string($this);
65
  }
66
 
67
  /**
@@ -98,6 +99,8 @@ class AppendStream implements StreamInterface
98
  }
99
 
100
  $this->streams = [];
 
 
101
  }
102
 
103
  public function tell()
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
62
 
63
  public function getContents()
64
  {
65
+ return Utils::copyToString($this);
66
  }
67
 
68
  /**
99
  }
100
 
101
  $this->streams = [];
102
+
103
+ return null;
104
  }
105
 
106
  public function tell()
vendor/guzzlehttp/psr7/src/BufferStream.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
@@ -49,6 +50,8 @@ class BufferStream implements StreamInterface
49
  public function detach()
50
  {
51
  $this->close();
 
 
52
  }
53
 
54
  public function getSize()
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
50
  public function detach()
51
  {
52
  $this->close();
53
+
54
+ return null;
55
  }
56
 
57
  public function getSize()
vendor/guzzlehttp/psr7/src/CachingStream.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
@@ -131,7 +132,7 @@ class CachingStream implements StreamInterface
131
  private function cacheEntireStream()
132
  {
133
  $target = new FnStream(['write' => 'strlen']);
134
- copy_to_stream($this, $target);
135
 
136
  return $this->tell();
137
  }
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
132
  private function cacheEntireStream()
133
  {
134
  $target = new FnStream(['write' => 'strlen']);
135
+ Utils::copyToStream($this, $target);
136
 
137
  return $this->tell();
138
  }
vendor/guzzlehttp/psr7/src/DroppingStream.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
vendor/guzzlehttp/psr7/src/FnStream.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
@@ -34,6 +35,7 @@ class FnStream implements StreamInterface
34
 
35
  /**
36
  * Lazily determine which methods are not implemented.
 
37
  * @throws \BadMethodCallException
38
  */
39
  public function __get($name)
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
35
 
36
  /**
37
  * Lazily determine which methods are not implemented.
38
+ *
39
  * @throws \BadMethodCallException
40
  */
41
  public function __get($name)
vendor/guzzlehttp/psr7/src/Header.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace GuzzleHttp\Psr7;
4
+
5
+ final class Header
6
+ {
7
+ /**
8
+ * Parse an array of header values containing ";" separated data into an
9
+ * array of associative arrays representing the header key value pair data
10
+ * of the header. When a parameter does not contain a value, but just
11
+ * contains a key, this function will inject a key with a '' string value.
12
+ *
13
+ * @param string|array $header Header to parse into components.
14
+ *
15
+ * @return array Returns the parsed header values.
16
+ */
17
+ public static function parse($header)
18
+ {
19
+ static $trimmed = "\"' \n\t\r";
20
+ $params = $matches = [];
21
+
22
+ foreach (self::normalize($header) as $val) {
23
+ $part = [];
24
+ foreach (preg_split('/;(?=([^"]*"[^"]*")*[^"]*$)/', $val) as $kvp) {
25
+ if (preg_match_all('/<[^>]+>|[^=]+/', $kvp, $matches)) {
26
+ $m = $matches[0];
27
+ if (isset($m[1])) {
28
+ $part[trim($m[0], $trimmed)] = trim($m[1], $trimmed);
29
+ } else {
30
+ $part[] = trim($m[0], $trimmed);
31
+ }
32
+ }
33
+ }
34
+ if ($part) {
35
+ $params[] = $part;
36
+ }
37
+ }
38
+
39
+ return $params;
40
+ }
41
+
42
+ /**
43
+ * Converts an array of header values that may contain comma separated
44
+ * headers into an array of headers with no comma separated values.
45
+ *
46
+ * @param string|array $header Header to normalize.
47
+ *
48
+ * @return array Returns the normalized header field values.
49
+ */
50
+ public static function normalize($header)
51
+ {
52
+ if (!is_array($header)) {
53
+ return array_map('trim', explode(',', $header));
54
+ }
55
+
56
+ $result = [];
57
+ foreach ($header as $value) {
58
+ foreach ((array) $value as $v) {
59
+ if (strpos($v, ',') === false) {
60
+ $result[] = $v;
61
+ continue;
62
+ }
63
+ foreach (preg_split('/,(?=([^"]*"[^"]*")*[^"]*$)/', $v) as $vv) {
64
+ $result[] = trim($vv);
65
+ }
66
+ }
67
+ }
68
+
69
+ return $result;
70
+ }
71
+ }
vendor/guzzlehttp/psr7/src/InflateStream.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
vendor/guzzlehttp/psr7/src/LazyOpenStream.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
@@ -34,6 +35,6 @@ class LazyOpenStream implements StreamInterface
34
  */
35
  protected function createStream()
36
  {
37
- return stream_for(try_fopen($this->filename, $this->mode));
38
  }
39
  }
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
35
  */
36
  protected function createStream()
37
  {
38
+ return Utils::streamFor(Utils::tryFopen($this->filename, $this->mode));
39
  }
40
  }
vendor/guzzlehttp/psr7/src/LimitStream.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
vendor/guzzlehttp/psr7/src/Message.php ADDED
@@ -0,0 +1,252 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace GuzzleHttp\Psr7;
4
+
5
+ use Psr\Http\Message\MessageInterface;
6
+ use Psr\Http\Message\RequestInterface;
7
+ use Psr\Http\Message\ResponseInterface;
8
+
9
+ final class Message
10
+ {
11
+ /**
12
+ * Returns the string representation of an HTTP message.
13
+ *
14
+ * @param MessageInterface $message Message to convert to a string.
15
+ *
16
+ * @return string
17
+ */
18
+ public static function toString(MessageInterface $message)
19
+ {
20
+ if ($message instanceof RequestInterface) {
21
+ $msg = trim($message->getMethod() . ' '
22
+ . $message->getRequestTarget())
23
+ . ' HTTP/' . $message->getProtocolVersion();
24
+ if (!$message->hasHeader('host')) {
25
+ $msg .= "\r\nHost: " . $message->getUri()->getHost();
26
+ }
27
+ } elseif ($message instanceof ResponseInterface) {
28
+ $msg = 'HTTP/' . $message->getProtocolVersion() . ' '
29
+ . $message->getStatusCode() . ' '
30
+ . $message->getReasonPhrase();
31
+ } else {
32
+ throw new \InvalidArgumentException('Unknown message type');
33
+ }
34
+
35
+ foreach ($message->getHeaders() as $name => $values) {
36
+ if (strtolower($name) === 'set-cookie') {
37
+ foreach ($values as $value) {
38
+ $msg .= "\r\n{$name}: " . $value;
39
+ }
40
+ } else {
41
+ $msg .= "\r\n{$name}: " . implode(', ', $values);
42
+ }
43
+ }
44
+
45
+ return "{$msg}\r\n\r\n" . $message->getBody();
46
+ }
47
+
48
+ /**
49
+ * Get a short summary of the message body.
50
+ *
51
+ * Will return `null` if the response is not printable.
52
+ *
53
+ * @param MessageInterface $message The message to get the body summary
54
+ * @param int $truncateAt The maximum allowed size of the summary
55
+ *
56
+ * @return string|null
57
+ */
58
+ public static function bodySummary(MessageInterface $message, $truncateAt = 120)
59
+ {
60
+ $body = $message->getBody();
61
+
62
+ if (!$body->isSeekable() || !$body->isReadable()) {
63
+ return null;
64
+ }
65
+
66
+ $size = $body->getSize();
67
+
68
+ if ($size === 0) {
69
+ return null;
70
+ }
71
+
72
+ $summary = $body->read($truncateAt);
73
+ $body->rewind();
74
+
75
+ if ($size > $truncateAt) {
76
+ $summary .= ' (truncated...)';
77
+ }
78
+
79
+ // Matches any printable character, including unicode characters:
80
+ // letters, marks, numbers, punctuation, spacing, and separators.
81
+ if (preg_match('/[^\pL\pM\pN\pP\pS\pZ\n\r\t]/u', $summary)) {
82
+ return null;
83
+ }
84
+
85
+ return $summary;
86
+ }
87
+
88
+ /**
89
+ * Attempts to rewind a message body and throws an exception on failure.
90
+ *
91
+ * The body of the message will only be rewound if a call to `tell()`
92
+ * returns a value other than `0`.
93
+ *
94
+ * @param MessageInterface $message Message to rewind
95
+ *
96
+ * @throws \RuntimeException
97
+ */
98
+ public static function rewindBody(MessageInterface $message)
99
+ {
100
+ $body = $message->getBody();
101
+
102
+ if ($body->tell()) {
103
+ $body->rewind();
104
+ }
105
+ }
106
+
107
+ /**
108
+ * Parses an HTTP message into an associative array.
109
+ *
110
+ * The array contains the "start-line" key containing the start line of
111
+ * the message, "headers" key containing an associative array of header
112
+ * array values, and a "body" key containing the body of the message.
113
+ *
114
+ * @param string $message HTTP request or response to parse.
115
+ *
116
+ * @return array
117
+ */
118
+ public static function parseMessage($message)
119
+ {
120
+ if (!$message) {
121
+ throw new \InvalidArgumentException('Invalid message');
122
+ }
123
+
124
+ $message = ltrim($message, "\r\n");
125
+
126
+ $messageParts = preg_split("/\r?\n\r?\n/", $message, 2);
127
+
128
+ if ($messageParts === false || count($messageParts) !== 2) {
129
+ throw new \InvalidArgumentException('Invalid message: Missing header delimiter');
130
+ }
131
+
132
+ list($rawHeaders, $body) = $messageParts;
133
+ $rawHeaders .= "\r\n"; // Put back the delimiter we split previously
134
+ $headerParts = preg_split("/\r?\n/", $rawHeaders, 2);
135
+
136
+ if ($headerParts === false || count($headerParts) !== 2) {
137
+ throw new \InvalidArgumentException('Invalid message: Missing status line');
138
+ }
139
+
140
+ list($startLine, $rawHeaders) = $headerParts;
141
+
142
+ if (preg_match("/(?:^HTTP\/|^[A-Z]+ \S+ HTTP\/)(\d+(?:\.\d+)?)/i", $startLine, $matches) && $matches[1] === '1.0') {
143
+ // Header folding is deprecated for HTTP/1.1, but allowed in HTTP/1.0
144
+ $rawHeaders = preg_replace(Rfc7230::HEADER_FOLD_REGEX, ' ', $rawHeaders);
145
+ }
146
+
147
+ /** @var array[] $headerLines */
148
+ $count = preg_match_all(Rfc7230::HEADER_REGEX, $rawHeaders, $headerLines, PREG_SET_ORDER);
149
+
150
+ // If these aren't the same, then one line didn't match and there's an invalid header.
151
+ if ($count !== substr_count($rawHeaders, "\n")) {
152
+ // Folding is deprecated, see https://tools.ietf.org/html/rfc7230#section-3.2.4
153
+ if (preg_match(Rfc7230::HEADER_FOLD_REGEX, $rawHeaders)) {
154
+ throw new \InvalidArgumentException('Invalid header syntax: Obsolete line folding');
155
+ }
156
+
157
+ throw new \InvalidArgumentException('Invalid header syntax');
158
+ }
159
+
160
+ $headers = [];
161
+
162
+ foreach ($headerLines as $headerLine) {
163
+ $headers[$headerLine[1]][] = $headerLine[2];
164
+ }
165
+
166
+ return [
167
+ 'start-line' => $startLine,
168
+ 'headers' => $headers,
169
+ 'body' => $body,
170
+ ];
171
+ }
172
+
173
+ /**
174
+ * Constructs a URI for an HTTP request message.
175
+ *
176
+ * @param string $path Path from the start-line
177
+ * @param array $headers Array of headers (each value an array).
178
+ *
179
+ * @return string
180
+ */
181
+ public static function parseRequestUri($path, array $headers)
182
+ {
183
+ $hostKey = array_filter(array_keys($headers), function ($k) {
184
+ return strtolower($k) === 'host';
185
+ });
186
+
187
+ // If no host is found, then a full URI cannot be constructed.
188
+ if (!$hostKey) {
189
+ return $path;
190
+ }
191
+
192
+ $host = $headers[reset($hostKey)][0];
193
+ $scheme = substr($host, -4) === ':443' ? 'https' : 'http';
194
+
195
+ return $scheme . '://' . $host . '/' . ltrim($path, '/');
196
+ }
197
+
198
+ /**
199
+ * Parses a request message string into a request object.
200
+ *
201
+ * @param string $message Request message string.
202
+ *
203
+ * @return Request
204
+ */
205
+ public static function parseRequest($message)
206
+ {
207
+ $data = self::parseMessage($message);
208
+ $matches = [];
209
+ if (!preg_match('/^[\S]+\s+([a-zA-Z]+:\/\/|\/).*/', $data['start-line'], $matches)) {
210
+ throw new \InvalidArgumentException('Invalid request string');
211
+ }
212
+ $parts = explode(' ', $data['start-line'], 3);
213
+ $version = isset($parts[2]) ? explode('/', $parts[2])[1] : '1.1';
214
+
215
+ $request = new Request(
216
+ $parts[0],
217
+ $matches[1] === '/' ? self::parseRequestUri($parts[1], $data['headers']) : $parts[1],
218
+ $data['headers'],
219
+ $data['body'],
220
+ $version
221
+ );
222
+
223
+ return $matches[1] === '/' ? $request : $request->withRequestTarget($parts[1]);
224
+ }
225
+
226
+ /**
227
+ * Parses a response message string into a response object.
228
+ *
229
+ * @param string $message Response message string.
230
+ *
231
+ * @return Response
232
+ */
233
+ public static function parseResponse($message)
234
+ {
235
+ $data = self::parseMessage($message);
236
+ // According to https://tools.ietf.org/html/rfc7230#section-3.1.2 the space
237
+ // between status-code and reason-phrase is required. But browsers accept
238
+ // responses without space and reason as well.
239
+ if (!preg_match('/^HTTP\/.* [0-9]{3}( .*|$)/', $data['start-line'])) {
240
+ throw new \InvalidArgumentException('Invalid response string: ' . $data['start-line']);
241
+ }
242
+ $parts = explode(' ', $data['start-line'], 3);
243
+
244
+ return new Response(
245
+ (int) $parts[1],
246
+ $data['headers'],
247
+ $data['body'],
248
+ explode('/', $parts[0])[1],
249
+ isset($parts[2]) ? $parts[2] : null
250
+ );
251
+ }
252
+ }
vendor/guzzlehttp/psr7/src/MessageTrait.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
@@ -17,7 +18,7 @@ trait MessageTrait
17
  /** @var string */
18
  private $protocol = '1.1';
19
 
20
- /** @var StreamInterface */
21
  private $stream;
22
 
23
  public function getProtocolVersion()
@@ -117,7 +118,7 @@ trait MessageTrait
117
  public function getBody()
118
  {
119
  if (!$this->stream) {
120
- $this->stream = stream_for('');
121
  }
122
 
123
  return $this->stream;
@@ -194,7 +195,7 @@ trait MessageTrait
194
  }
195
 
196
  return trim((string) $value, " \t");
197
- }, $values);
198
  }
199
 
200
  private function assertHeader($header)
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
18
  /** @var string */
19
  private $protocol = '1.1';
20
 
21
+ /** @var StreamInterface|null */
22
  private $stream;
23
 
24
  public function getProtocolVersion()
118
  public function getBody()
119
  {
120
  if (!$this->stream) {
121
+ $this->stream = Utils::streamFor('');
122
  }
123
 
124
  return $this->stream;
195
  }
196
 
197
  return trim((string) $value, " \t");
198
+ }, array_values($values));
199
  }
200
 
201
  private function assertHeader($header)
vendor/guzzlehttp/psr7/src/MimeType.php ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace GuzzleHttp\Psr7;
4
+
5
+ final class MimeType
6
+ {
7
+ /**
8
+ * Determines the mimetype of a file by looking at its extension.
9
+ *
10
+ * @param string $filename
11
+ *
12
+ * @return string|null
13
+ */
14
+ public static function fromFilename($filename)
15
+ {
16
+ return self::fromExtension(pathinfo($filename, PATHINFO_EXTENSION));
17
+ }
18
+
19
+ /**
20
+ * Maps a file extensions to a mimetype.
21
+ *
22
+ * @param string $extension string The file extension.
23
+ *
24
+ * @return string|null
25
+ *
26
+ * @link http://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x/conf/mime.types
27
+ */
28
+ public static function fromExtension($extension)
29
+ {
30
+ static $mimetypes = [
31
+ '3gp' => 'video/3gpp',
32
+ '7z' => 'application/x-7z-compressed',
33
+ 'aac' => 'audio/x-aac',
34
+ 'ai' => 'application/postscript',
35
+ 'aif' => 'audio/x-aiff',
36
+ 'asc' => 'text/plain',
37
+ 'asf' => 'video/x-ms-asf',
38
+ 'atom' => 'application/atom+xml',
39
+ 'avi' => 'video/x-msvideo',
40
+ 'bmp' => 'image/bmp',
41
+ 'bz2' => 'application/x-bzip2',
42
+ 'cer' => 'application/pkix-cert',
43
+ 'crl' => 'application/pkix-crl',
44
+ 'crt' => 'application/x-x509-ca-cert',
45
+ 'css' => 'text/css',
46
+ 'csv' => 'text/csv',
47
+ 'cu' => 'application/cu-seeme',
48
+ 'deb' => 'application/x-debian-package',
49
+ 'doc' => 'application/msword',
50
+ 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
51
+ 'dvi' => 'application/x-dvi',
52
+ 'eot' => 'application/vnd.ms-fontobject',
53
+ 'eps' => 'application/postscript',
54
+ 'epub' => 'application/epub+zip',
55
+ 'etx' => 'text/x-setext',
56
+ 'flac' => 'audio/flac',
57
+ 'flv' => 'video/x-flv',
58
+ 'gif' => 'image/gif',
59
+ 'gz' => 'application/gzip',
60
+ 'htm' => 'text/html',
61
+ 'html' => 'text/html',
62
+ 'ico' => 'image/x-icon',
63
+ 'ics' => 'text/calendar',
64
+ 'ini' => 'text/plain',
65
+ 'iso' => 'application/x-iso9660-image',
66
+ 'jar' => 'application/java-archive',
67
+ 'jpe' => 'image/jpeg',
68
+ 'jpeg' => 'image/jpeg',
69
+ 'jpg' => 'image/jpeg',
70
+ 'js' => 'text/javascript',
71
+ 'json' => 'application/json',
72
+ 'latex' => 'application/x-latex',
73
+ 'log' => 'text/plain',
74
+ 'm4a' => 'audio/mp4',
75
+ 'm4v' => 'video/mp4',
76
+ 'mid' => 'audio/midi',
77
+ 'midi' => 'audio/midi',
78
+ 'mov' => 'video/quicktime',
79
+ 'mkv' => 'video/x-matroska',
80
+ 'mp3' => 'audio/mpeg',
81
+ 'mp4' => 'video/mp4',
82
+ 'mp4a' => 'audio/mp4',
83
+ 'mp4v' => 'video/mp4',
84
+ 'mpe' => 'video/mpeg',
85
+ 'mpeg' => 'video/mpeg',
86
+ 'mpg' => 'video/mpeg',
87
+ 'mpg4' => 'video/mp4',
88
+ 'oga' => 'audio/ogg',
89
+ 'ogg' => 'audio/ogg',
90
+ 'ogv' => 'video/ogg',
91
+ 'ogx' => 'application/ogg',
92
+ 'pbm' => 'image/x-portable-bitmap',
93
+ 'pdf' => 'application/pdf',
94
+ 'pgm' => 'image/x-portable-graymap',
95
+ 'png' => 'image/png',
96
+ 'pnm' => 'image/x-portable-anymap',
97
+ 'ppm' => 'image/x-portable-pixmap',
98
+ 'ppt' => 'application/vnd.ms-powerpoint',
99
+ 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
100
+ 'ps' => 'application/postscript',
101
+ 'qt' => 'video/quicktime',
102
+ 'rar' => 'application/x-rar-compressed',
103
+ 'ras' => 'image/x-cmu-raster',
104
+ 'rss' => 'application/rss+xml',
105
+ 'rtf' => 'application/rtf',
106
+ 'sgm' => 'text/sgml',
107
+ 'sgml' => 'text/sgml',
108
+ 'svg' => 'image/svg+xml',
109
+ 'swf' => 'application/x-shockwave-flash',
110
+ 'tar' => 'application/x-tar',
111
+ 'tif' => 'image/tiff',
112
+ 'tiff' => 'image/tiff',
113
+ 'torrent' => 'application/x-bittorrent',
114
+ 'ttf' => 'application/x-font-ttf',
115
+ 'txt' => 'text/plain',
116
+ 'wav' => 'audio/x-wav',
117
+ 'webm' => 'video/webm',
118
+ 'webp' => 'image/webp',
119
+ 'wma' => 'audio/x-ms-wma',
120
+ 'wmv' => 'video/x-ms-wmv',
121
+ 'woff' => 'application/x-font-woff',
122
+ 'wsdl' => 'application/wsdl+xml',
123
+ 'xbm' => 'image/x-xbitmap',
124
+ 'xls' => 'application/vnd.ms-excel',
125
+ 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
126
+ 'xml' => 'application/xml',
127
+ 'xpm' => 'image/x-xpixmap',
128
+ 'xwd' => 'image/x-xwindowdump',
129
+ 'yaml' => 'text/yaml',
130
+ 'yml' => 'text/yaml',
131
+ 'zip' => 'application/zip',
132
+ ];
133
+
134
+ $extension = strtolower($extension);
135
+
136
+ return isset($mimetypes[$extension])
137
+ ? $mimetypes[$extension]
138
+ : null;
139
+ }
140
+ }
vendor/guzzlehttp/psr7/src/MultipartStream.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
@@ -71,7 +72,7 @@ class MultipartStream implements StreamInterface
71
  }
72
 
73
  // Add the trailing boundary with CRLF
74
- $stream->addStream(stream_for("--{$this->boundary}--\r\n"));
75
 
76
  return $stream;
77
  }
@@ -84,7 +85,7 @@ class MultipartStream implements StreamInterface
84
  }
85
  }
86
 
87
- $element['contents'] = stream_for($element['contents']);
88
 
89
  if (empty($element['filename'])) {
90
  $uri = $element['contents']->getMetadata('uri');
@@ -100,9 +101,9 @@ class MultipartStream implements StreamInterface
100
  isset($element['headers']) ? $element['headers'] : []
101
  );
102
 
103
- $stream->addStream(stream_for($this->getHeaders($headers)));
104
  $stream->addStream($body);
105
- $stream->addStream(stream_for("\r\n"));
106
  }
107
 
108
  /**
@@ -131,7 +132,7 @@ class MultipartStream implements StreamInterface
131
  // Set a default Content-Type if one was not supplied
132
  $type = $this->getHeader($headers, 'content-type');
133
  if (!$type && ($filename === '0' || $filename)) {
134
- if ($type = mimetype_from_filename($filename)) {
135
  $headers['Content-Type'] = $type;
136
  }
137
  }
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
72
  }
73
 
74
  // Add the trailing boundary with CRLF
75
+ $stream->addStream(Utils::streamFor("--{$this->boundary}--\r\n"));
76
 
77
  return $stream;
78
  }
85
  }
86
  }
87
 
88
+ $element['contents'] = Utils::streamFor($element['contents']);
89
 
90
  if (empty($element['filename'])) {
91
  $uri = $element['contents']->getMetadata('uri');
101
  isset($element['headers']) ? $element['headers'] : []
102
  );
103
 
104
+ $stream->addStream(Utils::streamFor($this->getHeaders($headers)));
105
  $stream->addStream($body);
106
+ $stream->addStream(Utils::streamFor("\r\n"));
107
  }
108
 
109
  /**
132
  // Set a default Content-Type if one was not supplied
133
  $type = $this->getHeader($headers, 'content-type');
134
  if (!$type && ($filename === '0' || $filename)) {
135
+ if ($type = MimeType::fromFilename($filename)) {
136
  $headers['Content-Type'] = $type;
137
  }
138
  }
vendor/guzzlehttp/psr7/src/NoSeekStream.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
vendor/guzzlehttp/psr7/src/PumpStream.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
@@ -51,7 +52,7 @@ class PumpStream implements StreamInterface
51
  public function __toString()
52
  {
53
  try {
54
- return copy_to_string($this);
55
  } catch (\Exception $e) {
56
  return '';
57
  }
@@ -66,6 +67,8 @@ class PumpStream implements StreamInterface
66
  {
67
  $this->tellPos = false;
68
  $this->source = null;
 
 
69
  }
70
 
71
  public function getSize()
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
52
  public function __toString()
53
  {
54
  try {
55
+ return Utils::copyToString($this);
56
  } catch (\Exception $e) {
57
  return '';
58
  }
67
  {
68
  $this->tellPos = false;
69
  $this->source = null;
70
+
71
+ return null;
72
  }
73
 
74
  public function getSize()
vendor/guzzlehttp/psr7/src/Query.php ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace GuzzleHttp\Psr7;
4
+
5
+ final class Query
6
+ {
7
+ /**
8
+ * Parse a query string into an associative array.
9
+ *
10
+ * If multiple values are found for the same key, the value of that key
11
+ * value pair will become an array. This function does not parse nested
12
+ * PHP style arrays into an associative array (e.g., `foo[a]=1&foo[b]=2`
13
+ * will be parsed into `['foo[a]' => '1', 'foo[b]' => '2'])`.
14
+ *
15
+ * @param string $str Query string to parse
16
+ * @param int|bool $urlEncoding How the query string is encoded
17
+ *
18
+ * @return array
19
+ */
20
+ public static function parse($str, $urlEncoding = true)
21
+ {
22
+ $result = [];
23
+
24
+ if ($str === '') {
25
+ return $result;
26
+ }
27
+
28
+ if ($urlEncoding === true) {
29
+ $decoder = function ($value) {
30
+ return rawurldecode(str_replace('+', ' ', $value));
31
+ };
32
+ } elseif ($urlEncoding === PHP_QUERY_RFC3986) {
33
+ $decoder = 'rawurldecode';
34
+ } elseif ($urlEncoding === PHP_QUERY_RFC1738) {
35
+ $decoder = 'urldecode';
36
+ } else {
37
+ $decoder = function ($str) { return $str; };
38
+ }
39
+
40
+ foreach (explode('&', $str) as $kvp) {
41
+ $parts = explode('=', $kvp, 2);
42
+ $key = $decoder($parts[0]);
43
+ $value = isset($parts[1]) ? $decoder($parts[1]) : null;
44
+ if (!isset($result[$key])) {
45
+ $result[$key] = $value;
46
+ } else {
47
+ if (!is_array($result[$key])) {
48
+ $result[$key] = [$result[$key]];
49
+ }
50
+ $result[$key][] = $value;
51
+ }
52
+ }
53
+
54
+ return $result;
55
+ }
56
+
57
+ /**
58
+ * Build a query string from an array of key value pairs.
59
+ *
60
+ * This function can use the return value of `parse()` to build a query
61
+ * string. This function does not modify the provided keys when an array is
62
+ * encountered (like `http_build_query()` would).
63
+ *
64
+ * @param array $params Query string parameters.
65
+ * @param int|false $encoding Set to false to not encode, PHP_QUERY_RFC3986
66
+ * to encode using RFC3986, or PHP_QUERY_RFC1738
67
+ * to encode using RFC1738.
68
+ * @return string
69
+ */
70
+ public static function build(array $params, $encoding = PHP_QUERY_RFC3986)
71
+ {
72
+ if (!$params) {
73
+ return '';
74
+ }
75
+
76
+ if ($encoding === false) {
77
+ $encoder = function ($str) { return $str; };
78
+ } elseif ($encoding === PHP_QUERY_RFC3986) {
79
+ $encoder = 'rawurlencode';
80
+ } elseif ($encoding === PHP_QUERY_RFC1738) {
81
+ $encoder = 'urlencode';
82
+ } else {
83
+ throw new \InvalidArgumentException('Invalid type');
84
+ }
85
+
86
+ $qs = '';
87
+ foreach ($params as $k => $v) {
88
+ $k = $encoder($k);
89
+ if (!is_array($v)) {
90
+ $qs .= $k;
91
+ if ($v !== null) {
92
+ $qs .= '=' . $encoder($v);
93
+ }
94
+ $qs .= '&';
95
+ } else {
96
+ foreach ($v as $vv) {
97
+ $qs .= $k;
98
+ if ($vv !== null) {
99
+ $qs .= '=' . $encoder($vv);
100
+ }
101
+ $qs .= '&';
102
+ }
103
+ }
104
+ }
105
+
106
+ return $qs ? (string) substr($qs, 0, -1) : '';
107
+ }
108
+ }
vendor/guzzlehttp/psr7/src/Request.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use InvalidArgumentException;
@@ -51,7 +52,7 @@ class Request implements RequestInterface
51
  }
52
 
53
  if ($body !== '' && $body !== null) {
54
- $this->stream = stream_for($body);
55
  }
56
  }
57
 
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use InvalidArgumentException;
52
  }
53
 
54
  if ($body !== '' && $body !== null) {
55
+ $this->stream = Utils::streamFor($body);
56
  }
57
  }
58
 
vendor/guzzlehttp/psr7/src/Response.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\ResponseInterface;
@@ -100,7 +101,7 @@ class Response implements ResponseInterface
100
  $this->statusCode = $status;
101
 
102
  if ($body !== '' && $body !== null) {
103
- $this->stream = stream_for($body);
104
  }
105
 
106
  $this->setHeaders($headers);
@@ -134,7 +135,7 @@ class Response implements ResponseInterface
134
  if ($reasonPhrase == '' && isset(self::$phrases[$new->statusCode])) {
135
  $reasonPhrase = self::$phrases[$new->statusCode];
136
  }
137
- $new->reasonPhrase = $reasonPhrase;
138
  return $new;
139
  }
140
 
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\ResponseInterface;
101
  $this->statusCode = $status;
102
 
103
  if ($body !== '' && $body !== null) {
104
+ $this->stream = Utils::streamFor($body);
105
  }
106
 
107
  $this->setHeaders($headers);
135
  if ($reasonPhrase == '' && isset(self::$phrases[$new->statusCode])) {
136
  $reasonPhrase = self::$phrases[$new->statusCode];
137
  }
138
+ $new->reasonPhrase = (string) $reasonPhrase;
139
  return $new;
140
  }
141
 
vendor/guzzlehttp/psr7/src/ServerRequest.php CHANGED
@@ -79,8 +79,10 @@ class ServerRequest extends Request implements ServerRequestInterface
79
  * Return an UploadedFile instance array.
80
  *
81
  * @param array $files A array which respect $_FILES structure
82
- * @throws InvalidArgumentException for unrecognized values
83
  * @return array
 
 
84
  */
85
  public static function normalizeFiles(array $files)
86
  {
79
  * Return an UploadedFile instance array.
80
  *
81
  * @param array $files A array which respect $_FILES structure
82
+ *
83
  * @return array
84
+ *
85
+ * @throws InvalidArgumentException for unrecognized values
86
  */
87
  public static function normalizeFiles(array $files)
88
  {
vendor/guzzlehttp/psr7/src/Stream.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
@@ -76,8 +77,10 @@ class Stream implements StreamInterface
76
  public function __toString()
77
  {
78
  try {
79
- $this->seek(0);
80
- return (string) stream_get_contents($this->stream);
 
 
81
  } catch (\Exception $e) {
82
  return '';
83
  }
@@ -193,7 +196,7 @@ class Stream implements StreamInterface
193
  public function seek($offset, $whence = SEEK_SET)
194
  {
195
  $whence = (int) $whence;
196
-
197
  if (!isset($this->stream)) {
198
  throw new \RuntimeException('Stream is detached');
199
  }
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
77
  public function __toString()
78
  {
79
  try {
80
+ if ($this->isSeekable()) {
81
+ $this->seek(0);
82
+ }
83
+ return $this->getContents();
84
  } catch (\Exception $e) {
85
  return '';
86
  }
196
  public function seek($offset, $whence = SEEK_SET)
197
  {
198
  $whence = (int) $whence;
199
+
200
  if (!isset($this->stream)) {
201
  throw new \RuntimeException('Stream is detached');
202
  }
vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
@@ -52,7 +53,7 @@ trait StreamDecoratorTrait
52
 
53
  public function getContents()
54
  {
55
- return copy_to_string($this);
56
  }
57
 
58
  /**
@@ -140,6 +141,7 @@ trait StreamDecoratorTrait
140
  * Implement in subclasses to dynamically create streams when requested.
141
  *
142
  * @return StreamInterface
 
143
  * @throws \BadMethodCallException
144
  */
145
  protected function createStream()
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
53
 
54
  public function getContents()
55
  {
56
+ return Utils::copyToString($this);
57
  }
58
 
59
  /**
141
  * Implement in subclasses to dynamically create streams when requested.
142
  *
143
  * @return StreamInterface
144
+ *
145
  * @throws \BadMethodCallException
146
  */
147
  protected function createStream()
vendor/guzzlehttp/psr7/src/StreamWrapper.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\StreamInterface;
@@ -23,6 +24,7 @@ class StreamWrapper
23
  * @param StreamInterface $stream The stream to get a resource for
24
  *
25
  * @return resource
 
26
  * @throws \InvalidArgumentException if stream is not readable or writable
27
  */
28
  public static function getResource(StreamInterface $stream)
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\StreamInterface;
24
  * @param StreamInterface $stream The stream to get a resource for
25
  *
26
  * @return resource
27
+ *
28
  * @throws \InvalidArgumentException if stream is not readable or writable
29
  */
30
  public static function getResource(StreamInterface $stream)
vendor/guzzlehttp/psr7/src/UploadedFile.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use InvalidArgumentException;
@@ -85,6 +86,7 @@ class UploadedFile implements UploadedFileInterface
85
  * Depending on the value set file or stream variable
86
  *
87
  * @param mixed $streamOrFile
 
88
  * @throws InvalidArgumentException
89
  */
90
  private function setStreamOrFile($streamOrFile)
@@ -104,6 +106,7 @@ class UploadedFile implements UploadedFileInterface
104
 
105
  /**
106
  * @param int $error
 
107
  * @throws InvalidArgumentException
108
  */
109
  private function setError($error)
@@ -125,6 +128,7 @@ class UploadedFile implements UploadedFileInterface
125
 
126
  /**
127
  * @param int $size
 
128
  * @throws InvalidArgumentException
129
  */
130
  private function setSize($size)
@@ -158,6 +162,7 @@ class UploadedFile implements UploadedFileInterface
158
 
159
  /**
160
  * @param string|null $clientFilename
 
161
  * @throws InvalidArgumentException
162
  */
163
  private function setClientFilename($clientFilename)
@@ -173,6 +178,7 @@ class UploadedFile implements UploadedFileInterface
173
 
174
  /**
175
  * @param string|null $clientMediaType
 
176
  * @throws InvalidArgumentException
177
  */
178
  private function setClientMediaType($clientMediaType)
@@ -220,6 +226,7 @@ class UploadedFile implements UploadedFileInterface
220
 
221
  /**
222
  * {@inheritdoc}
 
223
  * @throws RuntimeException if the upload was not successful.
224
  */
225
  public function getStream()
@@ -238,7 +245,9 @@ class UploadedFile implements UploadedFileInterface
238
  *
239
  * @see http://php.net/is_uploaded_file
240
  * @see http://php.net/move_uploaded_file
 
241
  * @param string $targetPath Path to which to move the uploaded file.
 
242
  * @throws RuntimeException if the upload was not successful.
243
  * @throws InvalidArgumentException if the $path specified is invalid.
244
  * @throws RuntimeException on any error during the move operation, or on
@@ -259,7 +268,7 @@ class UploadedFile implements UploadedFileInterface
259
  ? rename($this->file, $targetPath)
260
  : move_uploaded_file($this->file, $targetPath);
261
  } else {
262
- copy_to_stream(
263
  $this->getStream(),
264
  new LazyOpenStream($targetPath, 'w')
265
  );
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use InvalidArgumentException;
86
  * Depending on the value set file or stream variable
87
  *
88
  * @param mixed $streamOrFile
89
+ *
90
  * @throws InvalidArgumentException
91
  */
92
  private function setStreamOrFile($streamOrFile)
106
 
107
  /**
108
  * @param int $error
109
+ *
110
  * @throws InvalidArgumentException
111
  */
112
  private function setError($error)
128
 
129
  /**
130
  * @param int $size
131
+ *
132
  * @throws InvalidArgumentException
133
  */
134
  private function setSize($size)
162
 
163
  /**
164
  * @param string|null $clientFilename
165
+ *
166
  * @throws InvalidArgumentException
167
  */
168
  private function setClientFilename($clientFilename)
178
 
179
  /**
180
  * @param string|null $clientMediaType
181
+ *
182
  * @throws InvalidArgumentException
183
  */
184
  private function setClientMediaType($clientMediaType)
226
 
227
  /**
228
  * {@inheritdoc}
229
+ *
230
  * @throws RuntimeException if the upload was not successful.
231
  */
232
  public function getStream()
245
  *
246
  * @see http://php.net/is_uploaded_file
247
  * @see http://php.net/move_uploaded_file
248
+ *
249
  * @param string $targetPath Path to which to move the uploaded file.
250
+ *
251
  * @throws RuntimeException if the upload was not successful.
252
  * @throws InvalidArgumentException if the $path specified is invalid.
253
  * @throws RuntimeException on any error during the move operation, or on
268
  ? rename($this->file, $targetPath)
269
  : move_uploaded_file($this->file, $targetPath);
270
  } else {
271
+ Utils::copyToStream(
272
  $this->getStream(),
273
  new LazyOpenStream($targetPath, 'w')
274
  );
vendor/guzzlehttp/psr7/src/Uri.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\UriInterface;
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\UriInterface;
vendor/guzzlehttp/psr7/src/UriNormalizer.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\UriInterface;
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\UriInterface;
vendor/guzzlehttp/psr7/src/UriResolver.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\UriInterface;
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\UriInterface;
vendor/guzzlehttp/psr7/src/Utils.php ADDED
@@ -0,0 +1,398 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace GuzzleHttp\Psr7;
4
+
5
+ use Psr\Http\Message\RequestInterface;
6
+ use Psr\Http\Message\ServerRequestInterface;
7
+ use Psr\Http\Message\StreamInterface;
8
+ use Psr\Http\Message\UriInterface;
9
+
10
+ final class Utils
11
+ {
12
+ /**
13
+ * Remove the items given by the keys, case insensitively from the data.
14
+ *
15
+ * @param iterable<string> $keys
16
+ *
17
+ * @return array
18
+ */
19
+ public static function caselessRemove($keys, array $data)
20
+ {
21
+ $result = [];
22
+
23
+ foreach ($keys as &$key) {
24
+ $key = strtolower($key);
25
+ }
26
+
27
+ foreach ($data as $k => $v) {
28
+ if (!in_array(strtolower($k), $keys)) {
29
+ $result[$k] = $v;
30
+ }
31
+ }
32
+
33
+ return $result;
34
+ }
35
+
36
+ /**
37
+ * Copy the contents of a stream into another stream until the given number
38
+ * of bytes have been read.
39
+ *
40
+ * @param StreamInterface $source Stream to read from
41
+ * @param StreamInterface $dest Stream to write to
42
+ * @param int $maxLen Maximum number of bytes to read. Pass -1
43
+ * to read the entire stream.
44
+ *
45
+ * @throws \RuntimeException on error.
46
+ */
47
+ public static function copyToStream(StreamInterface $source, StreamInterface $dest, $maxLen = -1)
48
+ {
49
+ $bufferSize = 8192;
50
+
51
+ if ($maxLen === -1) {
52
+ while (!$source->eof()) {
53
+ if (!$dest->write($source->read($bufferSize))) {
54
+ break;
55
+ }
56
+ }
57
+ } else {
58
+ $remaining = $maxLen;
59
+ while ($remaining > 0 && !$source->eof()) {
60
+ $buf = $source->read(min($bufferSize, $remaining));
61
+ $len = strlen($buf);
62
+ if (!$len) {
63
+ break;
64
+ }
65
+ $remaining -= $len;
66
+ $dest->write($buf);
67
+ }
68
+ }
69
+ }
70
+
71
+ /**
72
+ * Copy the contents of a stream into a string until the given number of
73
+ * bytes have been read.
74
+ *
75
+ * @param StreamInterface $stream Stream to read
76
+ * @param int $maxLen Maximum number of bytes to read. Pass -1
77
+ * to read the entire stream.
78
+ * @return string
79
+ *
80
+ * @throws \RuntimeException on error.
81
+ */
82
+ public static function copyToString(StreamInterface $stream, $maxLen = -1)
83
+ {
84
+ $buffer = '';
85
+
86
+ if ($maxLen === -1) {
87
+ while (!$stream->eof()) {
88
+ $buf = $stream->read(1048576);
89
+ // Using a loose equality here to match on '' and false.
90
+ if ($buf == null) {
91
+ break;
92
+ }
93
+ $buffer .= $buf;
94
+ }
95
+ return $buffer;
96
+ }
97
+
98
+ $len = 0;
99
+ while (!$stream->eof() && $len < $maxLen) {
100
+ $buf = $stream->read($maxLen - $len);
101
+ // Using a loose equality here to match on '' and false.
102
+ if ($buf == null) {
103
+ break;
104
+ }
105
+ $buffer .= $buf;
106
+ $len = strlen($buffer);
107
+ }
108
+
109
+ return $buffer;
110
+ }
111
+
112
+ /**
113
+ * Calculate a hash of a stream.
114
+ *
115
+ * This method reads the entire stream to calculate a rolling hash, based
116
+ * on PHP's `hash_init` functions.
117
+ *
118
+ * @param StreamInterface $stream Stream to calculate the hash for
119
+ * @param string $algo Hash algorithm (e.g. md5, crc32, etc)
120
+ * @param bool $rawOutput Whether or not to use raw output
121
+ *
122
+ * @return string Returns the hash of the stream
123
+ *
124
+ * @throws \RuntimeException on error.
125
+ */
126
+ public static function hash(StreamInterface $stream, $algo, $rawOutput = false)
127
+ {
128
+ $pos = $stream->tell();
129
+
130
+ if ($pos > 0) {
131
+ $stream->rewind();
132
+ }
133
+
134
+ $ctx = hash_init($algo);
135
+ while (!$stream->eof()) {
136
+ hash_update($ctx, $stream->read(1048576));
137
+ }
138
+
139
+ $out = hash_final($ctx, (bool) $rawOutput);
140
+ $stream->seek($pos);
141
+
142
+ return $out;
143
+ }
144
+
145
+ /**
146
+ * Clone and modify a request with the given changes.
147
+ *
148
+ * This method is useful for reducing the number of clones needed to mutate
149
+ * a message.
150
+ *
151
+ * The changes can be one of:
152
+ * - method: (string) Changes the HTTP method.
153
+ * - set_headers: (array) Sets the given headers.
154
+ * - remove_headers: (array) Remove the given headers.
155
+ * - body: (mixed) Sets the given body.
156
+ * - uri: (UriInterface) Set the URI.
157
+ * - query: (string) Set the query string value of the URI.
158
+ * - version: (string) Set the protocol version.
159
+ *
160
+ * @param RequestInterface $request Request to clone and modify.
161
+ * @param array $changes Changes to apply.
162
+ *
163
+ * @return RequestInterface
164
+ */
165
+ public static function modifyRequest(RequestInterface $request, array $changes)
166
+ {
167
+ if (!$changes) {
168
+ return $request;
169
+ }
170
+
171
+ $headers = $request->getHeaders();
172
+
173
+ if (!isset($changes['uri'])) {
174
+ $uri = $request->getUri();
175
+ } else {
176
+ // Remove the host header if one is on the URI
177
+ if ($host = $changes['uri']->getHost()) {
178
+ $changes['set_headers']['Host'] = $host;
179
+
180
+ if ($port = $changes['uri']->getPort()) {
181
+ $standardPorts = ['http' => 80, 'https' => 443];
182
+ $scheme = $changes['uri']->getScheme();
183
+ if (isset($standardPorts[$scheme]) && $port != $standardPorts[$scheme]) {
184
+ $changes['set_headers']['Host'] .= ':'.$port;
185
+ }
186
+ }
187
+ }
188
+ $uri = $changes['uri'];
189
+ }
190
+
191
+ if (!empty($changes['remove_headers'])) {
192
+ $headers = self::caselessRemove($changes['remove_headers'], $headers);
193
+ }
194
+
195
+ if (!empty($changes['set_headers'])) {
196
+ $headers = self::caselessRemove(array_keys($changes['set_headers']), $headers);
197
+ $headers = $changes['set_headers'] + $headers;
198
+ }
199
+
200
+ if (isset($changes['query'])) {
201
+ $uri = $uri->withQuery($changes['query']);
202
+ }
203
+
204
+ if ($request instanceof ServerRequestInterface) {
205
+ return (new ServerRequest(
206
+ isset($changes['method']) ? $changes['method'] : $request->getMethod(),
207
+ $uri,
208
+ $headers,
209
+ isset($changes['body']) ? $changes['body'] : $request->getBody(),
210
+ isset($changes['version'])
211
+ ? $changes['version']
212
+ : $request->getProtocolVersion(),
213
+ $request->getServerParams()
214
+ ))
215
+ ->withParsedBody($request->getParsedBody())
216
+ ->withQueryParams($request->getQueryParams())
217
+ ->withCookieParams($request->getCookieParams())
218
+ ->withUploadedFiles($request->getUploadedFiles());
219
+ }
220
+
221
+ return new Request(
222
+ isset($changes['method']) ? $changes['method'] : $request->getMethod(),
223
+ $uri,
224
+ $headers,
225
+ isset($changes['body']) ? $changes['body'] : $request->getBody(),
226
+ isset($changes['version'])
227
+ ? $changes['version']
228
+ : $request->getProtocolVersion()
229
+ );
230
+ }
231
+
232
+ /**
233
+ * Read a line from the stream up to the maximum allowed buffer length.
234
+ *
235
+ * @param StreamInterface $stream Stream to read from
236
+ * @param int|null $maxLength Maximum buffer length
237
+ *
238
+ * @return string
239
+ */
240
+ public static function readLine(StreamInterface $stream, $maxLength = null)
241
+ {
242
+ $buffer = '';
243
+ $size = 0;
244
+
245
+ while (!$stream->eof()) {
246
+ // Using a loose equality here to match on '' and false.
247
+ if (null == ($byte = $stream->read(1))) {
248
+ return $buffer;
249
+ }
250
+ $buffer .= $byte;
251
+ // Break when a new line is found or the max length - 1 is reached
252
+ if ($byte === "\n" || ++$size === $maxLength - 1) {
253
+ break;
254
+ }
255
+ }
256
+
257
+ return $buffer;
258
+ }
259
+
260
+ /**
261
+ * Create a new stream based on the input type.
262
+ *
263
+ * Options is an associative array that can contain the following keys:
264
+ * - metadata: Array of custom metadata.
265
+ * - size: Size of the stream.
266
+ *
267
+ * This method accepts the following `$resource` types:
268
+ * - `Psr\Http\Message\StreamInterface`: Returns the value as-is.
269
+ * - `string`: Creates a stream object that uses the given string as the contents.
270
+ * - `resource`: Creates a stream object that wraps the given PHP stream resource.
271
+ * - `Iterator`: If the provided value implements `Iterator`, then a read-only
272
+ * stream object will be created that wraps the given iterable. Each time the
273
+ * stream is read from, data from the iterator will fill a buffer and will be
274
+ * continuously called until the buffer is equal to the requested read size.
275
+ * Subsequent read calls will first read from the buffer and then call `next`
276
+ * on the underlying iterator until it is exhausted.
277
+ * - `object` with `__toString()`: If the object has the `__toString()` method,
278
+ * the object will be cast to a string and then a stream will be returned that
279
+ * uses the string value.
280
+ * - `NULL`: When `null` is passed, an empty stream object is returned.
281
+ * - `callable` When a callable is passed, a read-only stream object will be
282
+ * created that invokes the given callable. The callable is invoked with the
283
+ * number of suggested bytes to read. The callable can return any number of
284
+ * bytes, but MUST return `false` when there is no more data to return. The
285
+ * stream object that wraps the callable will invoke the callable until the
286
+ * number of requested bytes are available. Any additional bytes will be
287
+ * buffered and used in subsequent reads.
288
+ *
289
+ * @param resource|string|null|int|float|bool|StreamInterface|callable|\Iterator $resource Entity body data
290
+ * @param array $options Additional options
291
+ *
292
+ * @return StreamInterface
293
+ *
294
+ * @throws \InvalidArgumentException if the $resource arg is not valid.
295
+ */
296
+ public static function streamFor($resource = '', array $options = [])
297
+ {
298
+ if (is_scalar($resource)) {
299
+ $stream = fopen('php://temp', 'r+');
300
+ if ($resource !== '') {
301
+ fwrite($stream, $resource);
302
+ fseek($stream, 0);
303
+ }
304
+ return new Stream($stream, $options);
305
+ }
306
+
307
+ switch (gettype($resource)) {
308
+ case 'resource':
309
+ return new Stream($resource, $options);
310
+ case 'object':
311
+ if ($resource instanceof StreamInterface) {
312
+ return $resource;
313
+ } elseif ($resource instanceof \Iterator) {
314
+ return new PumpStream(function () use ($resource) {
315
+ if (!$resource->valid()) {
316
+ return false;
317
+ }
318
+ $result = $resource->current();
319
+ $resource->next();
320
+ return $result;
321
+ }, $options);
322
+ } elseif (method_exists($resource, '__toString')) {
323
+ return Utils::streamFor((string) $resource, $options);
324
+ }
325
+ break;
326
+ case 'NULL':
327
+ return new Stream(fopen('php://temp', 'r+'), $options);
328
+ }
329
+
330
+ if (is_callable($resource)) {
331
+ return new PumpStream($resource, $options);
332
+ }
333
+
334
+ throw new \InvalidArgumentException('Invalid resource type: ' . gettype($resource));
335
+ }
336
+
337
+ /**
338
+ * Safely opens a PHP stream resource using a filename.
339
+ *
340
+ * When fopen fails, PHP normally raises a warning. This function adds an
341
+ * error handler that checks for errors and throws an exception instead.
342
+ *
343
+ * @param string $filename File to open
344
+ * @param string $mode Mode used to open the file
345
+ *
346
+ * @return resource
347
+ *
348
+ * @throws \RuntimeException if the file cannot be opened
349
+ */
350
+ public static function tryFopen($filename, $mode)
351
+ {
352
+ $ex = null;
353
+ set_error_handler(function () use ($filename, $mode, &$ex) {
354
+ $ex = new \RuntimeException(sprintf(
355
+ 'Unable to open %s using mode %s: %s',
356
+ $filename,
357
+ $mode,
358
+ func_get_args()[1]
359
+ ));
360
+ });
361
+
362
+ $handle = fopen($filename, $mode);
363
+ restore_error_handler();
364
+
365
+ if ($ex) {
366
+ /** @var $ex \RuntimeException */
367
+ throw $ex;
368
+ }
369
+
370
+ return $handle;
371
+ }
372
+
373
+ /**
374
+ * Returns a UriInterface for the given value.
375
+ *
376
+ * This function accepts a string or UriInterface and returns a
377
+ * UriInterface for the given value. If the value is already a
378
+ * UriInterface, it is returned as-is.
379
+ *
380
+ * @param string|UriInterface $uri
381
+ *
382
+ * @return UriInterface
383
+ *
384
+ * @throws \InvalidArgumentException
385
+ */
386
+ public static function uriFor($uri)
387
+ {
388
+ if ($uri instanceof UriInterface) {
389
+ return $uri;
390
+ }
391
+
392
+ if (is_string($uri)) {
393
+ return new Uri($uri);
394
+ }
395
+
396
+ throw new \InvalidArgumentException('URI must be a string or UriInterface');
397
+ }
398
+ }
vendor/guzzlehttp/psr7/src/functions.php CHANGED
@@ -1,10 +1,9 @@
1
  <?php
 
2
  namespace GuzzleHttp\Psr7;
3
 
4
  use Psr\Http\Message\MessageInterface;
5
  use Psr\Http\Message\RequestInterface;
6
- use Psr\Http\Message\ResponseInterface;
7
- use Psr\Http\Message\ServerRequestInterface;
8
  use Psr\Http\Message\StreamInterface;
9
  use Psr\Http\Message\UriInterface;
10
 
@@ -14,52 +13,32 @@ use Psr\Http\Message\UriInterface;
14
  * @param MessageInterface $message Message to convert to a string.
15
  *
16
  * @return string
 
 
17
  */
18
  function str(MessageInterface $message)
19
  {
20
- if ($message instanceof RequestInterface) {
21
- $msg = trim($message->getMethod() . ' '
22
- . $message->getRequestTarget())
23
- . ' HTTP/' . $message->getProtocolVersion();
24
- if (!$message->hasHeader('host')) {
25
- $msg .= "\r\nHost: " . $message->getUri()->getHost();
26
- }
27
- } elseif ($message instanceof ResponseInterface) {
28
- $msg = 'HTTP/' . $message->getProtocolVersion() . ' '
29
- . $message->getStatusCode() . ' '
30
- . $message->getReasonPhrase();
31
- } else {
32
- throw new \InvalidArgumentException('Unknown message type');
33
- }
34
-
35
- foreach ($message->getHeaders() as $name => $values) {
36
- $msg .= "\r\n{$name}: " . implode(', ', $values);
37
- }
38
-
39
- return "{$msg}\r\n\r\n" . $message->getBody();
40
  }
41
 
42
  /**
43
  * Returns a UriInterface for the given value.
44
  *
45
- * This function accepts a string or {@see Psr\Http\Message\UriInterface} and
46
- * returns a UriInterface for the given value. If the value is already a
47
- * `UriInterface`, it is returned as-is.
48
  *
49
  * @param string|UriInterface $uri
50
  *
51
  * @return UriInterface
 
52
  * @throws \InvalidArgumentException
 
 
53
  */
54
  function uri_for($uri)
55
  {
56
- if ($uri instanceof UriInterface) {
57
- return $uri;
58
- } elseif (is_string($uri)) {
59
- return new Uri($uri);
60
- }
61
-
62
- throw new \InvalidArgumentException('URI must be a string or UriInterface');
63
  }
64
 
65
  /**
@@ -69,86 +48,57 @@ function uri_for($uri)
69
  * - metadata: Array of custom metadata.
70
  * - size: Size of the stream.
71
  *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  * @param resource|string|null|int|float|bool|StreamInterface|callable|\Iterator $resource Entity body data
73
  * @param array $options Additional options
74
  *
75
  * @return StreamInterface
 
76
  * @throws \InvalidArgumentException if the $resource arg is not valid.
 
 
77
  */
78
  function stream_for($resource = '', array $options = [])
79
  {
80
- if (is_scalar($resource)) {
81
- $stream = fopen('php://temp', 'r+');
82
- if ($resource !== '') {
83
- fwrite($stream, $resource);
84
- fseek($stream, 0);
85
- }
86
- return new Stream($stream, $options);
87
- }
88
-
89
- switch (gettype($resource)) {
90
- case 'resource':
91
- return new Stream($resource, $options);
92
- case 'object':
93
- if ($resource instanceof StreamInterface) {
94
- return $resource;
95
- } elseif ($resource instanceof \Iterator) {
96
- return new PumpStream(function () use ($resource) {
97
- if (!$resource->valid()) {
98
- return false;
99
- }
100
- $result = $resource->current();
101
- $resource->next();
102
- return $result;
103
- }, $options);
104
- } elseif (method_exists($resource, '__toString')) {
105
- return stream_for((string) $resource, $options);
106
- }
107
- break;
108
- case 'NULL':
109
- return new Stream(fopen('php://temp', 'r+'), $options);
110
- }
111
-
112
- if (is_callable($resource)) {
113
- return new PumpStream($resource, $options);
114
- }
115
-
116
- throw new \InvalidArgumentException('Invalid resource type: ' . gettype($resource));
117
  }
118
 
119
  /**
120
  * Parse an array of header values containing ";" separated data into an
121
- * array of associative arrays representing the header key value pair
122
- * data of the header. When a parameter does not contain a value, but just
123
  * contains a key, this function will inject a key with a '' string value.
124
  *
125
  * @param string|array $header Header to parse into components.
126
  *
127
  * @return array Returns the parsed header values.
 
 
128
  */
129
  function parse_header($header)
130
  {
131
- static $trimmed = "\"' \n\t\r";
132
- $params = $matches = [];
133
-
134
- foreach (normalize_header($header) as $val) {
135
- $part = [];
136
- foreach (preg_split('/;(?=([^"]*"[^"]*")*[^"]*$)/', $val) as $kvp) {
137
- if (preg_match_all('/<[^>]+>|[^=]+/', $kvp, $matches)) {
138
- $m = $matches[0];
139
- if (isset($m[1])) {
140
- $part[trim($m[0], $trimmed)] = trim($m[1], $trimmed);
141
- } else {
142
- $part[] = trim($m[0], $trimmed);
143
- }
144
- }
145
- }
146
- if ($part) {
147
- $params[] = $part;
148
- }
149
- }
150
-
151
- return $params;
152
  }
153
 
154
  /**
@@ -158,32 +108,20 @@ function parse_header($header)
158
  * @param string|array $header Header to normalize.
159
  *
160
  * @return array Returns the normalized header field values.
 
 
161
  */
162
  function normalize_header($header)
163
  {
164
- if (!is_array($header)) {
165
- return array_map('trim', explode(',', $header));
166
- }
167
-
168
- $result = [];
169
- foreach ($header as $value) {
170
- foreach ((array) $value as $v) {
171
- if (strpos($v, ',') === false) {
172
- $result[] = $v;
173
- continue;
174
- }
175
- foreach (preg_split('/,(?=([^"]*"[^"]*")*[^"]*$)/', $v) as $vv) {
176
- $result[] = trim($vv);
177
- }
178
- }
179
- }
180
-
181
- return $result;
182
  }
183
 
184
  /**
185
  * Clone and modify a request with the given changes.
186
  *
 
 
 
187
  * The changes can be one of:
188
  * - method: (string) Changes the HTTP method.
189
  * - set_headers: (array) Sets the given headers.
@@ -197,72 +135,12 @@ function normalize_header($header)
197
  * @param array $changes Changes to apply.
198
  *
199
  * @return RequestInterface
 
 
200
  */
201
  function modify_request(RequestInterface $request, array $changes)
202
  {
203
- if (!$changes) {
204
- return $request;
205
- }
206
-
207
- $headers = $request->getHeaders();
208
-
209
- if (!isset($changes['uri'])) {
210
- $uri = $request->getUri();
211
- } else {
212
- // Remove the host header if one is on the URI
213
- if ($host = $changes['uri']->getHost()) {
214
- $changes['set_headers']['Host'] = $host;
215
-
216
- if ($port = $changes['uri']->getPort()) {
217
- $standardPorts = ['http' => 80, 'https' => 443];
218
- $scheme = $changes['uri']->getScheme();
219
- if (isset($standardPorts[$scheme]) && $port != $standardPorts[$scheme]) {
220
- $changes['set_headers']['Host'] .= ':'.$port;
221
- }
222
- }
223
- }
224
- $uri = $changes['uri'];
225
- }
226
-
227
- if (!empty($changes['remove_headers'])) {
228
- $headers = _caseless_remove($changes['remove_headers'], $headers);
229
- }
230
-
231
- if (!empty($changes['set_headers'])) {
232
- $headers = _caseless_remove(array_keys($changes['set_headers']), $headers);
233
- $headers = $changes['set_headers'] + $headers;
234
- }
235
-
236
- if (isset($changes['query'])) {
237
- $uri = $uri->withQuery($changes['query']);
238
- }
239
-
240
- if ($request instanceof ServerRequestInterface) {
241
- return (new ServerRequest(
242
- isset($changes['method']) ? $changes['method'] : $request->getMethod(),
243
- $uri,
244
- $headers,
245
- isset($changes['body']) ? $changes['body'] : $request->getBody(),
246
- isset($changes['version'])
247
- ? $changes['version']
248
- : $request->getProtocolVersion(),
249
- $request->getServerParams()
250
- ))
251
- ->withParsedBody($request->getParsedBody())
252
- ->withQueryParams($request->getQueryParams())
253
- ->withCookieParams($request->getCookieParams())
254
- ->withUploadedFiles($request->getUploadedFiles());
255
- }
256
-
257
- return new Request(
258
- isset($changes['method']) ? $changes['method'] : $request->getMethod(),
259
- $uri,
260
- $headers,
261
- isset($changes['body']) ? $changes['body'] : $request->getBody(),
262
- isset($changes['version'])
263
- ? $changes['version']
264
- : $request->getProtocolVersion()
265
- );
266
  }
267
 
268
  /**
@@ -274,14 +152,12 @@ function modify_request(RequestInterface $request, array $changes)
274
  * @param MessageInterface $message Message to rewind
275
  *
276
  * @throws \RuntimeException
 
 
277
  */
278
  function rewind_body(MessageInterface $message)
279
  {
280
- $body = $message->getBody();
281
-
282
- if ($body->tell()) {
283
- $body->rewind();
284
- }
285
  }
286
 
287
  /**
@@ -294,29 +170,14 @@ function rewind_body(MessageInterface $message)
294
  * @param string $mode Mode used to open the file
295
  *
296
  * @return resource
 
297
  * @throws \RuntimeException if the file cannot be opened
 
 
298
  */
299
  function try_fopen($filename, $mode)
300
  {
301
- $ex = null;
302
- set_error_handler(function () use ($filename, $mode, &$ex) {
303
- $ex = new \RuntimeException(sprintf(
304
- 'Unable to open %s using mode %s: %s',
305
- $filename,
306
- $mode,
307
- func_get_args()[1]
308
- ));
309
- });
310
-
311
- $handle = fopen($filename, $mode);
312
- restore_error_handler();
313
-
314
- if ($ex) {
315
- /** @var $ex \RuntimeException */
316
- throw $ex;
317
- }
318
-
319
- return $handle;
320
  }
321
 
322
  /**
@@ -327,36 +188,14 @@ function try_fopen($filename, $mode)
327
  * @param int $maxLen Maximum number of bytes to read. Pass -1
328
  * to read the entire stream.
329
  * @return string
 
330
  * @throws \RuntimeException on error.
 
 
331
  */
332
  function copy_to_string(StreamInterface $stream, $maxLen = -1)
333
  {
334
- $buffer = '';
335
-
336
- if ($maxLen === -1) {
337
- while (!$stream->eof()) {
338
- $buf = $stream->read(1048576);
339
- // Using a loose equality here to match on '' and false.
340
- if ($buf == null) {
341
- break;
342
- }
343
- $buffer .= $buf;
344
- }
345
- return $buffer;
346
- }
347
-
348
- $len = 0;
349
- while (!$stream->eof() && $len < $maxLen) {
350
- $buf = $stream->read($maxLen - $len);
351
- // Using a loose equality here to match on '' and false.
352
- if ($buf == null) {
353
- break;
354
- }
355
- $buffer .= $buf;
356
- $len = strlen($buffer);
357
- }
358
-
359
- return $buffer;
360
  }
361
 
362
  /**
@@ -369,92 +208,48 @@ function copy_to_string(StreamInterface $stream, $maxLen = -1)
369
  * to read the entire stream.
370
  *
371
  * @throws \RuntimeException on error.
 
 
372
  */
373
- function copy_to_stream(
374
- StreamInterface $source,
375
- StreamInterface $dest,
376
- $maxLen = -1
377
- ) {
378
- $bufferSize = 8192;
379
-
380
- if ($maxLen === -1) {
381
- while (!$source->eof()) {
382
- if (!$dest->write($source->read($bufferSize))) {
383
- break;
384
- }
385
- }
386
- } else {
387
- $remaining = $maxLen;
388
- while ($remaining > 0 && !$source->eof()) {
389
- $buf = $source->read(min($bufferSize, $remaining));
390
- $len = strlen($buf);
391
- if (!$len) {
392
- break;
393
- }
394
- $remaining -= $len;
395
- $dest->write($buf);
396
- }
397
- }
398
  }
399
 
400
  /**
401
- * Calculate a hash of a Stream
 
 
 
402
  *
403
  * @param StreamInterface $stream Stream to calculate the hash for
404
  * @param string $algo Hash algorithm (e.g. md5, crc32, etc)
405
  * @param bool $rawOutput Whether or not to use raw output
406
  *
407
  * @return string Returns the hash of the stream
 
408
  * @throws \RuntimeException on error.
 
 
409
  */
410
- function hash(
411
- StreamInterface $stream,
412
- $algo,
413
- $rawOutput = false
414
- ) {
415
- $pos = $stream->tell();
416
-
417
- if ($pos > 0) {
418
- $stream->rewind();
419
- }
420
-
421
- $ctx = hash_init($algo);
422
- while (!$stream->eof()) {
423
- hash_update($ctx, $stream->read(1048576));
424
- }
425
-
426
- $out = hash_final($ctx, (bool) $rawOutput);
427
- $stream->seek($pos);
428
-
429
- return $out;
430
  }
431
 
432
  /**
433
- * Read a line from the stream up to the maximum allowed buffer length
434
  *
435
  * @param StreamInterface $stream Stream to read from
436
- * @param int $maxLength Maximum buffer length
437
  *
438
  * @return string
 
 
439
  */
440
  function readline(StreamInterface $stream, $maxLength = null)
441
  {
442
- $buffer = '';
443
- $size = 0;
444
-
445
- while (!$stream->eof()) {
446
- // Using a loose equality here to match on '' and false.
447
- if (null == ($byte = $stream->read(1))) {
448
- return $buffer;
449
- }
450
- $buffer .= $byte;
451
- // Break when a new line is found or the max length - 1 is reached
452
- if ($byte === "\n" || ++$size === $maxLength - 1) {
453
- break;
454
- }
455
- }
456
-
457
- return $buffer;
458
  }
459
 
460
  /**
@@ -463,26 +258,12 @@ function readline(StreamInterface $stream, $maxLength = null)
463
  * @param string $message Request message string.
464
  *
465
  * @return Request
 
 
466
  */
467
  function parse_request($message)
468
  {
469
- $data = _parse_message($message);
470
- $matches = [];
471
- if (!preg_match('/^[\S]+\s+([a-zA-Z]+:\/\/|\/).*/', $data['start-line'], $matches)) {
472
- throw new \InvalidArgumentException('Invalid request string');
473
- }
474
- $parts = explode(' ', $data['start-line'], 3);
475
- $version = isset($parts[2]) ? explode('/', $parts[2])[1] : '1.1';
476
-
477
- $request = new Request(
478
- $parts[0],
479
- $matches[1] === '/' ? _parse_request_uri($parts[1], $data['headers']) : $parts[1],
480
- $data['headers'],
481
- $data['body'],
482
- $version
483
- );
484
-
485
- return $matches[1] === '/' ? $request : $request->withRequestTarget($parts[1]);
486
  }
487
 
488
  /**
@@ -491,139 +272,66 @@ function parse_request($message)
491
  * @param string $message Response message string.
492
  *
493
  * @return Response
 
 
494
  */
495
  function parse_response($message)
496
  {
497
- $data = _parse_message($message);
498
- // According to https://tools.ietf.org/html/rfc7230#section-3.1.2 the space
499
- // between status-code and reason-phrase is required. But browsers accept
500
- // responses without space and reason as well.
501
- if (!preg_match('/^HTTP\/.* [0-9]{3}( .*|$)/', $data['start-line'])) {
502
- throw new \InvalidArgumentException('Invalid response string: ' . $data['start-line']);
503
- }
504
- $parts = explode(' ', $data['start-line'], 3);
505
-
506
- return new Response(
507
- $parts[1],
508
- $data['headers'],
509
- $data['body'],
510
- explode('/', $parts[0])[1],
511
- isset($parts[2]) ? $parts[2] : null
512
- );
513
  }
514
 
515
  /**
516
  * Parse a query string into an associative array.
517
  *
518
- * If multiple values are found for the same key, the value of that key
519
- * value pair will become an array. This function does not parse nested
520
- * PHP style arrays into an associative array (e.g., foo[a]=1&foo[b]=2 will
521
- * be parsed into ['foo[a]' => '1', 'foo[b]' => '2']).
522
  *
523
  * @param string $str Query string to parse
524
  * @param int|bool $urlEncoding How the query string is encoded
525
  *
526
  * @return array
 
 
527
  */
528
  function parse_query($str, $urlEncoding = true)
529
  {
530
- $result = [];
531
-
532
- if ($str === '') {
533
- return $result;
534
- }
535
-
536
- if ($urlEncoding === true) {
537
- $decoder = function ($value) {
538
- return rawurldecode(str_replace('+', ' ', $value));
539
- };
540
- } elseif ($urlEncoding === PHP_QUERY_RFC3986) {
541
- $decoder = 'rawurldecode';
542
- } elseif ($urlEncoding === PHP_QUERY_RFC1738) {
543
- $decoder = 'urldecode';
544
- } else {
545
- $decoder = function ($str) { return $str; };
546
- }
547
-
548
- foreach (explode('&', $str) as $kvp) {
549
- $parts = explode('=', $kvp, 2);
550
- $key = $decoder($parts[0]);
551
- $value = isset($parts[1]) ? $decoder($parts[1]) : null;
552
- if (!isset($result[$key])) {
553
- $result[$key] = $value;
554
- } else {
555
- if (!is_array($result[$key])) {
556
- $result[$key] = [$result[$key]];
557
- }
558
- $result[$key][] = $value;
559
- }
560
- }
561
-
562
- return $result;
563
  }
564
 
565
  /**
566
  * Build a query string from an array of key value pairs.
567
  *
568
- * This function can use the return value of parse_query() to build a query
569
  * string. This function does not modify the provided keys when an array is
570
- * encountered (like http_build_query would).
571
  *
572
  * @param array $params Query string parameters.
573
  * @param int|false $encoding Set to false to not encode, PHP_QUERY_RFC3986
574
  * to encode using RFC3986, or PHP_QUERY_RFC1738
575
  * to encode using RFC1738.
576
  * @return string
 
 
577
  */
578
  function build_query(array $params, $encoding = PHP_QUERY_RFC3986)
579
  {
580
- if (!$params) {
581
- return '';
582
- }
583
-
584
- if ($encoding === false) {
585
- $encoder = function ($str) { return $str; };
586
- } elseif ($encoding === PHP_QUERY_RFC3986) {
587
- $encoder = 'rawurlencode';
588
- } elseif ($encoding === PHP_QUERY_RFC1738) {
589
- $encoder = 'urlencode';
590
- } else {
591
- throw new \InvalidArgumentException('Invalid type');
592
- }
593
-
594
- $qs = '';
595
- foreach ($params as $k => $v) {
596
- $k = $encoder($k);
597
- if (!is_array($v)) {
598
- $qs .= $k;
599
- if ($v !== null) {
600
- $qs .= '=' . $encoder($v);
601
- }
602
- $qs .= '&';
603
- } else {
604
- foreach ($v as $vv) {
605
- $qs .= $k;
606
- if ($vv !== null) {
607
- $qs .= '=' . $encoder($vv);
608
- }
609
- $qs .= '&';
610
- }
611
- }
612
- }
613
-
614
- return $qs ? (string) substr($qs, 0, -1) : '';
615
  }
616
 
617
  /**
618
  * Determines the mimetype of a file by looking at its extension.
619
  *
620
- * @param $filename
 
 
621
  *
622
- * @return null|string
623
  */
624
  function mimetype_from_filename($filename)
625
  {
626
- return mimetype_from_extension(pathinfo($filename, PATHINFO_EXTENSION));
627
  }
628
 
629
  /**
@@ -632,119 +340,13 @@ function mimetype_from_filename($filename)
632
  * @param $extension string The file extension.
633
  *
634
  * @return string|null
 
635
  * @link http://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x/conf/mime.types
 
636
  */
637
  function mimetype_from_extension($extension)
638
  {
639
- static $mimetypes = [
640
- '3gp' => 'video/3gpp',
641
- '7z' => 'application/x-7z-compressed',
642
- 'aac' => 'audio/x-aac',
643
- 'ai' => 'application/postscript',
644
- 'aif' => 'audio/x-aiff',
645
- 'asc' => 'text/plain',
646
- 'asf' => 'video/x-ms-asf',
647
- 'atom' => 'application/atom+xml',
648
- 'avi' => 'video/x-msvideo',
649
- 'bmp' => 'image/bmp',
650
- 'bz2' => 'application/x-bzip2',
651
- 'cer' => 'application/pkix-cert',
652
- 'crl' => 'application/pkix-crl',
653
- 'crt' => 'application/x-x509-ca-cert',
654
- 'css' => 'text/css',
655
- 'csv' => 'text/csv',
656
- 'cu' => 'application/cu-seeme',
657
- 'deb' => 'application/x-debian-package',
658
- 'doc' => 'application/msword',
659
- 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
660
- 'dvi' => 'application/x-dvi',
661
- 'eot' => 'application/vnd.ms-fontobject',
662
- 'eps' => 'application/postscript',
663
- 'epub' => 'application/epub+zip',
664
- 'etx' => 'text/x-setext',
665
- 'flac' => 'audio/flac',
666
- 'flv' => 'video/x-flv',
667
- 'gif' => 'image/gif',
668
- 'gz' => 'application/gzip',
669
- 'htm' => 'text/html',
670
- 'html' => 'text/html',
671
- 'ico' => 'image/x-icon',
672
- 'ics' => 'text/calendar',
673
- 'ini' => 'text/plain',
674
- 'iso' => 'application/x-iso9660-image',
675
- 'jar' => 'application/java-archive',
676
- 'jpe' => 'image/jpeg',
677
- 'jpeg' => 'image/jpeg',
678
- 'jpg' => 'image/jpeg',
679
- 'js' => 'text/javascript',
680
- 'json' => 'application/json',
681
- 'latex' => 'application/x-latex',
682
- 'log' => 'text/plain',
683
- 'm4a' => 'audio/mp4',
684
- 'm4v' => 'video/mp4',
685
- 'mid' => 'audio/midi',
686
- 'midi' => 'audio/midi',
687
- 'mov' => 'video/quicktime',
688
- 'mkv' => 'video/x-matroska',
689
- 'mp3' => 'audio/mpeg',
690
- 'mp4' => 'video/mp4',
691
- 'mp4a' => 'audio/mp4',
692
- 'mp4v' => 'video/mp4',
693
- 'mpe' => 'video/mpeg',
694
- 'mpeg' => 'video/mpeg',
695
- 'mpg' => 'video/mpeg',
696
- 'mpg4' => 'video/mp4',
697
- 'oga' => 'audio/ogg',
698
- 'ogg' => 'audio/ogg',
699
- 'ogv' => 'video/ogg',
700
- 'ogx' => 'application/ogg',
701
- 'pbm' => 'image/x-portable-bitmap',
702
- 'pdf' => 'application/pdf',
703
- 'pgm' => 'image/x-portable-graymap',
704
- 'png' => 'image/png',
705
- 'pnm' => 'image/x-portable-anymap',
706
- 'ppm' => 'image/x-portable-pixmap',
707
- 'ppt' => 'application/vnd.ms-powerpoint',
708
- 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
709
- 'ps' => 'application/postscript',
710
- 'qt' => 'video/quicktime',
711
- 'rar' => 'application/x-rar-compressed',
712
- 'ras' => 'image/x-cmu-raster',
713
- 'rss' => 'application/rss+xml',
714
- 'rtf' => 'application/rtf',
715
- 'sgm' => 'text/sgml',
716
- 'sgml' => 'text/sgml',
717
- 'svg' => 'image/svg+xml',
718
- 'swf' => 'application/x-shockwave-flash',
719
- 'tar' => 'application/x-tar',
720
- 'tif' => 'image/tiff',
721
- 'tiff' => 'image/tiff',
722
- 'torrent' => 'application/x-bittorrent',
723
- 'ttf' => 'application/x-font-ttf',
724
- 'txt' => 'text/plain',
725
- 'wav' => 'audio/x-wav',
726
- 'webm' => 'video/webm',
727
- 'webp' => 'image/webp',
728
- 'wma' => 'audio/x-ms-wma',
729
- 'wmv' => 'video/x-ms-wmv',
730
- 'woff' => 'application/x-font-woff',
731
- 'wsdl' => 'application/wsdl+xml',
732
- 'xbm' => 'image/x-xbitmap',
733
- 'xls' => 'application/vnd.ms-excel',
734
- 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
735
- 'xml' => 'application/xml',
736
- 'xpm' => 'image/x-xpixmap',
737
- 'xwd' => 'image/x-xwindowdump',
738
- 'yaml' => 'text/yaml',
739
- 'yml' => 'text/yaml',
740
- 'zip' => 'application/zip',
741
- ];
742
-
743
- $extension = strtolower($extension);
744
-
745
- return isset($mimetypes[$extension])
746
- ? $mimetypes[$extension]
747
- : null;
748
  }
749
 
750
  /**
@@ -757,61 +359,13 @@ function mimetype_from_extension($extension)
757
  * @param string $message HTTP request or response to parse.
758
  *
759
  * @return array
 
760
  * @internal
 
761
  */
762
  function _parse_message($message)
763
  {
764
- if (!$message) {
765
- throw new \InvalidArgumentException('Invalid message');
766
- }
767
-
768
- $message = ltrim($message, "\r\n");
769
-
770
- $messageParts = preg_split("/\r?\n\r?\n/", $message, 2);
771
-
772
- if ($messageParts === false || count($messageParts) !== 2) {
773
- throw new \InvalidArgumentException('Invalid message: Missing header delimiter');
774
- }
775
-
776
- list($rawHeaders, $body) = $messageParts;
777
- $rawHeaders .= "\r\n"; // Put back the delimiter we split previously
778
- $headerParts = preg_split("/\r?\n/", $rawHeaders, 2);
779
-
780
- if ($headerParts === false || count($headerParts) !== 2) {
781
- throw new \InvalidArgumentException('Invalid message: Missing status line');
782
- }
783
-
784
- list($startLine, $rawHeaders) = $headerParts;
785
-
786
- if (preg_match("/(?:^HTTP\/|^[A-Z]+ \S+ HTTP\/)(\d+(?:\.\d+)?)/i", $startLine, $matches) && $matches[1] === '1.0') {
787
- // Header folding is deprecated for HTTP/1.1, but allowed in HTTP/1.0
788
- $rawHeaders = preg_replace(Rfc7230::HEADER_FOLD_REGEX, ' ', $rawHeaders);
789
- }
790
-
791
- /** @var array[] $headerLines */
792
- $count = preg_match_all(Rfc7230::HEADER_REGEX, $rawHeaders, $headerLines, PREG_SET_ORDER);
793
-
794
- // If these aren't the same, then one line didn't match and there's an invalid header.
795
- if ($count !== substr_count($rawHeaders, "\n")) {
796
- // Folding is deprecated, see https://tools.ietf.org/html/rfc7230#section-3.2.4
797
- if (preg_match(Rfc7230::HEADER_FOLD_REGEX, $rawHeaders)) {
798
- throw new \InvalidArgumentException('Invalid header syntax: Obsolete line folding');
799
- }
800
-
801
- throw new \InvalidArgumentException('Invalid header syntax');
802
- }
803
-
804
- $headers = [];
805
-
806
- foreach ($headerLines as $headerLine) {
807
- $headers[$headerLine[1]][] = $headerLine[2];
808
- }
809
-
810
- return [
811
- 'start-line' => $startLine,
812
- 'headers' => $headers,
813
- 'body' => $body,
814
- ];
815
  }
816
 
817
  /**
@@ -821,79 +375,43 @@ function _parse_message($message)
821
  * @param array $headers Array of headers (each value an array).
822
  *
823
  * @return string
 
824
  * @internal
 
825
  */
826
  function _parse_request_uri($path, array $headers)
827
  {
828
- $hostKey = array_filter(array_keys($headers), function ($k) {
829
- return strtolower($k) === 'host';
830
- });
831
-
832
- // If no host is found, then a full URI cannot be constructed.
833
- if (!$hostKey) {
834
- return $path;
835
- }
836
-
837
- $host = $headers[reset($hostKey)][0];
838
- $scheme = substr($host, -4) === ':443' ? 'https' : 'http';
839
-
840
- return $scheme . '://' . $host . '/' . ltrim($path, '/');
841
  }
842
 
843
  /**
844
- * Get a short summary of the message body
845
  *
846
  * Will return `null` if the response is not printable.
847
  *
848
  * @param MessageInterface $message The message to get the body summary
849
  * @param int $truncateAt The maximum allowed size of the summary
850
  *
851
- * @return null|string
 
 
852
  */
853
  function get_message_body_summary(MessageInterface $message, $truncateAt = 120)
854
  {
855
- $body = $message->getBody();
856
-
857
- if (!$body->isSeekable() || !$body->isReadable()) {
858
- return null;
859
- }
860
-
861
- $size = $body->getSize();
862
-
863
- if ($size === 0) {
864
- return null;
865
- }
866
-
867
- $summary = $body->read($truncateAt);
868
- $body->rewind();
869
-
870
- if ($size > $truncateAt) {
871
- $summary .= ' (truncated...)';
872
- }
873
-
874
- // Matches any printable character, including unicode characters:
875
- // letters, marks, numbers, punctuation, spacing, and separators.
876
- if (preg_match('/[^\pL\pM\pN\pP\pS\pZ\n\r\t]/', $summary)) {
877
- return null;
878
- }
879
-
880
- return $summary;
881
  }
882
 
883
- /** @internal */
 
 
 
 
 
 
 
 
 
884
  function _caseless_remove($keys, array $data)
885
  {
886
- $result = [];
887
-
888
- foreach ($keys as &$key) {
889
- $key = strtolower($key);
890
- }
891
-
892
- foreach ($data as $k => $v) {
893
- if (!in_array(strtolower($k), $keys)) {
894
- $result[$k] = $v;
895
- }
896
- }
897
-
898
- return $result;
899
  }
1
  <?php
2
+
3
  namespace GuzzleHttp\Psr7;
4
 
5
  use Psr\Http\Message\MessageInterface;
6
  use Psr\Http\Message\RequestInterface;
 
 
7
  use Psr\Http\Message\StreamInterface;
8
  use Psr\Http\Message\UriInterface;
9
 
13
  * @param MessageInterface $message Message to convert to a string.
14
  *
15
  * @return string
16
+ *
17
+ * @deprecated str will be removed in guzzlehttp/psr7:2.0. Use Message::toString instead.
18
  */
19
  function str(MessageInterface $message)
20
  {
21
+ return Message::toString($message);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  }
23
 
24
  /**
25
  * Returns a UriInterface for the given value.
26
  *
27
+ * This function accepts a string or UriInterface and returns a
28
+ * UriInterface for the given value. If the value is already a
29
+ * UriInterface, it is returned as-is.
30
  *
31
  * @param string|UriInterface $uri
32
  *
33
  * @return UriInterface
34
+ *
35
  * @throws \InvalidArgumentException
36
+ *
37
+ * @deprecated uri_for will be removed in guzzlehttp/psr7:2.0. Use Utils::uriFor instead.
38
  */
39
  function uri_for($uri)
40
  {
41
+ return Utils::uriFor($uri);
 
 
 
 
 
 
42
  }
43
 
44
  /**
48
  * - metadata: Array of custom metadata.
49
  * - size: Size of the stream.
50
  *
51
+ * This method accepts the following `$resource` types:
52
+ * - `Psr\Http\Message\StreamInterface`: Returns the value as-is.
53
+ * - `string`: Creates a stream object that uses the given string as the contents.
54
+ * - `resource`: Creates a stream object that wraps the given PHP stream resource.
55
+ * - `Iterator`: If the provided value implements `Iterator`, then a read-only
56
+ * stream object will be created that wraps the given iterable. Each time the
57
+ * stream is read from, data from the iterator will fill a buffer and will be
58
+ * continuously called until the buffer is equal to the requested read size.
59
+ * Subsequent read calls will first read from the buffer and then call `next`
60
+ * on the underlying iterator until it is exhausted.
61
+ * - `object` with `__toString()`: If the object has the `__toString()` method,
62
+ * the object will be cast to a string and then a stream will be returned that
63
+ * uses the string value.
64
+ * - `NULL`: When `null` is passed, an empty stream object is returned.
65
+ * - `callable` When a callable is passed, a read-only stream object will be
66
+ * created that invokes the given callable. The callable is invoked with the
67
+ * number of suggested bytes to read. The callable can return any number of
68
+ * bytes, but MUST return `false` when there is no more data to return. The
69
+ * stream object that wraps the callable will invoke the callable until the
70
+ * number of requested bytes are available. Any additional bytes will be
71
+ * buffered and used in subsequent reads.
72
+ *
73
  * @param resource|string|null|int|float|bool|StreamInterface|callable|\Iterator $resource Entity body data
74
  * @param array $options Additional options
75
  *
76
  * @return StreamInterface
77
+ *
78
  * @throws \InvalidArgumentException if the $resource arg is not valid.
79
+ *
80
+ * @deprecated stream_for will be removed in guzzlehttp/psr7:2.0. Use Utils::streamFor instead.
81
  */
82
  function stream_for($resource = '', array $options = [])
83
  {
84
+ return Utils::streamFor($resource, $options);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  }
86
 
87
  /**
88
  * Parse an array of header values containing ";" separated data into an
89
+ * array of associative arrays representing the header key value pair data
90
+ * of the header. When a parameter does not contain a value, but just
91
  * contains a key, this function will inject a key with a '' string value.
92
  *
93
  * @param string|array $header Header to parse into components.
94
  *
95
  * @return array Returns the parsed header values.
96
+ *
97
+ * @deprecated parse_header will be removed in guzzlehttp/psr7:2.0. Use Header::parse instead.
98
  */
99
  function parse_header($header)
100
  {
101
+ return Header::parse($header);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  }
103
 
104
  /**
108
  * @param string|array $header Header to normalize.
109
  *
110
  * @return array Returns the normalized header field values.
111
+ *
112
+ * @deprecated normalize_header will be removed in guzzlehttp/psr7:2.0. Use Header::normalize instead.
113
  */
114
  function normalize_header($header)
115
  {
116
+ return Header::normalize($header);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  }
118
 
119
  /**
120
  * Clone and modify a request with the given changes.
121
  *
122
+ * This method is useful for reducing the number of clones needed to mutate a
123
+ * message.
124
+ *
125
  * The changes can be one of:
126
  * - method: (string) Changes the HTTP method.
127
  * - set_headers: (array) Sets the given headers.
135
  * @param array $changes Changes to apply.
136
  *
137
  * @return RequestInterface
138
+ *
139
+ * @deprecated modify_request will be removed in guzzlehttp/psr7:2.0. Use Utils::modifyRequest instead.
140
  */
141
  function modify_request(RequestInterface $request, array $changes)
142
  {
143
+ return Utils::modifyRequest($request, $changes);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  }
145
 
146
  /**
152
  * @param MessageInterface $message Message to rewind
153
  *
154
  * @throws \RuntimeException
155
+ *
156
+ * @deprecated rewind_body will be removed in guzzlehttp/psr7:2.0. Use Message::rewindBody instead.
157
  */
158
  function rewind_body(MessageInterface $message)
159
  {
160
+ Message::rewindBody($message);
 
 
 
 
161
  }
162
 
163
  /**
170
  * @param string $mode Mode used to open the file
171
  *
172
  * @return resource
173
+ *
174
  * @throws \RuntimeException if the file cannot be opened
175
+ *
176
+ * @deprecated try_fopen will be removed in guzzlehttp/psr7:2.0. Use Utils::tryFopen instead.
177
  */
178
  function try_fopen($filename, $mode)
179
  {
180
+ return Utils::tryFopen($filename, $mode);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  }
182
 
183
  /**
188
  * @param int $maxLen Maximum number of bytes to read. Pass -1
189
  * to read the entire stream.
190
  * @return string
191
+ *
192
  * @throws \RuntimeException on error.
193
+ *
194
+ * @deprecated copy_to_string will be removed in guzzlehttp/psr7:2.0. Use Utils::copyToString instead.
195
  */
196
  function copy_to_string(StreamInterface $stream, $maxLen = -1)
197
  {
198
+ return Utils::copyToString($stream, $maxLen);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  }
200
 
201
  /**
208
  * to read the entire stream.
209
  *
210
  * @throws \RuntimeException on error.
211
+ *
212
+ * @deprecated copy_to_stream will be removed in guzzlehttp/psr7:2.0. Use Utils::copyToStream instead.
213
  */
214
+ function copy_to_stream(StreamInterface $source, StreamInterface $dest, $maxLen = -1)
215
+ {
216
+ return Utils::copyToStream($source, $dest, $maxLen);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  }
218
 
219
  /**
220
+ * Calculate a hash of a stream.
221
+ *
222
+ * This method reads the entire stream to calculate a rolling hash, based on
223
+ * PHP's `hash_init` functions.
224
  *
225
  * @param StreamInterface $stream Stream to calculate the hash for
226
  * @param string $algo Hash algorithm (e.g. md5, crc32, etc)
227
  * @param bool $rawOutput Whether or not to use raw output
228
  *
229
  * @return string Returns the hash of the stream
230
+ *
231
  * @throws \RuntimeException on error.
232
+ *
233
+ * @deprecated hash will be removed in guzzlehttp/psr7:2.0. Use Utils::hash instead.
234
  */
235
+ function hash(StreamInterface $stream, $algo, $rawOutput = false)
236
+ {
237
+ return Utils::hash($stream, $algo, $rawOutput);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
  }
239
 
240
  /**
241
+ * Read a line from the stream up to the maximum allowed buffer length.
242
  *
243
  * @param StreamInterface $stream Stream to read from
244
+ * @param int|null $maxLength Maximum buffer length
245
  *
246
  * @return string
247
+ *
248
+ * @deprecated readline will be removed in guzzlehttp/psr7:2.0. Use Utils::readLine instead.
249
  */
250
  function readline(StreamInterface $stream, $maxLength = null)
251
  {
252
+ return Utils::readLine($stream, $maxLength);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253
  }
254
 
255
  /**
258
  * @param string $message Request message string.
259
  *
260
  * @return Request
261
+ *
262
+ * @deprecated parse_request will be removed in guzzlehttp/psr7:2.0. Use Message::parseRequest instead.
263
  */
264
  function parse_request($message)
265
  {
266
+ return Message::parseRequest($message);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
267
  }
268
 
269
  /**
272
  * @param string $message Response message string.
273
  *
274
  * @return Response
275
+ *
276
+ * @deprecated parse_response will be removed in guzzlehttp/psr7:2.0. Use Message::parseResponse instead.
277
  */
278
  function parse_response($message)
279
  {
280
+ return Message::parseResponse($message);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
281
  }
282
 
283
  /**
284
  * Parse a query string into an associative array.
285
  *
286
+ * If multiple values are found for the same key, the value of that key value
287
+ * pair will become an array. This function does not parse nested PHP style
288
+ * arrays into an associative array (e.g., `foo[a]=1&foo[b]=2` will be parsed
289
+ * into `['foo[a]' => '1', 'foo[b]' => '2'])`.
290
  *
291
  * @param string $str Query string to parse
292
  * @param int|bool $urlEncoding How the query string is encoded
293
  *
294
  * @return array
295
+ *
296
+ * @deprecated parse_query will be removed in guzzlehttp/psr7:2.0. Use Query::parse instead.
297
  */
298
  function parse_query($str, $urlEncoding = true)
299
  {
300
+ return Query::parse($str, $urlEncoding);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
  }
302
 
303
  /**
304
  * Build a query string from an array of key value pairs.
305
  *
306
+ * This function can use the return value of `parse_query()` to build a query
307
  * string. This function does not modify the provided keys when an array is
308
+ * encountered (like `http_build_query()` would).
309
  *
310
  * @param array $params Query string parameters.
311
  * @param int|false $encoding Set to false to not encode, PHP_QUERY_RFC3986
312
  * to encode using RFC3986, or PHP_QUERY_RFC1738
313
  * to encode using RFC1738.
314
  * @return string
315
+ *
316
+ * @deprecated build_query will be removed in guzzlehttp/psr7:2.0. Use Query::build instead.
317
  */
318
  function build_query(array $params, $encoding = PHP_QUERY_RFC3986)
319
  {
320
+ return Query::build($params, $encoding);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
  }
322
 
323
  /**
324
  * Determines the mimetype of a file by looking at its extension.
325
  *
326
+ * @param string $filename
327
+ *
328
+ * @return string|null
329
  *
330
+ * @deprecated mimetype_from_filename will be removed in guzzlehttp/psr7:2.0. Use MimeType::fromFilename instead.
331
  */
332
  function mimetype_from_filename($filename)
333
  {
334
+ return MimeType::fromFilename($filename);
335
  }
336
 
337
  /**
340
  * @param $extension string The file extension.
341
  *
342
  * @return string|null
343
+ *
344
  * @link http://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x/conf/mime.types
345
+ * @deprecated mimetype_from_extension will be removed in guzzlehttp/psr7:2.0. Use MimeType::fromExtension instead.
346
  */
347
  function mimetype_from_extension($extension)
348
  {
349
+ return MimeType::fromExtension($extension);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
  }
351
 
352
  /**
359
  * @param string $message HTTP request or response to parse.
360
  *
361
  * @return array
362
+ *
363
  * @internal
364
+ * @deprecated _parse_message will be removed in guzzlehttp/psr7:2.0. Use Message::parseMessage instead.
365
  */
366
  function _parse_message($message)
367
  {
368
+ return Message::parseMessage($message);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  }
370
 
371
  /**
375
  * @param array $headers Array of headers (each value an array).
376
  *
377
  * @return string
378
+ *
379
  * @internal
380
+ * @deprecated _parse_request_uri will be removed in guzzlehttp/psr7:2.0. Use Message::parseRequestUri instead.
381
  */
382
  function _parse_request_uri($path, array $headers)
383
  {
384
+ return Message::parseRequestUri($path, $headers);
 
 
 
 
 
 
 
 
 
 
 
 
385
  }
386
 
387
  /**
388
+ * Get a short summary of the message body.
389
  *
390
  * Will return `null` if the response is not printable.
391
  *
392
  * @param MessageInterface $message The message to get the body summary
393
  * @param int $truncateAt The maximum allowed size of the summary
394
  *
395
+ * @return string|null
396
+ *
397
+ * @deprecated get_message_body_summary will be removed in guzzlehttp/psr7:2.0. Use Message::bodySummary instead.
398
  */
399
  function get_message_body_summary(MessageInterface $message, $truncateAt = 120)
400
  {
401
+ return Message::bodySummary($message, $truncateAt);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
402
  }
403
 
404
+ /**
405
+ * Remove the items given by the keys, case insensitively from the data.
406
+ *
407
+ * @param iterable<string> $keys
408
+ *
409
+ * @return array
410
+ *
411
+ * @internal
412
+ * @deprecated _caseless_remove will be removed in guzzlehttp/psr7:2.0. Use Utils::caselessRemove instead.
413
+ */
414
  function _caseless_remove($keys, array $data)
415
  {
416
+ return Utils::caselessRemove($keys, $data);
 
 
 
 
 
 
 
 
 
 
 
 
417
  }
vendor/mollie/mollie-api-php/.phpstan.ignoreErrors.neon ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ parameters:
2
+ ignoreErrors:
3
+ -
4
+ message: '/Variable \$mollie might not be defined./'
5
+ paths:
6
+ - %currentWorkingDirectory%/examples
7
+
8
+ -
9
+ message: "#^Call to an undefined method Mollie\\\\Api\\\\Endpoints\\\\EndpointAbstract\\:\\:getResourceCollectionObject\\(\\)\\.$#"
10
+ count: 1
11
+ path: src/Endpoints/EndpointAbstract.php
12
+
13
+ -
14
+ message: '/Access to undefined constant GuzzleHttp\\ClientInterface::/'
15
+ path: src/MollieApiClient.php
16
+ count: 1
vendor/mollie/mollie-api-php/LICENSE DELETED
@@ -1,8 +0,0 @@
1
- Copyright (c) 2013-2016, Mollie B.V.
2
- All rights reserved.
3
-
4
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
-
6
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 
 
 
 
 
 
 
vendor/mollie/mollie-api-php/examples/payments/list-methods.php CHANGED
@@ -15,7 +15,7 @@ try {
15
  * By default we are using the resource "payments".
16
  * See the orders folder for an example with the Orders API.
17
  */
18
- $methods = $mollie->methods->all();
19
  foreach ($methods as $method) {
20
  echo '<div style="line-height:40px; vertical-align:top">';
21
  echo '<img src="' . htmlspecialchars($method->image->size1x) . '" srcset="' . htmlspecialchars($method->image->size2x) . ' 2x"> ';
15
  * By default we are using the resource "payments".
16
  * See the orders folder for an example with the Orders API.
17
  */
18
+ $methods = $mollie->methods->allActive();
19
  foreach ($methods as $method) {
20
  echo '<div style="line-height:40px; vertical-align:top">';
21
  echo '<img src="' . htmlspecialchars($method->image->size1x) . '" srcset="' . htmlspecialchars($method->image->size2x) . ' 2x"> ';
vendor/mollie/mollie-api-php/examples/shipments/create-shipment-partial.php CHANGED
@@ -15,7 +15,7 @@ try {
15
  * See: https://docs.mollie.com/reference/v2/shipments-api/create-shipment
16
  */
17
 
18
- $order = $this->getOrder('ord_8wmqcHMN4U');
19
  $lineId1 = $order->lines()[0]->id;
20
  $lineId2 = $order->lines()[1]->id;
21
  $shipment = $order->createShipment(
15
  * See: https://docs.mollie.com/reference/v2/shipments-api/create-shipment
16
  */
17
 
18
+ $order = $mollie->orders->get('ord_8wmqcHMN4U');
19
  $lineId1 = $order->lines()[0]->id;
20
  $lineId2 = $order->lines()[1]->id;
21
  $shipment = $order->createShipment(
vendor/mollie/mollie-api-php/phpstan.neon ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ parameters:
2
+ level: 1
3
+ paths:
4
+ - %currentWorkingDirectory%/src
5
+ - %currentWorkingDirectory%/tests
6
+ - %currentWorkingDirectory%/examples
7
+ excludes_analyse:
8
+ - %currentWorkingDirectory%/vendor
9
+ includes:
10
+ - .phpstan.ignoreErrors.neon
vendor/mollie/mollie-api-php/src/Endpoints/EndpointAbstract.php CHANGED
@@ -141,7 +141,7 @@ abstract class EndpointAbstract
141
  * @return BaseCollection
142
  * @throws ApiException
143
  */
144
- protected function rest_list($from = null, $limit = null, array $filters)
145
  {
146
  $filters = array_merge(["from" => $from, "limit" => $limit], $filters);
147
 
141
  * @return BaseCollection
142
  * @throws ApiException
143
  */
144
+ protected function rest_list($from = null, $limit = null, array $filters = [])
145
  {
146
  $filters = array_merge(["from" => $from, "limit" => $limit], $filters);
147
 
vendor/mollie/mollie-api-php/src/Endpoints/MandateEndpoint.php CHANGED
@@ -110,7 +110,7 @@ class MandateEndpoint extends CollectionEndpointAbstract
110
  * @param null $limit
111
  * @param array $parameters
112
  *
113
- * @return \Mollie\Api\Resources\BaseCollection
114
  * @throws \Mollie\Api\Exceptions\ApiException
115
  */
116
  public function listForId($customerId, $from = null, $limit = null, array $parameters = [])
110
  * @param null $limit
111
  * @param array $parameters
112
  *
113
+ * @return \Mollie\Api\Resources\BaseCollection|\Mollie\Api\Resources\MandateCollection
114
  * @throws \Mollie\Api\Exceptions\ApiException
115
  */
116
  public function listForId($customerId, $from = null, $limit = null, array $parameters = [])
vendor/mollie/mollie-api-php/src/Endpoints/OnboardingEndpoint.php CHANGED
@@ -11,6 +11,10 @@ class OnboardingEndpoint extends EndpointAbstract
11
  {
12
  protected $resourcePath = "onboarding/me";
13
 
 
 
 
 
14
  /**
15
  * Get the object that is used by this API endpoint. Every API endpoint uses one type of object.
16
  *
11
  {
12
  protected $resourcePath = "onboarding/me";
13
 
14
+ protected function getResourceCollectionObject($count, $links)
15
+ {
16
+ throw new \BadMethodCallException('not implemented');
17
+ }
18
  /**
19
  * Get the object that is used by this API endpoint. Every API endpoint uses one type of object.
20
  *
vendor/mollie/mollie-api-php/src/Endpoints/OrderEndpoint.php CHANGED
@@ -85,12 +85,13 @@ class OrderEndpoint extends CollectionEndpointAbstract
85
  *
86
  * @param string $orderId
87
  *
 
88
  * @return Order
89
- * @throws ApiException
90
  */
91
- public function cancel($orderId)
92
  {
93
- return $this->rest_delete($orderId);
94
  }
95
 
96
  /**
85
  *
86
  * @param string $orderId
87
  *
88
+ * @param array $parameters
89
  * @return Order
90
+ * @throws \Mollie\Api\Exceptions\ApiException
91
  */
92
+ public function cancel($orderId, $parameters = [])
93
  {
94
+ return $this->rest_delete($orderId, $parameters);
95
  }
96
 
97
  /**
vendor/mollie/mollie-api-php/src/Endpoints/OrderLineEndpoint.php CHANGED
@@ -73,7 +73,7 @@ class OrderLineEndpoint extends CollectionEndpointAbstract
73
  */
74
  public function cancelForId($orderId, array $data)
75
  {
76
- if(! isset($data, $data['lines']) || ! is_array($data['lines'])) {
77
  throw new ApiException("A lines array is required.");
78
  }
79
  $this->parentId = $orderId;
73
  */
74
  public function cancelForId($orderId, array $data)
75
  {
76
+ if(! isset($data['lines']) || ! is_array($data['lines'])) {
77
  throw new ApiException("A lines array is required.");
78
  }
79
  $this->parentId = $orderId;
vendor/mollie/mollie-api-php/src/Endpoints/PermissionEndpoint.php CHANGED
@@ -32,7 +32,7 @@ class PermissionEndpoint extends CollectionEndpointAbstract
32
  */
33
  protected function getResourceCollectionObject($count, $_links)
34
  {
35
- return new PermissionCollection($this->client, $count, $_links);
36
  }
37
 
38
  /**
32
  */
33
  protected function getResourceCollectionObject($count, $_links)
34
  {
35
+ return new PermissionCollection($count, $_links);
36
  }
37
 
38
  /**
vendor/mollie/mollie-api-php/src/Endpoints/SettlementPaymentEndpoint.php ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Mollie\Api\Endpoints;
4
+
5
+ use Mollie\Api\Exceptions\ApiException;
6
+ use Mollie\Api\Resources\BaseCollection;
7
+ use Mollie\Api\Resources\Payment;
8
+ use Mollie\Api\Resources\PaymentCollection;
9
+
10
+ class SettlementPaymentEndpoint extends CollectionEndpointAbstract
11
+ {
12
+ protected $resourcePath = "settlements_payments";
13
+
14
+ /**
15
+ * @inheritDoc
16
+ */
17
+ protected function getResourceObject()
18
+ {
19
+ return new Payment($this->client);
20
+ }
21
+
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ protected function getResourceCollectionObject($count, $_links)
26
+ {
27
+ return new PaymentCollection($this->client, $count, $_links);
28
+ }
29
+
30
+ /**
31
+ * Retrieves a collection of Payments from Mollie.
32
+ *
33
+ * @param $settlementId
34
+ * @param string $from The first payment ID you want to include in your list.
35
+ * @param int $limit
36
+ * @param array $parameters
37
+ *
38
+ * @return BaseCollection|PaymentCollection
39
+ * @throws \Mollie\Api\Exceptions\ApiException
40
+ */
41
+ public function pageForId($settlementId, $from = null, $limit = null, array $parameters = [])
42
+ {
43
+ $this->parentId = $settlementId;
44
+
45
+ return $this->rest_list($from, $limit, $parameters);
46
+ }
47
+ }
vendor/mollie/mollie-api-php/src/Endpoints/ShipmentEndpoint.php CHANGED
@@ -36,7 +36,7 @@ class ShipmentEndpoint extends CollectionEndpointAbstract
36
  */
37
  protected function getResourceCollectionObject($count, $_links)
38
  {
39
- return new ShipmentCollection($this->client, $count, $_links);
40
  }
41
 
42
  /**
36
  */
37
  protected function getResourceCollectionObject($count, $_links)
38
  {
39
+ return new ShipmentCollection($count, $_links);
40
  }
41
 
42
  /**
vendor/mollie/mollie-api-php/src/Endpoints/SubscriptionEndpoint.php CHANGED
@@ -45,7 +45,21 @@ class SubscriptionEndpoint extends CollectionEndpointAbstract
45
  */
46
  public function createFor(Customer $customer, array $options = [], array $filters = [])
47
  {
48
- $this->parentId = $customer->id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
 
50
  return parent::rest_create($options, $filters);
51
  }
@@ -59,7 +73,19 @@ class SubscriptionEndpoint extends CollectionEndpointAbstract
59
  */
60
  public function getFor(Customer $customer, $subscriptionId, array $parameters = [])
61
  {
62
- $this->parentId = $customer->id;
 
 
 
 
 
 
 
 
 
 
 
 
63
 
64
  return parent::rest_read($subscriptionId, $parameters);
65
  }
@@ -74,7 +100,20 @@ class SubscriptionEndpoint extends CollectionEndpointAbstract
74
  */
75
  public function listFor(Customer $customer, $from = null, $limit = null, array $parameters = [])
76
  {
77
- $this->parentId = $customer->id;
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
  return parent::rest_list($from, $limit, $parameters);
80
  }
@@ -82,14 +121,27 @@ class SubscriptionEndpoint extends CollectionEndpointAbstract
82
  /**
83
  * @param Customer $customer
84
  * @param string $subscriptionId
85
- *
86
  * @param array $data
 
87
  * @return null
88
  * @throws \Mollie\Api\Exceptions\ApiException
89
  */
90
  public function cancelFor(Customer $customer, $subscriptionId, array $data = [])
91
  {
92
- $this->parentId = $customer->id;
 
 
 
 
 
 
 
 
 
 
 
 
 
93
 
94
  return parent::rest_delete($subscriptionId, $data);
95
  }
45
  */
46
  public function createFor(Customer $customer, array $options = [], array $filters = [])
47
  {
48
+ return $this->createForId($customer->id, $options, $filters);
49
+ }
50
+
51
+ /**
52
+ * Create a subscription for a Customer
53
+ *
54
+ * @param string $customerId
55
+ * @param array $options
56
+ * @param array $filters
57
+ *
58
+ * @return Subscription
59
+ */
60
+ public function createForId($customerId, array $options = [], array $filters = [])
61
+ {
62
+ $this->parentId = $customerId;
63
 
64
  return parent::rest_create($options, $filters);
65
  }
73
  */
74
  public function getFor(Customer $customer, $subscriptionId, array $parameters = [])
75
  {
76
+ return $this->getForId($customer->id, $subscriptionId, $parameters);
77
+ }
78
+
79
+ /**
80
+ * @param string $customerId
81
+ * @param string $subscriptionId
82
+ * @param array $parameters
83
+ *
84
+ * @return Subscription
85
+ */
86
+ public function getForId($customerId, $subscriptionId, array $parameters = [])
87
+ {
88
+ $this->parentId = $customerId;
89
 
90
  return parent::rest_read($subscriptionId, $parameters);
91
  }
100
  */
101
  public function listFor(Customer $customer, $from = null, $limit = null, array $parameters = [])
102
  {
103
+ return $this->listForId($customer->id, $from, $limit, $parameters);
104
+ }
105
+
106
+ /**
107
+ * @param string $customerId
108
+ * @param string $from The first resource ID you want to include in your list.
109
+ * @param int $limit
110
+ * @param array $parameters
111
+ *
112
+ * @return SubscriptionCollection
113
+ */
114
+ public function listForId($customerId, $from = null, $limit = null, array $parameters = [])
115
+ {
116
+ $this->parentId = $customerId;
117
 
118
  return parent::rest_list($from, $limit, $parameters);
119
  }
121
  /**
122
  * @param Customer $customer
123
  * @param string $subscriptionId
 
124
  * @param array $data
125
+ *
126
  * @return null
127
  * @throws \Mollie\Api\Exceptions\ApiException
128
  */
129
  public function cancelFor(Customer $customer, $subscriptionId, array $data = [])
130
  {
131
+ return $this->cancelForId($customer->id, $subscriptionId, $data);
132
+ }
133
+
134
+ /**
135
+ * @param string $customerId
136
+ * @param string $subscriptionId
137
+ * @param array $data
138
+ *
139
+ * @return null
140
+ * @throws \Mollie\Api\Exceptions\ApiException
141
+ */
142
+ public function cancelForId($customerId, $subscriptionId, array $data = [])
143
+ {
144
+ $this->parentId = $customerId;
145
 
146
  return parent::rest_delete($subscriptionId, $data);
147
  }
vendor/mollie/mollie-api-php/src/Exceptions/ApiException.php CHANGED
@@ -2,8 +2,9 @@
2
 
3
  namespace Mollie\Api\Exceptions;
4
 
5
- use GuzzleHttp\Psr7\Response;
6
- use Throwable;
 
7
 
8
  class ApiException extends \Exception
9
  {
@@ -13,10 +14,22 @@ class ApiException extends \Exception
13
  protected $field;
14
 
15
  /**
16
- * @var Response
 
 
 
 
 
17
  */
18
  protected $response;
19
 
 
 
 
 
 
 
 
20
  /**
21
  * @var array
22
  */
@@ -26,7 +39,8 @@ class ApiException extends \Exception
26
  * @param string $message
27
  * @param int $code
28
  * @param string|null $field
29
- * @param \GuzzleHttp\Psr7\Response|null $response
 
30
  * @param \Throwable|null $previous
31
  * @throws \Mollie\Api\Exceptions\ApiException
32
  */
@@ -34,10 +48,15 @@ class ApiException extends \Exception
34
  $message = "",
35
  $code = 0,
36
  $field = null,
37
- Response $response = null,
38
- Throwable $previous = null
39
- )
40
- {
 
 
 
 
 
41
  if (!empty($field)) {
42
  $this->field = (string)$field;
43
  $message .= ". Field: {$this->field}";
@@ -48,7 +67,7 @@ class ApiException extends \Exception
48
 
49
  $object = static::parseResponseBody($this->response);
50
 
51
- if(isset($object->_links)) {
52
  foreach ($object->_links as $key => $value) {
53
  $this->links[$key] = $value;
54
  }
@@ -59,34 +78,49 @@ class ApiException extends \Exception
59
  $message .= ". Documentation: {$this->getDocumentationUrl()}";
60
  }
61
 
 
 
 
 
 
 
 
 
 
62
  parent::__construct($message, $code, $previous);
63
  }
64
 
65
  /**
66
- * @param \GuzzleHttp\Exception\RequestException $guzzleException
67
- * @param \Throwable $previous
 
68
  * @return \Mollie\Api\Exceptions\ApiException
69
  * @throws \Mollie\Api\Exceptions\ApiException
70
  */
71
- public static function createFromGuzzleException($guzzleException, Throwable $previous = null)
 
 
 
 
72
  {
73
  // Not all Guzzle Exceptions implement hasResponse() / getResponse()
74
  if(method_exists($guzzleException, 'hasResponse') && method_exists($guzzleException, 'getResponse')) {
75
  if($guzzleException->hasResponse()) {
76
- return static::createFromResponse($guzzleException->getResponse());
77
  }
78
  }
79
 
80
- return new static($guzzleException->getMessage(), $guzzleException->getCode(), null, $previous);
81
  }
82
 
83
  /**
84
- * @param \Psr\Http\Message\ResponseInterface $response
 
85
  * @param \Throwable|null $previous
86
  * @return \Mollie\Api\Exceptions\ApiException
87
  * @throws \Mollie\Api\Exceptions\ApiException
88
  */
89
- public static function createFromResponse($response, Throwable $previous = null)
90
  {
91
  $object = static::parseResponseBody($response);
92
 
@@ -95,10 +129,11 @@ class ApiException extends \Exception
95
  $field = $object->field;
96
  }
97
 
98
- return new static(
99
  "Error executing API call ({$object->status}: {$object->title}): {$object->detail}",
100
  $response->getStatusCode(),
101
  $field,
 
102
  $response,
103
  $previous
104
  );
@@ -129,7 +164,7 @@ class ApiException extends \Exception
129
  }
130
 
131
  /**
132
- * @return Response|null
133
  */
134
  public function getResponse()
135
  {
@@ -159,7 +194,7 @@ class ApiException extends \Exception
159
  */
160
  public function getLink($key)
161
  {
162
- if($this->hasLink($key)) {
163
  return $this->links[$key];
164
  }
165
  return null;
@@ -171,14 +206,32 @@ class ApiException extends \Exception
171
  */
172
  public function getUrl($key)
173
  {
174
- if($this->hasLink($key)) {
175
  return $this->getLink($key)->href;
176
  }
177
  return null;
178
  }
179
 
180
  /**
181
- * @param $response
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  * @return mixed
183
  * @throws \Mollie\Api\Exceptions\ApiException
184
  */
@@ -189,7 +242,7 @@ class ApiException extends \Exception
189
  $object = @json_decode($body);
190
 
191
  if (json_last_error() !== JSON_ERROR_NONE) {
192
- throw new static("Unable to decode Mollie response: '{$body}'.");
193
  }
194
 
195
  return $object;
2
 
3
  namespace Mollie\Api\Exceptions;
4
 
5
+ use DateTime;
6
+ use Psr\Http\Message\RequestInterface;
7
+ use Psr\Http\Message\ResponseInterface;
8
 
9
  class ApiException extends \Exception
10
  {
14
  protected $field;
15
 
16
  /**
17
+ * @var RequestInterface
18
+ */
19
+ protected $request;
20
+
21
+ /**
22
+ * @var ResponseInterface
23
  */
24
  protected $response;
25
 
26
+ /**
27
+ * ISO8601 representation of the moment this exception was thrown
28
+ *
29
+ * @var \DateTimeImmutable
30
+ */
31
+ protected $raisedAt;
32
+
33
  /**
34
  * @var array
35
  */
39
  * @param string $message
40
  * @param int $code
41
  * @param string|null $field
42
+ * @param RequestInterface|null $request
43
+ * @param ResponseInterface|null $response
44
  * @param \Throwable|null $previous
45
  * @throws \Mollie\Api\Exceptions\ApiException
46
  */
48
  $message = "",
49
  $code = 0,
50
  $field = null,
51
+ RequestInterface $request = null,
52
+ ResponseInterface $response = null,
53
+ $previous = null
54
+ ) {
55
+ $this->raisedAt = new \DateTimeImmutable();
56
+
57
+ $formattedRaisedAt = $this->raisedAt->format(DateTime::ISO8601);
58
+ $message = "[{$formattedRaisedAt}] " . $message;
59
+
60
  if (!empty($field)) {
61
  $this->field = (string)$field;
62
  $message .= ". Field: {$this->field}";
67
 
68
  $object = static::parseResponseBody($this->response);
69
 
70
+ if (isset($object->_links)) {
71
  foreach ($object->_links as $key => $value) {
72
  $this->links[$key] = $value;
73
  }
78
  $message .= ". Documentation: {$this->getDocumentationUrl()}";
79
  }
80
 
81
+ $this->request = $request;
82
+ if ($request) {
83
+ $requestBody = $request->getBody()->__toString();
84
+
85
+ if ($requestBody) {
86
+ $message .= ". Request body: {$requestBody}";
87
+ }
88
+ }
89
+
90
  parent::__construct($message, $code, $previous);
91
  }
92
 
93
  /**
94
+ * @param \GuzzleHttp\Exception\GuzzleException $guzzleException
95
+ * @param RequestInterface|null $request
96
+ * @param \Throwable|null $previous
97
  * @return \Mollie\Api\Exceptions\ApiException
98
  * @throws \Mollie\Api\Exceptions\ApiException
99
  */
100
+ public static function createFromGuzzleException(
101
+ $guzzleException,
102
+ $request = null,
103
+ $previous = null
104
+ )
105
  {
106
  // Not all Guzzle Exceptions implement hasResponse() / getResponse()
107
  if(method_exists($guzzleException, 'hasResponse') && method_exists($guzzleException, 'getResponse')) {
108
  if($guzzleException->hasResponse()) {
109
+ return static::createFromResponse($guzzleException->getResponse(), $request, $previous);
110
  }
111
  }
112
 
113
+ return new self($guzzleException->getMessage(), $guzzleException->getCode(), null, $request, null, $previous);
114
  }
115
 
116
  /**
117
+ * @param ResponseInterface $response
118
+ * @param RequestInterface $request
119
  * @param \Throwable|null $previous
120
  * @return \Mollie\Api\Exceptions\ApiException
121
  * @throws \Mollie\Api\Exceptions\ApiException
122
  */
123
+ public static function createFromResponse(ResponseInterface $response, RequestInterface $request = null, $previous = null)
124
  {
125
  $object = static::parseResponseBody($response);
126
 
129
  $field = $object->field;
130
  }
131
 
132
+ return new self(
133
  "Error executing API call ({$object->status}: {$object->title}): {$object->detail}",
134
  $response->getStatusCode(),
135
  $field,
136
+ $request,
137
  $response,
138
  $previous
139
  );
164
  }
165
 
166
  /**
167
+ * @return ResponseInterface|null
168
  */
169
  public function getResponse()
170
  {
194
  */
195
  public function getLink($key)
196
  {
197
+ if ($this->hasLink($key)) {
198
  return $this->links[$key];
199
  }
200
  return null;
206
  */
207
  public function getUrl($key)
208
  {
209
+ if ($this->hasLink($key)) {
210
  return $this->getLink($key)->href;
211
  }
212
  return null;
213
  }
214
 
215
  /**
216
+ * @return RequestInterface
217
+ */
218
+ public function getRequest()
219
+ {
220
+ return $this->request;
221
+ }
222
+
223
+ /**
224
+ * Get the ISO8601 representation of the moment this exception was thrown
225
+ *
226
+ * @return \DateTimeImmutable
227
+ */
228
+ public function getRaisedAt()
229
+ {
230
+ return $this->raisedAt;
231
+ }
232
+
233
+ /**
234
+ * @param ResponseInterface $response
235
  * @return mixed
236
  * @throws \Mollie\Api\Exceptions\ApiException
237
  */
242
  $object = @json_decode($body);
243
 
244
  if (json_last_error() !== JSON_ERROR_NONE) {
245
+ throw new self("Unable to decode Mollie response: '{$body}'.");
246
  }
247
 
248
  return $object;
vendor/mollie/mollie-api-php/src/Guzzle/RetryMiddlewareFactory.php ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Mollie\Api\Guzzle;
4
+
5
+ use GuzzleHttp\Exception\ConnectException;
6
+ use GuzzleHttp\Exception\TransferException;
7
+ use GuzzleHttp\Middleware;
8
+ use GuzzleHttp\Psr7\Request;
9
+ use GuzzleHttp\Psr7\Response;
10
+
11
+ class RetryMiddlewareFactory
12
+ {
13
+ /**
14
+ * The maximum number of retries
15
+ */
16
+ const MAX_RETRIES = 5;
17
+
18
+ /**
19
+ * The amount of milliseconds the delay is being increased with on each retry.
20
+ */
21
+ const DELAY_INCREASE_MS = 1000;
22
+
23
+ /**
24
+ * @param bool $delay default to true, can be false to speed up tests
25
+ *
26
+ * @return callable
27
+ */
28
+ public function retry($delay = true)
29
+ {
30
+ return Middleware::retry(
31
+ $this->newRetryDecider(),
32
+ $delay ? $this->getRetryDelay() : $this->getZeroRetryDelay()
33
+ );
34
+ }
35
+
36
+ /**
37
+ * Returns a method that takes the number of retries and returns the number of milliseconds
38
+ * to wait
39
+ *
40
+ * @return callable
41
+ */
42
+ private function getRetryDelay()
43
+ {
44
+ return function($numberOfRetries) {
45
+ return static::DELAY_INCREASE_MS * $numberOfRetries;
46
+ };
47
+ }
48
+
49
+ /**
50
+ * Returns a method that returns zero milliseconds to wait
51
+ *
52
+ * @return callable
53
+ */
54
+ private function getZeroRetryDelay()
55
+ {
56
+ return function($numberOfRetries) {
57
+ return 0;
58
+ };
59
+ }
60
+
61
+ /**
62
+ * @return callable
63
+ */
64
+ private function newRetryDecider() {
65
+ return function (
66
+ $retries,
67
+ Request $request,
68
+ Response $response = null,
69
+ TransferException $exception = null
70
+ ) {
71
+ if ( $retries >= static::MAX_RETRIES ) {
72
+ return false;
73
+ }
74
+
75
+ if( $exception instanceof ConnectException ) {
76
+ return true;
77
+ }
78
+
79
+ return false;
80
+ };
81
+ }
82
+
83
+ }
vendor/mollie/mollie-api-php/src/MollieApiClient.php CHANGED
@@ -2,10 +2,13 @@
2
 
3
  namespace Mollie\Api;
4
 
 
5
  use GuzzleHttp\Client;
6
  use GuzzleHttp\ClientInterface;
7
  use GuzzleHttp\Exception\GuzzleException;
 
8
  use GuzzleHttp\Psr7\Request;
 
9
  use Mollie\Api\Endpoints\ChargebackEndpoint;
10
  use Mollie\Api\Endpoints\CustomerEndpoint;
11
  use Mollie\Api\Endpoints\CustomerPaymentsEndpoint;
@@ -26,12 +29,14 @@ use Mollie\Api\Endpoints\PermissionEndpoint;
26
  use Mollie\Api\Endpoints\ProfileEndpoint;
27
  use Mollie\Api\Endpoints\ProfileMethodEndpoint;
28
  use Mollie\Api\Endpoints\RefundEndpoint;
 
29
  use Mollie\Api\Endpoints\SettlementsEndpoint;
30
  use Mollie\Api\Endpoints\ShipmentEndpoint;
31
  use Mollie\Api\Endpoints\SubscriptionEndpoint;
32
  use Mollie\Api\Endpoints\WalletEndpoint;
33
  use Mollie\Api\Exceptions\ApiException;
34
  use Mollie\Api\Exceptions\IncompatiblePlatform;
 
35
  use Psr\Http\Message\ResponseInterface;
36
  use Psr\Http\Message\StreamInterface;
37
 
@@ -40,7 +45,7 @@ class MollieApiClient
40
  /**
41
  * Version of our client.
42
  */
43
- const CLIENT_VERSION = "2.12.1";
44
 
45
  /**
46
  * Endpoint of the remote API.
@@ -70,6 +75,11 @@ class MollieApiClient
70
  */
71
  const TIMEOUT = 10;
72
 
 
 
 
 
 
73
  /**
74
  * @var ClientInterface
75
  */
@@ -114,10 +124,19 @@ class MollieApiClient
114
  public $customerPayments;
115
 
116
  /**
 
 
117
  * @var SettlementsEndpoint
118
  */
119
  public $settlements;
120
 
 
 
 
 
 
 
 
121
  /**
122
  * RESTful Subscription resource.
123
  *
@@ -270,12 +289,20 @@ class MollieApiClient
270
  */
271
  public function __construct(ClientInterface $httpClient = null)
272
  {
273
- $this->httpClient = $httpClient ?
274
- $httpClient :
275
- new Client([
276
- \GuzzleHttp\RequestOptions::VERIFY => \Composer\CaBundle\CaBundle::getBundledCaBundlePath(),
277
- \GuzzleHttp\RequestOptions::TIMEOUT => self::TIMEOUT,
 
 
 
 
 
 
 
278
  ]);
 
279
 
280
  $compatibilityChecker = new CompatibilityChecker();
281
  $compatibilityChecker->checkCompatibility();
@@ -284,7 +311,12 @@ class MollieApiClient
284
 
285
  $this->addVersionString("Mollie/" . self::CLIENT_VERSION);
286
  $this->addVersionString("PHP/" . phpversion());
287
- $this->addVersionString("Guzzle/" . ClientInterface::VERSION);
 
 
 
 
 
288
  }
289
 
290
  public function initializeEndpoints()
@@ -294,6 +326,7 @@ class MollieApiClient
294
  $this->profileMethods = new ProfileMethodEndpoint($this);
295
  $this->customers = new CustomerEndpoint($this);
296
  $this->settlements = new SettlementsEndpoint($this);
 
297
  $this->subscriptions = new SubscriptionEndpoint($this);
298
  $this->customerPayments = new CustomerPaymentsEndpoint($this);
299
  $this->mandates = new MandateEndpoint($this);
@@ -455,11 +488,11 @@ class MollieApiClient
455
  try {
456
  $response = $this->httpClient->send($request, ['http_errors' => false]);
457
  } catch (GuzzleException $e) {
458
- throw ApiException::createFromGuzzleException($e);
459
  }
460
 
461
  if (!$response) {
462
- throw new ApiException("Did not receive API response.");
463
  }
464
 
465
  return $this->parseResponseBody($response);
@@ -469,7 +502,7 @@ class MollieApiClient
469
  * Parse the PSR-7 Response body
470
  *
471
  * @param ResponseInterface $response
472
- * @return \stdClass|null
473
  * @throws ApiException
474
  */
475
  private function parseResponseBody(ResponseInterface $response)
@@ -490,7 +523,7 @@ class MollieApiClient
490
  }
491
 
492
  if ($response->getStatusCode() >= 400) {
493
- throw ApiException::createFromResponse($response);
494
  }
495
 
496
  return $object;
2
 
3
  namespace Mollie\Api;
4
 
5
+ use Composer\CaBundle\CaBundle;
6
  use GuzzleHttp\Client;
7
  use GuzzleHttp\ClientInterface;
8
  use GuzzleHttp\Exception\GuzzleException;
9
+ use GuzzleHttp\HandlerStack;
10
  use GuzzleHttp\Psr7\Request;
11
+ use GuzzleHttp\RequestOptions as GuzzleRequestOptions;
12
  use Mollie\Api\Endpoints\ChargebackEndpoint;
13
  use Mollie\Api\Endpoints\CustomerEndpoint;
14
  use Mollie\Api\Endpoints\CustomerPaymentsEndpoint;
29
  use Mollie\Api\Endpoints\ProfileEndpoint;
30
  use Mollie\Api\Endpoints\ProfileMethodEndpoint;
31
  use Mollie\Api\Endpoints\RefundEndpoint;
32
+ use Mollie\Api\Endpoints\SettlementPaymentEndpoint;
33
  use Mollie\Api\Endpoints\SettlementsEndpoint;
34
  use Mollie\Api\Endpoints\ShipmentEndpoint;
35
  use Mollie\Api\Endpoints\SubscriptionEndpoint;
36
  use Mollie\Api\Endpoints\WalletEndpoint;
37
  use Mollie\Api\Exceptions\ApiException;
38
  use Mollie\Api\Exceptions\IncompatiblePlatform;
39
+ use Mollie\Api\Guzzle\RetryMiddlewareFactory;
40
  use Psr\Http\Message\ResponseInterface;
41
  use Psr\Http\Message\StreamInterface;
42
 
45
  /**
46
  * Version of our client.
47
  */
48
+ const CLIENT_VERSION = "2.26.0";
49
 
50
  /**
51
  * Endpoint of the remote API.
75
  */
76
  const TIMEOUT = 10;
77
 
78
+ /**
79
+ * Default connect timeout (in seconds).
80
+ */
81
+ const CONNECT_TIMEOUT = 2;
82
+
83
  /**
84
  * @var ClientInterface
85
  */
124
  public $customerPayments;
125
 
126
  /**
127
+ * RESTful Settlement resource.
128
+ *
129
  * @var SettlementsEndpoint
130
  */
131
  public $settlements;
132
 
133
+ /**
134
+ * RESTful Settlement payment resource.
135
+ *
136
+ * @var \Mollie\Api\Endpoints\SettlementPaymentEndpoint
137
+ */
138
+ public $settlementPayments;
139
+
140
  /**
141
  * RESTful Subscription resource.
142
  *
289
  */
290
  public function __construct(ClientInterface $httpClient = null)
291
  {
292
+ $this->httpClient = $httpClient;
293
+
294
+ if(! $this->httpClient) {
295
+ $retryMiddlewareFactory = new RetryMiddlewareFactory;
296
+ $handlerStack = HandlerStack::create();
297
+ $handlerStack->push($retryMiddlewareFactory->retry());
298
+
299
+ $this->httpClient = new Client([
300
+ GuzzleRequestOptions::VERIFY => CaBundle::getBundledCaBundlePath(),
301
+ GuzzleRequestOptions::TIMEOUT => self::TIMEOUT,
302
+ GuzzleRequestOptions::CONNECT_TIMEOUT => self::CONNECT_TIMEOUT,
303
+ 'handler' => $handlerStack,
304
  ]);
305
+ }
306
 
307
  $compatibilityChecker = new CompatibilityChecker();
308
  $compatibilityChecker->checkCompatibility();
311
 
312
  $this->addVersionString("Mollie/" . self::CLIENT_VERSION);
313
  $this->addVersionString("PHP/" . phpversion());
314
+
315
+ if(defined('\GuzzleHttp\ClientInterface::MAJOR_VERSION')) { // Guzzle 7
316
+ $this->addVersionString("Guzzle/" . ClientInterface::MAJOR_VERSION);
317
+ } elseif (defined('\GuzzleHttp\ClientInterface::VERSION')) { // Before Guzzle 7
318
+ $this->addVersionString("Guzzle/" . ClientInterface::VERSION);
319
+ }
320
  }
321
 
322
  public function initializeEndpoints()
326
  $this->profileMethods = new ProfileMethodEndpoint($this);
327
  $this->customers = new CustomerEndpoint($this);
328
  $this->settlements = new SettlementsEndpoint($this);
329
+ $this->settlementPayments = new SettlementPaymentEndpoint($this);
330
  $this->subscriptions = new SubscriptionEndpoint($this);
331
  $this->customerPayments = new CustomerPaymentsEndpoint($this);
332
  $this->mandates = new MandateEndpoint($this);
488
  try {
489
  $response = $this->httpClient->send($request, ['http_errors' => false]);
490
  } catch (GuzzleException $e) {
491
+ throw ApiException::createFromGuzzleException($e, $request);
492
  }
493
 
494
  if (!$response) {
495
+ throw new ApiException("Did not receive API response.", 0, null, $request);
496
  }
497
 
498
  return $this->parseResponseBody($response);
502
  * Parse the PSR-7 Response body
503
  *
504
  * @param ResponseInterface $response
505
+ * @return \stdClass|null
506
  * @throws ApiException
507
  */
508
  private function parseResponseBody(ResponseInterface $response)
523
  }
524
 
525
  if ($response->getStatusCode() >= 400) {
526
+ throw ApiException::createFromResponse($response, null);
527
  }
528
 
529
  return $object;
vendor/mollie/mollie-api-php/src/Resources/BaseCollection.php CHANGED
@@ -24,6 +24,7 @@ abstract class BaseCollection extends \ArrayObject
24
  {
25
  $this->count = $count;
26
  $this->_links = $_links;
 
27
  }
28
 
29
  /**
24
  {
25
  $this->count = $count;
26
  $this->_links = $_links;
27
+ parent::__construct();
28
  }
29
 
30
  /**
vendor/mollie/mollie-api-php/src/Resources/Customer.php CHANGED
@@ -89,7 +89,7 @@ class Customer extends BaseResource
89
  */
90
  public function createPayment(array $options = [], array $filters = [])
91
  {
92
- return $this->client->customerPayments->createFor($this, $options, $filters);
93
  }
94
 
95
  /**
@@ -110,7 +110,7 @@ class Customer extends BaseResource
110
  */
111
  public function createSubscription(array $options = [], array $filters = [])
112
  {
113
- return $this->client->subscriptions->createFor($this, $options, $filters);
114
  }
115
 
116
  /**
@@ -121,7 +121,7 @@ class Customer extends BaseResource
121
  */
122
  public function getSubscription($subscriptionId, array $parameters = [])
123
  {
124
- return $this->client->subscriptions->getFor($this, $subscriptionId, $parameters);
125
  }
126
 
127
  /**
@@ -152,7 +152,7 @@ class Customer extends BaseResource
152
  */
153
  public function createMandate(array $options = [], array $filters = [])
154
  {
155
- return $this->client->mandates->createFor($this, $options, $filters);
156
  }
157
 
158
  /**
@@ -234,4 +234,15 @@ class Customer extends BaseResource
234
 
235
  return $options;
236
  }
 
 
 
 
 
 
 
 
 
 
 
237
  }
89
  */
90
  public function createPayment(array $options = [], array $filters = [])
91
  {
92
+ return $this->client->customerPayments->createFor($this, $this->withPresetOptions($options), $filters);
93
  }
94
 
95
  /**
110
  */
111
  public function createSubscription(array $options = [], array $filters = [])
112
  {
113
+ return $this->client->subscriptions->createFor($this, $this->withPresetOptions($options), $filters);
114
  }
115
 
116
  /**
121
  */
122
  public function getSubscription($subscriptionId, array $parameters = [])
123
  {
124
+ return $this->client->subscriptions->getFor($this, $subscriptionId, $this->withPresetOptions($parameters));
125
  }
126
 
127
  /**
152
  */
153
  public function createMandate(array $options = [], array $filters = [])
154
  {
155
+ return $this->client->mandates->createFor($this, $this->withPresetOptions($options), $filters);
156
  }
157
 
158
  /**
234
 
235
  return $options;
236
  }
237
+
238
+ /**
239
+ * Apply the preset options.
240
+ *
241
+ * @param array $options
242
+ * @return array
243
+ */
244
+ private function withPresetOptions(array $options)
245
+ {
246
+ return array_merge($this->getPresetOptions(), $options);
247
+ }
248
  }
vendor/mollie/mollie-api-php/src/Resources/MandateCollection.php CHANGED
@@ -19,4 +19,21 @@ class MandateCollection extends CursorCollection
19
  {
20
  return new Mandate($this->client);
21
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  }
19
  {
20
  return new Mandate($this->client);
21
  }
22
+
23
+ /**
24
+ * @param string $status
25
+ * @return array|\Mollie\Api\Resources\MandateCollection
26
+ */
27
+ public function whereStatus($status)
28
+ {
29
+ $collection = new self($this->client, $this->count, $this->_links);
30
+
31
+ foreach ($this as $item) {
32
+ if($item->status === $status) {
33
+ $collection[] = $item;
34
+ }
35
+ }
36
+
37
+ return $collection;
38
+ }
39
  }
vendor/mollie/mollie-api-php/src/Resources/Method.php CHANGED
@@ -57,6 +57,13 @@ class Method extends BaseResource
57
  */
58
  public $pricing;
59
 
 
 
 
 
 
 
 
60
  /**
61
  * @var \stdClass
62
  */
57
  */
58
  public $pricing;
59
 
60
+ /**
61
+ * The activation status the method is in.
62
+ *
63
+ * @var string
64
+ */
65
+ public $status;
66
+
67
  /**
68
  * @var \stdClass
69
  */
vendor/mollie/mollie-api-php/src/Resources/MethodPrice.php CHANGED
@@ -8,7 +8,7 @@ class MethodPrice extends BaseResource
8
  * The area or product-type where the pricing is applied for, translated in the optional locale passed.
9
  *
10
  * @example "The Netherlands"
11
- * @var \stdClass
12
  */
13
  public $description;
14
 
@@ -22,7 +22,7 @@ class MethodPrice extends BaseResource
22
  /**
23
  * A string containing the percentage being charged over the payment amount besides the fixed price.
24
  *
25
- * @var \stdClass An amount object consisting of `value` and `currency`
26
  */
27
  public $variable;
28
- }
8
  * The area or product-type where the pricing is applied for, translated in the optional locale passed.
9
  *
10
  * @example "The Netherlands"
11
+ * @var string
12
  */
13
  public $description;
14
 
22
  /**
23
  * A string containing the percentage being charged over the payment amount besides the fixed price.
24
  *
25
+ * @var string An string representing the percentage as a float (for example: "0.1" for 10%)
26
  */
27
  public $variable;
28
+ }
vendor/mollie/mollie-api-php/src/Resources/Order.php CHANGED
@@ -144,6 +144,54 @@ class Order extends BaseResource
144
  */
145
  public $createdAt;
146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  /**
148
  * The order lines contain the actual things the customer bought.
149
  *
@@ -158,6 +206,11 @@ class Order extends BaseResource
158
  */
159
  public $_links;
160
 
 
 
 
 
 
161
  /**
162
  * Is this order created?
163
  *
@@ -261,7 +314,7 @@ class Order extends BaseResource
261
  */
262
  public function cancel()
263
  {
264
- return $this->client->orders->cancel($this->id);
265
  }
266
 
267
  /**
@@ -317,7 +370,7 @@ class Order extends BaseResource
317
  */
318
  public function createShipment(array $options = [])
319
  {
320
- return $this->client->shipments->createFor($this, $options);
321
  }
322
 
323
  /**
@@ -343,7 +396,7 @@ class Order extends BaseResource
343
  */
344
  public function getShipment($shipmentId, array $parameters = [])
345
  {
346
- return $this->client->shipments->getFor($this, $shipmentId, $parameters);
347
  }
348
 
349
  /**
@@ -355,7 +408,7 @@ class Order extends BaseResource
355
  */
356
  public function shipments(array $parameters = [])
357
  {
358
- return $this->client->shipments->listFor($this, $parameters);
359
  }
360
 
361
  /**
@@ -380,7 +433,7 @@ class Order extends BaseResource
380
  */
381
  public function refund(array $data)
382
  {
383
- return $this->client->orderRefunds->createFor($this, $data);
384
  }
385
 
386
  /**
@@ -392,6 +445,7 @@ class Order extends BaseResource
392
  public function refundAll(array $data = [])
393
  {
394
  $data['lines'] = [];
 
395
  return $this->refund($data);
396
  }
397
 
@@ -433,6 +487,8 @@ class Order extends BaseResource
433
  "billingAddress" => $this->billingAddress,
434
  "shippingAddress" => $this->shippingAddress,
435
  "orderNumber" => $this->orderNumber,
 
 
436
  ));
437
 
438
  $result = $this->client->performHttpCallToFullUrl(MollieApiClient::HTTP_PATCH, $this->_links->self->href, $body);
@@ -471,4 +527,30 @@ class Order extends BaseResource
471
  Payment::class
472
  );
473
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
474
  }
144
  */
145
  public $createdAt;
146
 
147
+ /**
148
+ * UTC datetime the order the order will expire in ISO-8601 format.
149
+ *
150
+ * @example "2013-12-25T10:30:54+00:00"
151
+ * @var string|null
152
+ */
153
+ public $expiresAt;
154
+
155
+ /**
156
+ * UTC datetime if the order is expired, the time of expiration will be present in ISO-8601 format.
157
+ *
158
+ * @example "2013-12-25T10:30:54+00:00"
159
+ * @var string|null
160
+ */
161
+ public $expiredAt;
162
+
163
+ /**
164
+ * UTC datetime if the order has been paid, the time of payment will be present in ISO-8601 format.
165
+ *
166
+ * @example "2013-12-25T10:30:54+00:00"
167
+ * @var string|null
168
+ */
169
+ public $paidAt;
170
+
171
+ /**
172
+ * UTC datetime if the order has been authorized, the time of authorization will be present in ISO-8601 format.
173
+ *
174
+ * @example "2013-12-25T10:30:54+00:00"
175
+ * @var string|null
176
+ */
177
+ public $authorizedAt;
178
+
179
+ /**
180
+ * UTC datetime if the order has been canceled, the time of cancellation will be present in ISO 8601 format.
181
+ *
182
+ * @example "2013-12-25T10:30:54+00:00"
183
+ * @var string|null
184
+ */
185
+ public $canceledAt;
186
+
187
+ /**
188
+ * UTC datetime if the order is completed, the time of completion will be present in ISO 8601 format.
189
+ *
190
+ * @example "2013-12-25T10:30:54+00:00"
191
+ * @var string|null
192
+ */
193
+ public $completedAt;
194
+
195
  /**
196
  * The order lines contain the actual things the customer bought.
197
  *
206
  */
207
  public $_links;
208
 
209
+ /**
210
+ * @var \stdClass
211
+ */
212
+ public $_embedded;
213
+
214
  /**
215
  * Is this order created?
216
  *
314
  */
315
  public function cancel()
316
  {
317
+ return $this->client->orders->cancel($this->id, $this->getPresetOptions());
318
  }
319
 
320
  /**
370
  */
371
  public function createShipment(array $options = [])
372
  {
373
+ return $this->client->shipments->createFor($this, $this->withPresetOptions($options));
374
  }
375
 
376
  /**
396
  */
397
  public function getShipment($shipmentId, array $parameters = [])
398
  {
399
+ return $this->client->shipments->getFor($this, $shipmentId, $this->withPresetOptions($parameters));
400
  }
401
 
402
  /**
408
  */
409
  public function shipments(array $parameters = [])
410
  {
411
+ return $this->client->shipments->listFor($this, $this->withPresetOptions($parameters));
412
  }
413
 
414
  /**
433
  */
434
  public function refund(array $data)
435
  {
436
+ return $this->client->orderRefunds->createFor($this, $this->withPresetOptions($data));
437
  }
438
 
439
  /**
445
  public function refundAll(array $data = [])
446
  {
447
  $data['lines'] = [];
448
+
449
  return $this->refund($data);
450
  }
451
 
487
  "billingAddress" => $this->billingAddress,
488
  "shippingAddress" => $this->shippingAddress,
489
  "orderNumber" => $this->orderNumber,
490
+ "redirectUrl" => $this->redirectUrl,
491
+ "webhookUrl" => $this->webhookUrl,
492
  ));
493
 
494
  $result = $this->client->performHttpCallToFullUrl(MollieApiClient::HTTP_PATCH, $this->_links->self->href, $body);
527
  Payment::class
528
  );
529
  }
530
+
531
+ /**
532
+ * When accessed by oAuth we want to pass the testmode by default
533
+ *
534
+ * @return array
535
+ */
536
+ private function getPresetOptions()
537
+ {
538
+ $options = [];
539
+ if($this->client->usesOAuth()) {
540
+ $options["testmode"] = $this->mode === "test" ? true : false;
541
+ }
542
+
543
+ return $options;
544
+ }
545
+
546
+ /**
547
+ * Apply the preset options.
548
+ *
549
+ * @param array $options
550
+ * @return array
551
+ */
552
+ private function withPresetOptions(array $options)
553
+ {
554
+ return array_merge($this->getPresetOptions(), $options);
555
+ }
556
  }
vendor/mollie/mollie-api-php/src/Resources/OrderLine.php CHANGED
@@ -125,6 +125,14 @@ class OrderLine extends BaseResource
125
  * @var string|null
126
  */
127
  public $productUrl;
 
 
 
 
 
 
 
 
128
 
129
  /**
130
  * The order line's date and time of creation, in ISO 8601 format.
@@ -134,6 +142,11 @@ class OrderLine extends BaseResource
134
  */
135
  public $createdAt;
136
 
 
 
 
 
 
137
  /**
138
  * Is this order line created?
139
  *
@@ -275,4 +288,41 @@ class OrderLine extends BaseResource
275
  return $this->type === OrderLineType::TYPE_SURCHARGE;
276
  }
277
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  }
125
  * @var string|null
126
  */
127
  public $productUrl;
128
+
129
+ /**
130
+ * During creation of the order you can set custom metadata on order lines that is stored with
131
+ * the order, and given back whenever you retrieve that order line.
132
+ *
133
+ * @var \stdClass|mixed|null
134
+ */
135
+ public $metadata;
136
 
137
  /**
138
  * The order line's date and time of creation, in ISO 8601 format.
142
  */
143
  public $createdAt;
144
 
145
+ /**
146
+ * @var \stdClass
147
+ */
148
+ public $_links;
149
+
150
  /**
151
  * Is this order line created?
152
  *
288
  return $this->type === OrderLineType::TYPE_SURCHARGE;
289
  }
290
 
291
+ /**
292
+ * Update an orderline by supplying one or more parameters in the data array
293
+ *
294
+ * @return BaseResource
295
+ */
296
+ public function update()
297
+ {
298
+ $url="orders/{$this->orderId}/lines/{$this->id}";
299
+ $body = json_encode($this->getUpdateData());
300
+ $result = $this->client->performHttpCall(MollieApiClient::HTTP_PATCH, $url, $body);
301
+
302
+ return ResourceFactory::createFromApiResult($result, new Order($this->client));
303
+ }
304
+
305
+ /**
306
+ * Get sanitized array of order line data
307
+ *
308
+ * @return array
309
+ */
310
+ public function getUpdateData()
311
+ {
312
+ $data = array(
313
+ "name" => $this->name,
314
+ 'imageUrl' => $this->imageUrl,
315
+ 'productUrl' => $this->productUrl,
316
+ 'metadata' => $this->metadata,
317
+ 'quantity' => $this->quantity,
318
+ 'unitPrice' => $this->unitPrice,
319
+ 'discountAmount' => $this->discountAmount,
320
+ 'totalAmount' => $this->totalAmount,
321
+ 'vatAmount' => $this->vatAmount,
322
+ 'vatRate' => $this->vatRate,
323
+ );
324
+
325
+ // Explicitly filter only NULL values to keep "vatRate => 0" intact
326
+ return array_filter($data, function($value) { return $value !== null; });
327
+ }
328
  }
vendor/mollie/mollie-api-php/src/Resources/Payment.php CHANGED
@@ -209,6 +209,13 @@ class Payment extends BaseResource
209
  */
210
  public $details;
211
 
 
 
 
 
 
 
 
212
  /**
213
  * @var \stdClass
214
  */
@@ -226,6 +233,58 @@ class Payment extends BaseResource
226
  */
227
  public $isCancelable;
228
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
  /**
230
  * Is this payment canceled?
231
  *
@@ -433,7 +492,7 @@ class Payment extends BaseResource
433
  */
434
  public function getRefund($refundId, array $parameters = [])
435
  {
436
- return $this->client->paymentRefunds->getFor($this, $refundId, $parameters);
437
  }
438
 
439
  /**
@@ -472,7 +531,7 @@ class Payment extends BaseResource
472
  return $this->client->paymentCaptures->getFor(
473
  $this,
474
  $captureId,
475
- $parameters
476
  );
477
  }
478
 
@@ -514,25 +573,23 @@ class Payment extends BaseResource
514
  return $this->client->paymentChargebacks->getFor(
515
  $this,
516
  $chargebackId,
517
- $parameters
518
  );
519
  }
520
 
521
  /**
522
  * Issue a refund for this payment.
523
  *
524
- * The $data parameter may either be an array of endpoint parameters or empty to
525
- * do a full refund.
526
- *
527
- * @param array|null $data
528
  *
529
  * @return BaseResource
530
  * @throws ApiException
531
  */
532
- public function refund($data = [])
533
  {
534
  $resource = "payments/" . urlencode($this->id) . "/refunds";
535
 
 
536
  $body = null;
537
  if (count($data) > 0) {
538
  $body = json_encode($data);
@@ -561,6 +618,7 @@ class Payment extends BaseResource
561
  "redirectUrl" => $this->redirectUrl,
562
  "webhookUrl" => $this->webhookUrl,
563
  "metadata" => $this->metadata,
 
564
  ]);
565
 
566
  $result = $this->client->performHttpCallToFullUrl(
@@ -571,4 +629,74 @@ class Payment extends BaseResource
571
 
572
  return ResourceFactory::createFromApiResult($result, new Payment($this->client));
573
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
574
  }
209
  */
210
  public $details;
211
 
212
+ /**
213
+ * Used to restrict the payment methods available to your customer to those from a single country.
214
+ *
215
+ * @var string|null;
216
+ */
217
+ public $restrictPaymentMethodsToCountry;
218
+
219
  /**
220
  * @var \stdClass
221
  */
233
  */
234
  public $isCancelable;
235
 
236
+ /**
237
+ * The total amount that is already captured for this payment. Only available
238
+ * when this payment supports captures.
239
+ *
240
+ * @var \stdClass|null
241
+ */
242
+ public $amountCaptured;
243
+
244
+ /**
245
+ * The application fee, if the payment was created with one. Contains amount
246
+ * (the value and currency) and description.
247
+ *
248
+ * @var \stdClass|null
249
+ */
250
+ public $applicationFeeAmount;
251
+
252
+ /**
253
+ * The date and time the payment became authorized, in ISO 8601 format. This
254
+ * parameter is omitted if the payment is not authorized (yet).
255
+ *
256
+ * @example "2013-12-25T10:30:54+00:00"
257
+ * @var string|null
258
+ */
259
+ public $authorizedAt;
260
+
261
+ /**
262
+ * The date and time the payment was expired, in ISO 8601 format. This
263
+ * parameter is omitted if the payment did not expire (yet).
264
+ *
265
+ * @example "2013-12-25T10:30:54+00:00"
266
+ * @var string|null
267
+ */
268
+ public $expiredAt;
269
+
270
+ /**
271
+ * If a customer was specified upon payment creation, the customer’s token will
272
+ * be available here as well.
273
+ *
274
+ * @example cst_XPn78q9CfT
275
+ * @var string|null
276
+ */
277
+ public $customerId;
278
+
279
+ /**
280
+ * This optional field contains your customer’s ISO 3166-1 alpha-2 country code,
281
+ * detected by us during checkout. For example: BE. This field is omitted if the
282
+ * country code was not detected.
283
+ *
284
+ * @var string|null
285
+ */
286
+ public $countryCode;
287
+
288
  /**
289
  * Is this payment canceled?
290
  *
492
  */
493
  public function getRefund($refundId, array $parameters = [])
494
  {
495
+ return $this->client->paymentRefunds->getFor($this, $refundId, $this->withPresetOptions($parameters));
496
  }
497
 
498
  /**
531
  return $this->client->paymentCaptures->getFor(
532
  $this,
533
  $captureId,
534
+ $this->withPresetOptions($parameters)
535
  );
536
  }
537
 
573
  return $this->client->paymentChargebacks->getFor(
574
  $this,
575
  $chargebackId,
576
+ $this->withPresetOptions($parameters)
577
  );
578
  }
579
 
580
  /**
581
  * Issue a refund for this payment.
582
  *
583
+ * @param array $data
 
 
 
584
  *
585
  * @return BaseResource
586
  * @throws ApiException
587
  */
588
+ public function refund($data)
589
  {
590
  $resource = "payments/" . urlencode($this->id) . "/refunds";
591
 
592
+ $data = $this->withPresetOptions($data);
593
  $body = null;
594
  if (count($data) > 0) {
595
  $body = json_encode($data);
618
  "redirectUrl" => $this->redirectUrl,
619
  "webhookUrl" => $this->webhookUrl,
620
  "metadata" => $this->metadata,
621
+ "restrictPaymentMethodsToCountry" => $this->restrictPaymentMethodsToCountry,
622
  ]);
623
 
624
  $result = $this->client->performHttpCallToFullUrl(
629
 
630
  return ResourceFactory::createFromApiResult($result, new Payment($this->client));
631
  }
632
+
633
+ /**
634
+ * When accessed by oAuth we want to pass the testmode by default
635
+ *
636
+ * @return array
637
+ */
638
+ private function getPresetOptions()
639
+ {
640
+ $options = [];
641
+ if($this->client->usesOAuth()) {
642
+ $options["testmode"] = $this->mode === "test" ? true : false;
643
+ }
644
+
645
+ return $options;
646
+ }
647
+
648
+ /**
649
+ * Apply the preset options.
650
+ *
651
+ * @param array $options
652
+ * @return array
653
+ */
654
+ private function withPresetOptions(array $options)
655
+ {
656
+ return array_merge($this->getPresetOptions(), $options);
657
+ }
658
+
659
+ /**
660
+ * The total amount that is already captured for this payment. Only available
661
+ * when this payment supports captures.
662
+ *
663
+ * @return float
664
+ */
665
+ public function getAmountCaptured()
666
+ {
667
+ if ($this->amountCaptured) {
668
+ return (float)$this->amountCaptured->value;
669
+ }
670
+
671
+ return 0.0;
672
+ }
673
+
674
+ /**
675
+ * The amount that has been settled.
676
+ *
677
+ * @return float
678
+ */
679
+ public function getSettlementAmount()
680
+ {
681
+ if ($this->settlementAmount) {
682
+ return (float)$this->settlementAmount->value;
683
+ }
684
+
685
+ return 0.0;
686
+ }
687
+
688
+ /**
689
+ * The total amount that is already captured for this payment. Only available
690
+ * when this payment supports captures.
691
+ *
692
+ * @return float
693
+ */
694
+ public function getApplicationFeeAmount()
695
+ {
696
+ if ($this->applicationFeeAmount) {
697
+ return (float)$this->applicationFeeAmount->value;
698
+ }
699
+
700
+ return 0.0;
701
+ }
702
  }
vendor/mollie/mollie-api-php/src/Resources/Refund.php CHANGED
@@ -123,6 +123,16 @@ class Refund extends BaseResource
123
  return $this->status === RefundStatus::STATUS_REFUNDED;
124
  }
125
 
 
 
 
 
 
 
 
 
 
 
126
  /**
127
  * Cancel the refund.
128
  * Returns null if successful.
123
  return $this->status === RefundStatus::STATUS_REFUNDED;
124
  }
125
 
126
+ /**
127
+ * Is this refund failed?
128
+ *
129
+ * @return bool
130
+ */
131
+ public function isFailed()
132
+ {
133
+ return $this->status === RefundStatus::STATUS_FAILED;
134
+ }
135
+
136
  /**
137
  * Cancel the refund.
138
  * Returns null if successful.
vendor/mollie/mollie-api-php/src/Resources/Settlement.php CHANGED
@@ -119,23 +119,14 @@ class Settlement extends BaseResource
119
  /**
120
  * Retrieves all payments associated with this settlement
121
  *
 
 
122
  * @return PaymentCollection
123
- * @throws ApiException
124
  */
125
- public function payments()
126
  {
127
- if (!isset($this->_links->payments->href)) {
128
- return new PaymentCollection($this->client, 0, null);
129
- }
130
-
131
- $result = $this->client->performHttpCallToFullUrl(MollieApiClient::HTTP_GET, $this->_links->payments->href);
132
-
133
- return ResourceFactory::createCursorResourceCollection(
134
- $this->client,
135
- $result->_embedded->payments,
136
- Payment::class,
137
- $result->_links
138
- );
139
  }
140
 
141
  /**
119
  /**
120
  * Retrieves all payments associated with this settlement
121
  *
122
+ * @param null $limit
123
+ * @param array $parameters
124
  * @return PaymentCollection
125
+ * @throws \Mollie\Api\Exceptions\ApiException
126
  */
127
+ public function payments($limit = null, array $parameters = [])
128
  {
129
+ return $this->client->settlementPayments->pageForId($this->id, null, $limit, $parameters);
 
 
 
 
 
 
 
 
 
 
 
130
  }
131
 
132
  /**
vendor/mollie/mollie-api-php/src/Resources/Subscription.php CHANGED
@@ -71,6 +71,11 @@ class Subscription extends BaseResource
71
  */
72
  public $mandateId;
73
 
 
 
 
 
 
74
  /**
75
  * UTC datetime the subscription canceled in ISO-8601 format.
76
  *
@@ -114,6 +119,8 @@ class Subscription extends BaseResource
114
  "webhookUrl" => $this->webhookUrl,
115
  "description" => $this->description,
116
  "mandateId" => $this->mandateId,
 
 
117
  ]);
118
 
119
  $result = $this->client->performHttpCallToFullUrl(
@@ -202,4 +209,23 @@ class Subscription extends BaseResource
202
 
203
  return ResourceFactory::createFromApiResult($result, new Subscription($this->client));
204
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
  }
71
  */
72
  public $mandateId;
73
 
74
+ /**
75
+ * @var array|null
76
+ */
77
+ public $metadata;
78
+
79
  /**
80
  * UTC datetime the subscription canceled in ISO-8601 format.
81
  *
119
  "webhookUrl" => $this->webhookUrl,
120
  "description" => $this->description,
121
  "mandateId" => $this->mandateId,
122
+ "metadata" => $this->metadata,
123
+ "interval" => $this->interval,
124
  ]);
125
 
126
  $result = $this->client->performHttpCallToFullUrl(
209
 
210
  return ResourceFactory::createFromApiResult($result, new Subscription($this->client));
211
  }
212
+
213
+ public function payments()
214
+ {
215
+ if (!isset($this->_links->payments->href)) {
216
+ return new PaymentCollection($this->client, 0, null);
217
+ }
218
+
219
+ $result = $this->client->performHttpCallToFullUrl(
220
+ MollieApiClient::HTTP_GET,
221
+ $this->_links->payments->href
222
+ );
223
+
224
+ return ResourceFactory::createCursorResourceCollection(
225
+ $this->client,
226
+ $result->_embedded->payments,
227
+ Payment::class,
228
+ $result->_links
229
+ );
230
+ }
231
  }
vendor/mollie/mollie-api-php/src/Types/MandateMethod.php CHANGED
@@ -6,9 +6,14 @@ class MandateMethod
6
  {
7
  const DIRECTDEBIT = "directdebit";
8
  const CREDITCARD = "creditcard";
 
9
 
10
  public static function getForFirstPaymentMethod($firstPaymentMethod)
11
  {
 
 
 
 
12
  if(in_array($firstPaymentMethod, [
13
  PaymentMethod::APPLEPAY,
14
  PaymentMethod::CREDITCARD,
6
  {
7
  const DIRECTDEBIT = "directdebit";
8
  const CREDITCARD = "creditcard";
9
+ const PAYPAL = "paypal";
10
 
11
  public static function getForFirstPaymentMethod($firstPaymentMethod)
12
  {
13
+ if ($firstPaymentMethod === PaymentMethod::PAYPAL) {
14
+ return static::PAYPAL;
15
+ }
16
+
17
  if(in_array($firstPaymentMethod, [
18
  PaymentMethod::APPLEPAY,
19
  PaymentMethod::CREDITCARD,
vendor/mollie/mollie-api-php/src/Types/PaymentMethodStatus.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Mollie\Api\Types;
4
+
5
+ class PaymentMethodStatus
6
+ {
7
+ /**
8
+ * The payment method is activated and ready for use.
9
+ *
10
+ * @link https://docs.mollie.com/reference/v2/methods-api/get-method#parameters
11
+ */
12
+ const ACTIVATED = "activated";
13
+
14
+ /**
15
+ * Mollie is waiting for you to finish onboarding in the Merchant Dashboard before
16
+ * the payment method can be activated.
17
+ *
18
+ * @link https://docs.mollie.com/reference/v2/methods-api/get-method#parameters
19
+ */
20
+ const PENDING_BOARDING = "pending-boarding";
21
+
22
+ /**
23
+ * Mollie needs to review your request for this payment method before it can be activated.
24
+ *
25
+ * @link https://docs.mollie.com/reference/v2/methods-api/get-method#parameters
26
+ */
27
+ const PENDING_REVIEW = "pending-review";
28
+
29
+ /**
30
+ * Activation of this payment method relies on you taking action with an external party,
31
+ * for example signing up with PayPal or a giftcard issuer.
32
+ *
33
+ * @link https://docs.mollie.com/reference/v2/methods-api/get-method#parameters
34
+ */
35
+ const PENDING_EXTERNAL = "pending-external";
36
+
37
+ /**
38
+ * Your request for this payment method was rejected.
39
+ * Whenever Mollie rejects such a request, you will always be informed via email.
40
+ *
41
+ * @link https://docs.mollie.com/reference/v2/methods-api/get-method#parameters
42
+ */
43
+ const REJECTED = "rejected";
44
+
45
+ /**
46
+ * This payment method was not requested.
47
+ *
48
+ * @link https://docs.mollie.com/reference/v2/methods-api/get-method#parameters
49
+ */
50
+ const NOT_REQUESTED = null;
51
+
52
+ }
vendor/mollie/mollie-api-php/src/Types/RefundStatus.php CHANGED
@@ -23,4 +23,9 @@ class RefundStatus
23
  * The refund amount has been transferred to the consumer.
24
  */
25
  const STATUS_REFUNDED = 'refunded';
 
 
 
 
 
26
  }
23
  * The refund amount has been transferred to the consumer.
24
  */
25
  const STATUS_REFUNDED = 'refunded';
26
+
27
+ /**
28
+ * The refund has failed after processing. For example, the customer has closed his / her bank account. The funds will be returned to your account.
29
+ */
30
+ const STATUS_FAILED = 'failed';
31
  }
vendor/paragonie/random_compat/dist/random_compat.phar.pubkey ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ -----BEGIN PUBLIC KEY-----
2
+ MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEEd+wCqJDrx5B4OldM0dQE0ZMX+lx1ZWm
3
+ pui0SUqD4G29L3NGsz9UhJ/0HjBdbnkhIK5xviT0X5vtjacF6ajgcCArbTB+ds+p
4
+ +h7Q084NuSuIpNb6YPfoUFgC/CL9kAoc
5
+ -----END PUBLIC KEY-----
vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ -----BEGIN PGP SIGNATURE-----
2
+ Version: GnuPG v2.0.22 (MingW32)
3
+
4
+ iQEcBAABAgAGBQJWtW1hAAoJEGuXocKCZATaJf0H+wbZGgskK1dcRTsuVJl9IWip
5
+ QwGw/qIKI280SD6/ckoUMxKDCJiFuPR14zmqnS36k7N5UNPnpdTJTS8T11jttSpg
6
+ 1LCmgpbEIpgaTah+cELDqFCav99fS+bEiAL5lWDAHBTE/XPjGVCqeehyPYref4IW
7
+ NDBIEsvnHPHPLsn6X5jq4+Yj5oUixgxaMPiR+bcO4Sh+RzOVB6i2D0upWfRXBFXA
8
+ NNnsg9/zjvoC7ZW73y9uSH+dPJTt/Vgfeiv52/v41XliyzbUyLalf02GNPY+9goV
9
+ JHG1ulEEBJOCiUD9cE1PUIJwHA/HqyhHIvV350YoEFiHl8iSwm7SiZu5kPjaq74=
10
+ =B6+8
11
+ -----END PGP SIGNATURE-----
vendor/paragonie/random_compat/lib/byte_safe_strings.php ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Random_* Compatibility Library
4
+ * for using the new PHP 7 random_* API in PHP 5 projects
5
+ *
6
+ * The MIT License (MIT)
7
+ *
8
+ * Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
9
+ *
10
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ * of this software and associated documentation files (the "Software"), to deal
12
+ * in the Software without restriction, including without limitation the rights
13
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ * copies of the Software, and to permit persons to whom the Software is
15
+ * furnished to do so, subject to the following conditions:
16
+ *
17
+ * The above copyright notice and this permission notice shall be included in
18
+ * all copies or substantial portions of the Software.
19
+ *
20
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ * SOFTWARE.
27
+ */
28
+
29
+ if (!is_callable('RandomCompat_strlen')) {
30
+ if (
31
+ defined('MB_OVERLOAD_STRING')
32
+ &&
33
+ ((int) ini_get('mbstring.func_overload')) & MB_OVERLOAD_STRING
34
+ ) {
35
+ /**
36
+ * strlen() implementation that isn't brittle to mbstring.func_overload
37
+ *
38
+ * This version uses mb_strlen() in '8bit' mode to treat strings as raw
39
+ * binary rather than UTF-8, ISO-8859-1, etc
40
+ *
41
+ * @param string $binary_string
42
+ *
43
+ * @throws TypeError
44
+ *
45
+ * @return int
46
+ */
47
+ function RandomCompat_strlen($binary_string)
48
+ {
49
+ if (!is_string($binary_string)) {
50
+ throw new TypeError(
51
+ 'RandomCompat_strlen() expects a string'
52
+ );
53
+ }
54
+
55
+ return (int) mb_strlen($binary_string, '8bit');
56
+ }
57
+
58
+ } else {
59
+ /**
60
+ * strlen() implementation that isn't brittle to mbstring.func_overload
61
+ *
62
+ * This version just used the default strlen()
63
+ *
64
+ * @param string $binary_string
65
+ *
66
+ * @throws TypeError
67
+ *
68
+ * @return int
69
+ */
70
+ function RandomCompat_strlen($binary_string)
71
+ {
72
+ if (!is_string($binary_string)) {
73
+ throw new TypeError(
74
+ 'RandomCompat_strlen() expects a string'
75
+ );
76
+ }
77
+ return (int) strlen($binary_string);
78
+ }
79
+ }
80
+ }
81
+
82
+ if (!is_callable('RandomCompat_substr')) {
83
+
84
+ if (
85
+ defined('MB_OVERLOAD_STRING')
86
+ &&
87
+ ((int) ini_get('mbstring.func_overload')) & MB_OVERLOAD_STRING
88
+ ) {
89
+ /**
90
+ * substr() implementation that isn't brittle to mbstring.func_overload
91
+ *
92
+ * This version uses mb_substr() in '8bit' mode to treat strings as raw
93
+ * binary rather than UTF-8, ISO-8859-1, etc
94
+ *
95
+ * @param string $binary_string
96
+ * @param int $start
97
+ * @param int|null $length (optional)
98
+ *
99
+ * @throws TypeError
100
+ *
101
+ * @return string
102
+ */
103
+ function RandomCompat_substr($binary_string, $start, $length = null)
104
+ {
105
+ if (!is_string($binary_string)) {
106
+ throw new TypeError(
107
+ 'RandomCompat_substr(): First argument should be a string'
108
+ );
109
+ }
110
+
111
+ if (!is_int($start)) {
112
+ throw new TypeError(
113
+ 'RandomCompat_substr(): Second argument should be an integer'
114
+ );
115
+ }
116
+
117
+ if ($length === null) {
118
+ /**
119
+ * mb_substr($str, 0, NULL, '8bit') returns an empty string on
120
+ * PHP 5.3, so we have to find the length ourselves.
121
+ */
122
+ /** @var int $length */
123
+ $length = RandomCompat_strlen($binary_string) - $start;
124
+ } elseif (!is_int($length)) {
125
+ throw new TypeError(
126
+ 'RandomCompat_substr(): Third argument should be an integer, or omitted'
127
+ );
128
+ }
129
+
130
+ // Consistency with PHP's behavior
131
+ if ($start === RandomCompat_strlen($binary_string) && $length === 0) {
132
+ return '';
133
+ }
134
+ if ($start > RandomCompat_strlen($binary_string)) {
135
+ return '';
136
+ }
137
+
138
+ return (string) mb_substr(
139
+ (string) $binary_string,
140
+ (int) $start,
141
+ (int) $length,
142
+ '8bit'
143
+ );
144
+ }
145
+
146
+ } else {
147
+
148
+ /**
149
+ * substr() implementation that isn't brittle to mbstring.func_overload
150
+ *
151
+ * This version just uses the default substr()
152
+ *
153
+ * @param string $binary_string
154
+ * @param int $start
155
+ * @param int|null $length (optional)
156
+ *
157
+ * @throws TypeError
158
+ *
159
+ * @return string
160
+ */
161
+ function RandomCompat_substr($binary_string, $start, $length = null)
162
+ {
163
+ if (!is_string($binary_string)) {
164
+ throw new TypeError(
165
+ 'RandomCompat_substr(): First argument should be a string'
166
+ );
167
+ }
168
+
169
+ if (!is_int($start)) {
170
+ throw new TypeError(
171
+ 'RandomCompat_substr(): Second argument should be an integer'
172
+ );
173
+ }
174
+
175
+ if ($length !== null) {
176
+ if (!is_int($length)) {
177
+ throw new TypeError(
178
+ 'RandomCompat_substr(): Third argument should be an integer, or omitted'
179
+ );
180
+ }
181
+
182
+ return (string) substr(
183
+ (string )$binary_string,
184
+ (int) $start,
185
+ (int) $length
186
+ );
187
+ }
188
+
189
+ return (string) substr(
190
+ (string) $binary_string,
191
+ (int) $start
192
+ );
193
+ }
194
+ }
195
+ }
vendor/paragonie/random_compat/lib/cast_to_int.php ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Random_* Compatibility Library
4
+ * for using the new PHP 7 random_* API in PHP 5 projects
5
+ *
6
+ * The MIT License (MIT)
7
+ *
8
+ * Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
9
+ *
10
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ * of this software and associated documentation files (the "Software"), to deal
12
+ * in the Software without restriction, including without limitation the rights
13
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ * copies of the Software, and to permit persons to whom the Software is
15
+ * furnished to do so, subject to the following conditions:
16
+ *
17
+ * The above copyright notice and this permission notice shall be included in
18
+ * all copies or substantial portions of the Software.
19
+ *
20
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ * SOFTWARE.
27
+ */
28
+
29
+ if (!is_callable('RandomCompat_intval')) {
30
+
31
+ /**
32
+ * Cast to an integer if we can, safely.
33
+ *
34
+ * If you pass it a float in the range (~PHP_INT_MAX, PHP_INT_MAX)
35
+ * (non-inclusive), it will sanely cast it to an int. If you it's equal to
36
+ * ~PHP_INT_MAX or PHP_INT_MAX, we let it fail as not an integer. Floats
37
+ * lose precision, so the <= and => operators might accidentally let a float
38
+ * through.
39
+ *
40
+ * @param int|float $number The number we want to convert to an int
41
+ * @param bool $fail_open Set to true to not throw an exception
42
+ *
43
+ * @return float|int
44
+ * @psalm-suppress InvalidReturnType
45
+ *
46
+ * @throws TypeError
47
+ */
48
+ function RandomCompat_intval($number, $fail_open = false)
49
+ {
50
+ if (is_int($number) || is_float($number)) {
51
+ $number += 0;
52
+ } elseif (is_numeric($number)) {
53
+ /** @psalm-suppress InvalidOperand */
54
+ $number += 0;
55
+ }
56
+ /** @var int|float $number */
57
+
58
+ if (
59
+ is_float($number)
60
+ &&
61
+ $number > ~PHP_INT_MAX
62
+ &&
63
+ $number < PHP_INT_MAX
64
+ ) {
65
+ $number = (int) $number;
66
+ }
67
+
68
+ if (is_int($number)) {
69
+ return (int) $number;
70
+ } elseif (!$fail_open) {
71
+ throw new TypeError(
72
+ 'Expected an integer.'
73
+ );
74
+ }
75
+ return $number;
76
+ }
77
+ }
vendor/paragonie/random_compat/lib/error_polyfill.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Random_* Compatibility Library
4
+ * for using the new PHP 7 random_* API in PHP 5 projects
5
+ *
6
+ * The MIT License (MIT)
7
+ *
8
+ * Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
9
+ *
10
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ * of this software and associated documentation files (the "Software"), to deal
12
+ * in the Software without restriction, including without limitation the rights
13
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ * copies of the Software, and to permit persons to whom the Software is
15
+ * furnished to do so, subject to the following conditions:
16
+ *
17
+ * The above copyright notice and this permission notice shall be included in
18
+ * all copies or substantial portions of the Software.
19
+ *
20
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ * SOFTWARE.
27
+ */
28
+
29
+ if (!class_exists('Error', false)) {
30
+ // We can't really avoid making this extend Exception in PHP 5.
31
+ class Error extends Exception
32
+ {
33
+
34
+ }
35
+ }
36
+
37
+ if (!class_exists('TypeError', false)) {
38
+ if (is_subclass_of('Error', 'Exception')) {
39
+ class TypeError extends Error
40
+ {
41
+
42
+ }
43
+ } else {
44
+ class TypeError extends Exception
45
+ {
46
+
47
+ }
48
+ }
49
+ }
vendor/paragonie/random_compat/lib/random.php ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Random_* Compatibility Library
4
+ * for using the new PHP 7 random_* API in PHP 5 projects
5
+ *
6
+ * @version 2.0.17
7
+ * @released 2018-07-04
8
+ *
9
+ * The MIT License (MIT)
10
+ *
11
+ * Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
12
+ *
13
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
14
+ * of this software and associated documentation files (the "Software"), to deal
15
+ * in the Software without restriction, including without limitation the rights
16
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17
+ * copies of the Software, and to permit persons to whom the Software is
18
+ * furnished to do so, subject to the following conditions:
19
+ *
20
+ * The above copyright notice and this permission notice shall be included in
21
+ * all copies or substantial portions of the Software.
22
+ *
23
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29
+ * SOFTWARE.
30
+ */
31
+
32
+ if (!defined('PHP_VERSION_ID')) {
33
+ // This constant was introduced in PHP 5.2.7
34
+ $RandomCompatversion = array_map('intval', explode('.', PHP_VERSION));
35
+ define(
36
+ 'PHP_VERSION_ID',
37
+ $RandomCompatversion[0] * 10000
38
+ + $RandomCompatversion[1] * 100
39
+ + $RandomCompatversion[2]
40
+ );
41
+ $RandomCompatversion = null;
42
+ }
43
+
44
+ /**
45
+ * PHP 7.0.0 and newer have these functions natively.
46
+ */
47
+ if (PHP_VERSION_ID >= 70000) {
48
+ return;
49
+ }
50
+
51
+ if (!defined('RANDOM_COMPAT_READ_BUFFER')) {
52
+ define('RANDOM_COMPAT_READ_BUFFER', 8);
53
+ }
54
+
55
+ $RandomCompatDIR = dirname(__FILE__);
56
+
57
+ require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'byte_safe_strings.php';
58
+ require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'cast_to_int.php';
59
+ require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'error_polyfill.php';
60
+
61
+ if (!is_callable('random_bytes')) {
62
+ /**
63
+ * PHP 5.2.0 - 5.6.x way to implement random_bytes()
64
+ *
65
+ * We use conditional statements here to define the function in accordance
66
+ * to the operating environment. It's a micro-optimization.
67
+ *
68
+ * In order of preference:
69
+ * 1. Use libsodium if available.
70
+ * 2. fread() /dev/urandom if available (never on Windows)
71
+ * 3. mcrypt_create_iv($bytes, MCRYPT_DEV_URANDOM)
72
+ * 4. COM('CAPICOM.Utilities.1')->GetRandom()
73
+ *
74
+ * See RATIONALE.md for our reasoning behind this particular order
75
+ */
76
+ if (extension_loaded('libsodium')) {
77
+ // See random_bytes_libsodium.php
78
+ if (PHP_VERSION_ID >= 50300 && is_callable('\\Sodium\\randombytes_buf')) {
79
+ require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_libsodium.php';
80
+ } elseif (method_exists('Sodium', 'randombytes_buf')) {
81
+ require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_libsodium_legacy.php';
82
+ }
83
+ }
84
+
85
+ /**
86
+ * Reading directly from /dev/urandom:
87
+ */
88
+ if (DIRECTORY_SEPARATOR === '/') {
89
+ // DIRECTORY_SEPARATOR === '/' on Unix-like OSes -- this is a fast
90
+ // way to exclude Windows.
91
+ $RandomCompatUrandom = true;
92
+ $RandomCompat_basedir = ini_get('open_basedir');
93
+
94
+ if (!empty($RandomCompat_basedir)) {
95
+ $RandomCompat_open_basedir = explode(
96
+ PATH_SEPARATOR,
97
+ strtolower($RandomCompat_basedir)
98
+ );
99
+ $RandomCompatUrandom = (array() !== array_intersect(
100
+ array('/dev', '/dev/', '/dev/urandom'),
101
+ $RandomCompat_open_basedir
102
+ ));
103
+ $RandomCompat_open_basedir = null;
104
+ }
105
+
106
+ if (
107
+ !is_callable('random_bytes')
108
+ &&
109
+ $RandomCompatUrandom
110
+ &&
111
+ @is_readable('/dev/urandom')
112
+ ) {
113
+ // Error suppression on is_readable() in case of an open_basedir
114
+ // or safe_mode failure. All we care about is whether or not we
115
+ // can read it at this point. If the PHP environment is going to
116
+ // panic over trying to see if the file can be read in the first
117
+ // place, that is not helpful to us here.
118
+
119
+ // See random_bytes_dev_urandom.php
120
+ require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_dev_urandom.php';
121
+ }
122
+ // Unset variables after use
123
+ $RandomCompat_basedir = null;
124
+ } else {
125
+ $RandomCompatUrandom = false;
126
+ }
127
+
128
+ /**
129
+ * mcrypt_create_iv()
130
+ *
131
+ * We only want to use mcypt_create_iv() if:
132
+ *
133
+ * - random_bytes() hasn't already been defined
134
+ * - the mcrypt extensions is loaded
135
+ * - One of these two conditions is true:
136
+ * - We're on Windows (DIRECTORY_SEPARATOR !== '/')
137
+ * - We're not on Windows and /dev/urandom is readabale
138
+ * (i.e. we're not in a chroot jail)
139
+ * - Special case:
140
+ * - If we're not on Windows, but the PHP version is between
141
+ * 5.6.10 and 5.6.12, we don't want to use mcrypt. It will
142
+ * hang indefinitely. This is bad.
143
+ * - If we're on Windows, we want to use PHP >= 5.3.7 or else
144
+ * we get insufficient entropy errors.
145
+ */
146
+ if (
147
+ !is_callable('random_bytes')
148
+ &&
149
+ // Windows on PHP < 5.3.7 is broken, but non-Windows is not known to be.
150
+ (DIRECTORY_SEPARATOR === '/' || PHP_VERSION_ID >= 50307)
151
+ &&
152
+ // Prevent this code from hanging indefinitely on non-Windows;
153
+ // see https://bugs.php.net/bug.php?id=69833
154
+ (
155
+ DIRECTORY_SEPARATOR !== '/' ||
156
+ (PHP_VERSION_ID <= 50609 || PHP_VERSION_ID >= 50613)
157
+ )
158
+ &&
159
+ extension_loaded('mcrypt')
160
+ ) {
161
+ // See random_bytes_mcrypt.php
162
+ require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_mcrypt.php';
163
+ }
164
+ $RandomCompatUrandom = null;
165
+
166
+ /**
167
+ * This is a Windows-specific fallback, for when the mcrypt extension
168
+ * isn't loaded.
169
+ */
170
+ if (
171
+ !is_callable('random_bytes')
172
+ &&
173
+ extension_loaded('com_dotnet')
174
+ &&
175
+ class_exists('COM')
176
+ ) {
177
+ $RandomCompat_disabled_classes = preg_split(
178
+ '#\s*,\s*#',
179
+ strtolower(ini_get('disable_classes'))
180
+ );
181
+
182
+ if (!in_array('com', $RandomCompat_disabled_classes)) {
183
+ try {
184
+ $RandomCompatCOMtest = new COM('CAPICOM.Utilities.1');
185
+ if (method_exists($RandomCompatCOMtest, 'GetRandom')) {
186
+ // See random_bytes_com_dotnet.php
187
+ require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_com_dotnet.php';
188
+ }
189
+ } catch (com_exception $e) {
190
+ // Don't try to use it.
191
+ }
192
+ }
193
+ $RandomCompat_disabled_classes = null;
194
+ $RandomCompatCOMtest = null;
195
+ }
196
+
197
+ /**
198
+ * throw new Exception
199
+ */
200
+ if (!is_callable('random_bytes')) {
201
+ /**
202
+ * We don't have any more options, so let's throw an exception right now
203
+ * and hope the developer won't let it fail silently.
204
+ *
205
+ * @param mixed $length
206
+ * @psalm-suppress InvalidReturnType
207
+ * @throws Exception
208
+ * @return string
209
+ */
210
+ function random_bytes($length)
211
+ {
212
+ unset($length); // Suppress "variable not used" warnings.
213
+ throw new Exception(
214
+ 'There is no suitable CSPRNG installed on your system'
215
+ );
216
+ return '';
217
+ }
218
+ }
219
+ }
220
+
221
+ if (!is_callable('random_int')) {
222
+ require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_int.php';
223
+ }
224
+
225
+ $RandomCompatDIR = null;
vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Random_* Compatibility Library
4
+ * for using the new PHP 7 random_* API in PHP 5 projects
5
+ *
6
+ * The MIT License (MIT)
7
+ *
8
+ * Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
9
+ *
10
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ * of this software and associated documentation files (the "Software"), to deal
12
+ * in the Software without restriction, including without limitation the rights
13
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ * copies of the Software, and to permit persons to whom the Software is
15
+ * furnished to do so, subject to the following conditions:
16
+ *
17
+ * The above copyright notice and this permission notice shall be included in
18
+ * all copies or substantial portions of the Software.
19
+ *
20
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ * SOFTWARE.
27
+ */
28
+
29
+ if (!is_callable('random_bytes')) {
30
+ /**
31
+ * Windows with PHP < 5.3.0 will not have the function
32
+ * openssl_random_pseudo_bytes() available, so let's use
33
+ * CAPICOM to work around this deficiency.
34
+ *
35
+ * @param int $bytes
36
+ *
37
+ * @throws Exception
38
+ *
39
+ * @return string
40
+ */
41
+ function random_bytes($bytes)
42
+ {
43
+ try {
44
+ /** @var int $bytes */
45
+ $bytes = RandomCompat_intval($bytes);
46
+ } catch (TypeError $ex) {
47
+ throw new TypeError(
48
+ 'random_bytes(): $bytes must be an integer'
49
+ );
50
+ }
51
+
52
+ if ($bytes < 1) {
53
+ throw new Error(
54
+ 'Length must be greater than 0'
55
+ );
56
+ }
57
+
58
+ /** @var string $buf */
59
+ $buf = '';
60
+ if (!class_exists('COM')) {
61
+ throw new Error(
62
+ 'COM does not exist'
63
+ );
64
+ }
65
+ /** @var COM $util */
66
+ $util = new COM('CAPICOM.Utilities.1');
67
+ $execCount = 0;
68
+
69
+ /**
70
+ * Let's not let it loop forever. If we run N times and fail to
71
+ * get N bytes of random data, then CAPICOM has failed us.
72
+ */
73
+ do {
74
+ $buf .= base64_decode((string) $util->GetRandom($bytes, 0));
75
+ if (RandomCompat_strlen($buf) >= $bytes) {
76
+ /**
77
+ * Return our random entropy buffer here:
78
+ */
79
+ return (string) RandomCompat_substr($buf, 0, $bytes);
80
+ }
81
+ ++$execCount;
82
+ } while ($execCount < $bytes);
83
+
84
+ /**
85
+ * If we reach here, PHP has failed us.
86
+ */
87
+ throw new Exception(
88
+ 'Could not gather sufficient random data'
89
+ );
90
+ }
91
+ }
vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Random_* Compatibility Library
4
+ * for using the new PHP 7 random_* API in PHP 5 projects
5
+ *
6
+ * The MIT License (MIT)
7
+ *
8
+ * Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
9
+ *
10
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ * of this software and associated documentation files (the "Software"), to deal
12
+ * in the Software without restriction, including without limitation the rights
13
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ * copies of the Software, and to permit persons to whom the Software is
15
+ * furnished to do so, subject to the following conditions:
16
+ *
17
+ * The above copyright notice and this permission notice shall be included in
18
+ * all copies or substantial portions of the Software.
19
+ *
20
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ * SOFTWARE.
27
+ */
28
+
29
+ if (!defined('RANDOM_COMPAT_READ_BUFFER')) {
30
+ define('RANDOM_COMPAT_READ_BUFFER', 8);
31
+ }
32
+
33
+ if (!is_callable('random_bytes')) {
34
+ /**
35
+ * Unless open_basedir is enabled, use /dev/urandom for
36
+ * random numbers in accordance with best practices
37
+ *
38
+ * Why we use /dev/urandom and not /dev/random
39
+ * @ref https://www.2uo.de/myths-about-urandom
40
+ * @ref http://sockpuppet.org/blog/2014/02/25/safely-generate-random-numbers
41
+ *
42
+ * @param int $bytes
43
+ *
44
+ * @throws Exception
45
+ *
46
+ * @return string
47
+ */
48
+ function random_bytes($bytes)
49
+ {
50
+ /** @var resource $fp */
51
+ static $fp = null;
52
+
53
+ /**
54
+ * This block should only be run once
55
+ */
56
+ if (empty($fp)) {
57
+ /**
58
+ * We don't want to ever read C:\dev\random, only /dev/urandom on
59
+ * Unix-like operating systems. While we guard against this
60
+ * condition in random.php, it doesn't hurt to be defensive in depth
61
+ * here.
62
+ *
63
+ * To that end, we only try to open /dev/urandom if we're on a Unix-
64
+ * like operating system (which means the directory separator is set
65
+ * to "/" not "\".
66
+ */
67
+ if (DIRECTORY_SEPARATOR === '/') {
68
+ if (!is_readable('/dev/urandom')) {
69
+ throw new Exception(
70
+ 'Environment misconfiguration: ' .
71
+ '/dev/urandom cannot be read.'
72
+ );
73
+ }
74
+ /**
75
+ * We use /dev/urandom if it is a char device.
76
+ * We never fall back to /dev/random
77
+ */
78
+ /** @var resource|bool $fp */
79
+ $fp = fopen('/dev/urandom', 'rb');
80
+ if (is_resource($fp)) {
81
+ /** @var array<string, int> $st */
82
+ $st = fstat($fp);
83
+ if (($st['mode'] & 0170000) !== 020000) {
84
+ fclose($fp);
85
+ $fp = false;
86
+ }
87
+ }
88
+ }
89
+
90
+ if (is_resource($fp)) {
91
+ /**
92
+ * stream_set_read_buffer() does not exist in HHVM
93
+ *
94
+ * If we don't set the stream's read buffer to 0, PHP will
95
+ * internally buffer 8192 bytes, which can waste entropy
96
+ *
97
+ * stream_set_read_buffer returns 0 on success
98
+ */
99
+ if (is_callable('stream_set_read_buffer')) {
100
+ stream_set_read_buffer($fp, RANDOM_COMPAT_READ_BUFFER);
101
+ }
102
+ if (is_callable('stream_set_chunk_size')) {
103
+ stream_set_chunk_size($fp, RANDOM_COMPAT_READ_BUFFER);
104
+ }
105
+ }
106
+ }
107
+
108
+ try {
109
+ /** @var int $bytes */
110
+ $bytes = RandomCompat_intval($bytes);
111
+ } catch (TypeError $ex) {
112
+ throw new TypeError(
113
+ 'random_bytes(): $bytes must be an integer'
114
+ );
115
+ }
116
+
117
+ if ($bytes < 1) {
118
+ throw new Error(
119
+ 'Length must be greater than 0'
120
+ );
121
+ }
122
+
123
+ /**
124
+ * This if() block only runs if we managed to open a file handle
125
+ *
126
+ * It does not belong in an else {} block, because the above
127
+ * if (empty($fp)) line is logic that should only be run once per
128
+ * page load.
129
+ */
130
+ if (is_resource($fp)) {
131
+ /**
132
+ * @var int
133
+ */
134
+ $remaining = $bytes;
135
+
136
+ /**
137
+ * @var string|bool
138
+ */
139
+ $buf = '';
140
+
141
+ /**
142
+ * We use fread() in a loop to protect against partial reads
143
+ */
144
+ do {
145
+ /**
146
+ * @var string|bool
147
+ */
148
+ $read = fread($fp, $remaining);
149
+ if (!is_string($read)) {
150
+ /**
151
+ * We cannot safely read from the file. Exit the
152
+ * do-while loop and trigger the exception condition
153
+ *
154
+ * @var string|bool
155
+ */
156
+ $buf = false;
157
+ break;
158
+ }
159
+ /**
160
+ * Decrease the number of bytes returned from remaining
161
+ */
162
+ $remaining -= RandomCompat_strlen($read);
163
+ /**
164
+ * @var string $buf
165
+ */
166
+ $buf .= $read;
167
+ } while ($remaining > 0);
168
+
169
+ /**
170
+ * Is our result valid?
171
+ * @var string|bool $buf
172
+ */
173
+ if (is_string($buf)) {
174
+ if (RandomCompat_strlen($buf) === $bytes) {
175
+ /**
176
+ * Return our random entropy buffer here:
177
+ */
178
+ return $buf;
179
+ }
180
+ }
181
+ }
182
+
183
+ /**
184
+ * If we reach here, PHP has failed us.
185
+ */
186
+ throw new Exception(
187
+ 'Error reading from source device'
188
+ );
189
+ }
190
+ }
vendor/paragonie/random_compat/lib/random_bytes_libsodium.php ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Random_* Compatibility Library
4
+ * for using the new PHP 7 random_* API in PHP 5 projects
5
+ *
6
+ * The MIT License (MIT)
7
+ *
8
+ * Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
9
+ *
10
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ * of this software and associated documentation files (the "Software"), to deal
12
+ * in the Software without restriction, including without limitation the rights
13
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ * copies of the Software, and to permit persons to whom the Software is
15
+ * furnished to do so, subject to the following conditions:
16
+ *
17
+ * The above copyright notice and this permission notice shall be included in
18
+ * all copies or substantial portions of the Software.
19
+ *
20
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ * SOFTWARE.
27
+ */
28
+
29
+ if (!is_callable('random_bytes')) {
30
+ /**
31
+ * If the libsodium PHP extension is loaded, we'll use it above any other
32
+ * solution.
33
+ *
34
+ * libsodium-php project:
35
+ * @ref https://github.com/jedisct1/libsodium-php
36
+ *
37
+ * @param int $bytes
38
+ *
39
+ * @throws Exception
40
+ *
41
+ * @return string
42
+ */
43
+ function random_bytes($bytes)
44
+ {
45
+ try {
46
+ /** @var int $bytes */
47
+ $bytes = RandomCompat_intval($bytes);
48
+ } catch (TypeError $ex) {
49
+ throw new TypeError(
50
+ 'random_bytes(): $bytes must be an integer'
51
+ );
52
+ }
53
+
54
+ if ($bytes < 1) {
55
+ throw new Error(
56
+ 'Length must be greater than 0'
57
+ );
58
+ }
59
+
60
+ /**
61
+ * \Sodium\randombytes_buf() doesn't allow more than 2147483647 bytes to be
62
+ * generated in one invocation.
63
+ */
64
+ /** @var string|bool $buf */
65
+ if ($bytes > 2147483647) {
66
+ $buf = '';
67
+ for ($i = 0; $i < $bytes; $i += 1073741824) {
68
+ $n = ($bytes - $i) > 1073741824
69
+ ? 1073741824
70
+ : $bytes - $i;
71
+ $buf .= \Sodium\randombytes_buf($n);
72
+ }
73
+ } else {
74
+ /** @var string|bool $buf */
75
+ $buf = \Sodium\randombytes_buf($bytes);
76
+ }
77
+
78
+ if (is_string($buf)) {
79
+ if (RandomCompat_strlen($buf) === $bytes) {
80
+ return $buf;
81
+ }
82
+ }
83
+
84
+ /**
85
+ * If we reach here, PHP has failed us.
86
+ */
87
+ throw new Exception(
88
+ 'Could not gather sufficient random data'
89
+ );
90
+ }
91
+ }
vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Random_* Compatibility Library
4
+ * for using the new PHP 7 random_* API in PHP 5 projects
5
+ *
6
+ * The MIT License (MIT)
7
+ *
8
+ * Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
9
+ *
10
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ * of this software and associated documentation files (the "Software"), to deal
12
+ * in the Software without restriction, including without limitation the rights
13
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ * copies of the Software, and to permit persons to whom the Software is
15
+ * furnished to do so, subject to the following conditions:
16
+ *
17
+ * The above copyright notice and this permission notice shall be included in
18
+ * all copies or substantial portions of the Software.
19
+ *
20
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ * SOFTWARE.
27
+ */
28
+
29
+ if (!is_callable('random_bytes')) {
30
+ /**
31
+ * If the libsodium PHP extension is loaded, we'll use it above any other
32
+ * solution.
33
+ *
34
+ * libsodium-php project:
35
+ * @ref https://github.com/jedisct1/libsodium-php
36
+ *
37
+ * @param int $bytes
38
+ *
39
+ * @throws Exception
40
+ *
41
+ * @return string
42
+ */
43
+ function random_bytes($bytes)
44
+ {
45
+ try {
46
+ /** @var int $bytes */
47
+ $bytes = RandomCompat_intval($bytes);
48
+ } catch (TypeError $ex) {
49
+ throw new TypeError(
50
+ 'random_bytes(): $bytes must be an integer'
51
+ );
52
+ }
53
+
54
+ if ($bytes < 1) {
55
+ throw new Error(
56
+ 'Length must be greater than 0'
57
+ );
58
+ }
59
+
60
+ /**
61
+ * @var string
62
+ */
63
+ $buf = '';
64
+
65
+ /**
66
+ * \Sodium\randombytes_buf() doesn't allow more than 2147483647 bytes to be
67
+ * generated in one invocation.
68
+ */
69
+ if ($bytes > 2147483647) {
70
+ for ($i = 0; $i < $bytes; $i += 1073741824) {
71
+ $n = ($bytes - $i) > 1073741824
72
+ ? 1073741824
73
+ : $bytes - $i;
74
+ $buf .= Sodium::randombytes_buf((int) $n);
75
+ }
76
+ } else {
77
+ $buf .= Sodium::randombytes_buf((int) $bytes);
78
+ }
79
+
80
+ if (is_string($buf)) {
81
+ if (RandomCompat_strlen($buf) === $bytes) {
82
+ return $buf;
83
+ }
84
+ }
85
+
86
+ /**
87
+ * If we reach here, PHP has failed us.
88
+ */
89
+ throw new Exception(
90
+ 'Could not gather sufficient random data'
91
+ );
92
+ }
93
+ }
vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Random_* Compatibility Library
4
+ * for using the new PHP 7 random_* API in PHP 5 projects
5
+ *
6
+ * The MIT License (MIT)
7
+ *
8
+ * Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
9
+ *
10
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ * of this software and associated documentation files (the "Software"), to deal
12
+ * in the Software without restriction, including without limitation the rights
13
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ * copies of the Software, and to permit persons to whom the Software is
15
+ * furnished to do so, subject to the following conditions:
16
+ *
17
+ * The above copyright notice and this permission notice shall be included in
18
+ * all copies or substantial portions of the Software.
19
+ *
20
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ * SOFTWARE.
27
+ */
28
+
29
+ if (!is_callable('random_bytes')) {
30
+ /**
31
+ * Powered by ext/mcrypt (and thankfully NOT libmcrypt)
32
+ *
33
+ * @ref https://bugs.php.net/bug.php?id=55169
34
+ * @ref https://github.com/php/php-src/blob/c568ffe5171d942161fc8dda066bce844bdef676/ext/mcrypt/mcrypt.c#L1321-L1386
35
+ *
36
+ * @param int $bytes
37
+ *
38
+ * @throws Exception
39
+ *
40
+ * @return string
41
+ */
42
+ function random_bytes($bytes)
43
+ {
44
+ try {
45
+ /** @var int $bytes */
46
+ $bytes = RandomCompat_intval($bytes);
47
+ } catch (TypeError $ex) {
48
+ throw new TypeError(
49
+ 'random_bytes(): $bytes must be an integer'
50
+ );
51
+ }
52
+
53
+ if ($bytes < 1) {
54
+ throw new Error(
55
+ 'Length must be greater than 0'
56
+ );
57
+ }
58
+
59
+ /** @var string|bool $buf */
60
+ $buf = @mcrypt_create_iv((int) $bytes, (int) MCRYPT_DEV_URANDOM);
61
+ if (
62
+ is_string($buf)
63
+ &&
64
+ RandomCompat_strlen($buf) === $bytes
65
+ ) {
66
+ /**
67
+ * Return our random entropy buffer here:
68
+ */
69
+ return $buf;
70
+ }
71
+
72
+ /**
73
+ * If we reach here, PHP has failed us.
74
+ */
75
+ throw new Exception(
76
+ 'Could not gather sufficient random data'
77
+ );
78
+ }
79
+ }
vendor/paragonie/random_compat/lib/random_int.php ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if (!is_callable('random_int')) {
4
+ /**
5
+ * Random_* Compatibility Library
6
+ * for using the new PHP 7 random_* API in PHP 5 projects
7
+ *
8
+ * The MIT License (MIT)
9
+ *
10
+ * Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
11
+ *
12
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ * of this software and associated documentation files (the "Software"), to deal
14
+ * in the Software without restriction, including without limitation the rights
15
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ * copies of the Software, and to permit persons to whom the Software is
17
+ * furnished to do so, subject to the following conditions:
18
+ *
19
+ * The above copyright notice and this permission notice shall be included in
20
+ * all copies or substantial portions of the Software.
21
+ *
22
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ * SOFTWARE.
29
+ */
30
+
31
+ /**
32
+ * Fetch a random integer between $min and $max inclusive
33
+ *
34
+ * @param int $min
35
+ * @param int $max
36
+ *
37
+ * @throws Exception
38
+ *
39
+ * @return int
40
+ */
41
+ function random_int($min, $max)
42
+ {
43
+ /**
44
+ * Type and input logic checks
45
+ *
46
+ * If you pass it a float in the range (~PHP_INT_MAX, PHP_INT_MAX)
47
+ * (non-inclusive), it will sanely cast it to an int. If you it's equal to
48
+ * ~PHP_INT_MAX or PHP_INT_MAX, we let it fail as not an integer. Floats
49
+ * lose precision, so the <= and => operators might accidentally let a float
50
+ * through.
51
+ */
52
+
53
+ try {
54
+ /** @var int $min */
55
+ $min = RandomCompat_intval($min);
56
+ } catch (TypeError $ex) {
57
+ throw new TypeError(
58
+ 'random_int(): $min must be an integer'
59
+ );
60
+ }
61
+
62
+ try {
63
+ /** @var int $max */
64
+ $max = RandomCompat_intval($max);
65
+ } catch (TypeError $ex) {
66
+ throw new TypeError(
67
+ 'random_int(): $max must be an integer'
68
+ );
69
+ }
70
+
71
+ /**
72
+ * Now that we've verified our weak typing system has given us an integer,
73
+ * let's validate the logic then we can move forward with generating random
74
+ * integers along a given range.
75
+ */
76
+ if ($min > $max) {
77
+ throw new Error(
78
+ 'Minimum value must be less than or equal to the maximum value'
79
+ );
80
+ }
81
+
82
+ if ($max === $min) {
83
+ return (int) $min;
84
+ }
85
+
86
+ /**
87
+ * Initialize variables to 0
88
+ *
89
+ * We want to store:
90
+ * $bytes => the number of random bytes we need
91
+ * $mask => an integer bitmask (for use with the &) operator
92
+ * so we can minimize the number of discards
93
+ */
94
+ $attempts = $bits = $bytes = $mask = $valueShift = 0;
95
+ /** @var int $attempts */
96
+ /** @var int $bits */
97
+ /** @var int $bytes */
98
+ /** @var int $mask */
99
+ /** @var int $valueShift */
100
+
101
+ /**
102
+ * At this point, $range is a positive number greater than 0. It might
103
+ * overflow, however, if $max - $min > PHP_INT_MAX. PHP will cast it to
104
+ * a float and we will lose some precision.
105
+ *
106
+ * @var int|float $range
107
+ */
108
+ $range = $max - $min;
109
+
110
+ /**
111
+ * Test for integer overflow:
112
+ */
113
+ if (!is_int($range)) {
114
+
115
+ /**
116
+ * Still safely calculate wider ranges.
117
+ * Provided by @CodesInChaos, @oittaa
118
+ *
119
+ * @ref https://gist.github.com/CodesInChaos/03f9ea0b58e8b2b8d435
120
+ *
121
+ * We use ~0 as a mask in this case because it generates all 1s
122
+ *
123
+ * @ref https://eval.in/400356 (32-bit)
124
+ * @ref http://3v4l.org/XX9r5 (64-bit)
125
+ */
126
+ $bytes = PHP_INT_SIZE;
127
+ /** @var int $mask */
128
+ $mask = ~0;
129
+
130
+ } else {
131
+
132
+ /**
133
+ * $bits is effectively ceil(log($range, 2)) without dealing with
134
+ * type juggling
135
+ */
136
+ while ($range > 0) {
137
+ if ($bits % 8 === 0) {
138
+ ++$bytes;
139
+ }
140
+ ++$bits;
141
+ $range >>= 1;
142
+ /** @var int $mask */
143
+ $mask = $mask << 1 | 1;
144
+ }
145
+ $valueShift = $min;
146
+ }
147
+
148
+ /** @var int $val */
149
+ $val = 0;
150
+ /**
151
+ * Now that we have our parameters set up, let's begin generating
152
+ * random integers until one falls between $min and $max
153
+ */
154
+ /** @psalm-suppress RedundantCondition */
155
+ do {
156
+ /**
157
+ * The rejection probability is at most 0.5, so this corresponds
158
+ * to a failure probability of 2^-128 for a working RNG
159
+ */
160
+ if ($attempts > 128) {
161
+ throw new Exception(
162
+ 'random_int: RNG is broken - too many rejections'
163
+ );
164
+ }
165
+
166
+ /**
167
+ * Let's grab the necessary number of random bytes
168
+ */
169
+ $randomByteString = random_bytes($bytes);
170
+
171
+ /**
172
+ * Let's turn $randomByteString into an integer
173
+ *
174
+ * This uses bitwise operators (<< and |) to build an integer
175
+ * out of the values extracted from ord()
176
+ *
177
+ * Example: [9F] | [6D] | [32] | [0C] =>
178
+ * 159 + 27904 + 3276800 + 201326592 =>
179
+ * 204631455
180
+ */
181
+ $val &= 0;
182
+ for ($i = 0; $i < $bytes; ++$i) {
183
+ $val |= ord($randomByteString[$i]) << ($i * 8);
184
+ }
185
+ /** @var int $val */
186
+
187
+ /**
188
+ * Apply mask
189
+ */
190
+ $val &= $mask;
191
+ $val += $valueShift;
192
+
193
+ ++$attempts;
194
+ /**
195
+ * If $val overflows to a floating point number,
196
+ * ... or is larger than $max,
197
+ * ... or smaller than $min,
198
+ * then try again.
199
+ */
200
+ } while (!is_int($val) || $val > $max || $val < $min);
201
+
202
+ return (int) $val;
203
+ }
204
+ }
vendor/paragonie/random_compat/phpunit-autoload.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ require_once __DIR__ . '/psalm-autoload.php';
4
+
5
+ /**
6
+ * This is necessary for PHPUnit on PHP >= 5.3
7
+ *
8
+ * Class PHPUnit_Framework_TestCase
9
+ */
10
+ if (PHP_VERSION_ID >= 50300) {
11
+ if (!class_exists('PHPUnit_Framework_TestCase')) {
12
+ require_once __DIR__ . '/other/phpunit-shim.php';
13
+ }
14
+ }
vendor/psr/http-message/CHANGELOG.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file, in reverse chronological order by release.
4
+
5
+ ## 1.0.1 - 2016-08-06
6
+
7
+ ### Added
8
+
9
+ - Nothing.
10
+
11
+ ### Deprecated
12
+
13
+ - Nothing.
14
+
15
+ ### Removed
16
+
17
+ - Nothing.
18
+
19
+ ### Fixed
20
+
21
+ - Updated all `@return self` annotation references in interfaces to use
22
+ `@return static`, which more closelly follows the semantics of the
23
+ specification.
24
+ - Updated the `MessageInterface::getHeaders()` return annotation to use the
25
+ value `string[][]`, indicating the format is a nested array of strings.
26
+ - Updated the `@link` annotation for `RequestInterface::withRequestTarget()`
27
+ to point to the correct section of RFC 7230.
28
+ - Updated the `ServerRequestInterface::withUploadedFiles()` parameter annotation
29
+ to add the parameter name (`$uploadedFiles`).
30
+ - Updated a `@throws` annotation for the `UploadedFileInterface::moveTo()`
31
+ method to correctly reference the method parameter (it was referencing an
32
+ incorrect parameter name previously).
33
+
34
+ ## 1.0.0 - 2016-05-18
35
+
36
+ Initial stable release; reflects accepted PSR-7 specification.
vendor/psr/http-message/LICENSE DELETED
@@ -1,19 +0,0 @@
1
- Copyright (c) 2014 PHP Framework Interoperability Group
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the "Software"), to deal
5
- in the Software without restriction, including without limitation the rights
6
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- copies of the Software, and to permit persons to whom the Software is
8
- furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in
11
- all copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- THE SOFTWARE.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/ralouphie/getallheaders/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2014 Ralph Khattar
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/symfony/polyfill-intl-idn/Idn.php ADDED
@@ -0,0 +1,923 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com> and Trevor Rowbotham <trevor.rowbotham@pm.me>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Symfony\Polyfill\Intl\Idn;
13
+
14
+ use Exception;
15
+ use Normalizer;
16
+ use Symfony\Polyfill\Intl\Idn\Resources\unidata\DisallowedRanges;
17
+ use Symfony\Polyfill\Intl\Idn\Resources\unidata\Regex;
18
+
19
+ /**
20
+ * @see https://www.unicode.org/reports/tr46/
21
+ *
22
+ * @internal
23
+ */
24
+ final class Idn
25
+ {
26
+ const ERROR_EMPTY_LABEL = 1;
27
+ const ERROR_LABEL_TOO_LONG = 2;
28
+ const ERROR_DOMAIN_NAME_TOO_LONG = 4;
29
+ const ERROR_LEADING_HYPHEN = 8;
30
+ const ERROR_TRAILING_HYPHEN = 0x10;
31
+ const ERROR_HYPHEN_3_4 = 0x20;
32
+ const ERROR_LEADING_COMBINING_MARK = 0x40;
33
+ const ERROR_DISALLOWED = 0x80;
34
+ const ERROR_PUNYCODE = 0x100;
35
+ const ERROR_LABEL_HAS_DOT = 0x200;
36
+ const ERROR_INVALID_ACE_LABEL = 0x400;
37
+ const ERROR_BIDI = 0x800;
38
+ const ERROR_CONTEXTJ = 0x1000;
39
+ const ERROR_CONTEXTO_PUNCTUATION = 0x2000;
40
+ const ERROR_CONTEXTO_DIGITS = 0x4000;
41
+
42
+ const INTL_IDNA_VARIANT_2003 = 0;
43
+ const INTL_IDNA_VARIANT_UTS46 = 1;
44
+
45
+ const IDNA_DEFAULT = 0;
46
+ const IDNA_ALLOW_UNASSIGNED = 1;
47
+ const IDNA_USE_STD3_RULES = 2;
48
+ const IDNA_CHECK_BIDI = 4;
49
+ const IDNA_CHECK_CONTEXTJ = 8;
50
+ const IDNA_NONTRANSITIONAL_TO_ASCII = 16;
51
+ const IDNA_NONTRANSITIONAL_TO_UNICODE = 32;
52
+
53
+ const MAX_DOMAIN_SIZE = 253;
54
+ const MAX_LABEL_SIZE = 63;
55
+
56
+ const BASE = 36;
57
+ const TMIN = 1;
58
+ const TMAX = 26;
59
+ const SKEW = 38;
60
+ const DAMP = 700;
61
+ const INITIAL_BIAS = 72;
62
+ const INITIAL_N = 128;
63
+ const DELIMITER = '-';
64
+ const MAX_INT = 2147483647;
65
+
66
+ /**
67
+ * Contains the numeric value of a basic code point (for use in representing integers) in the
68
+ * range 0 to BASE-1, or -1 if b is does not represent a value.
69
+ *
70
+ * @var array<int, int>
71
+ */
72
+ private static $basicToDigit = array(
73
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
74
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
75
+
76
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
77
+ 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, -1,
78
+
79
+ -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
80
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
81
+
82
+ -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
83
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
84
+
85
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
86
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
87
+
88
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
89
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
90
+
91
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
92
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
93
+
94
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
95
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
96
+ );
97
+
98
+ /**
99
+ * @var array<int, int>
100
+ */
101
+ private static $virama;
102
+
103
+ /**
104
+ * @var array<int, string>
105
+ */
106
+ private static $mapped;
107
+
108
+ /**
109
+ * @var array<int, bool>
110
+ */
111
+ private static $ignored;
112
+
113
+ /**
114
+ * @var array<int, string>
115
+ */
116
+ private static $deviation;
117
+
118
+ /**
119
+ * @var array<int, bool>
120
+ */
121
+ private static $disallowed;
122
+
123
+ /**
124
+ * @var array<int, string>
125
+ */
126
+ private static $disallowed_STD3_mapped;
127
+
128
+ /**
129
+ * @var array<int, bool>
130
+ */
131
+ private static $disallowed_STD3_valid;
132
+
133
+ /**
134
+ * @var bool
135
+ */
136
+ private static $mappingTableLoaded = false;
137
+
138
+ /**
139
+ * @see https://www.unicode.org/reports/tr46/#ToASCII
140
+ *
141
+ * @param string $domainName
142
+ * @param int $options
143
+ * @param int $variant
144
+ * @param array $idna_info
145
+ *
146
+ * @return string|false
147
+ */
148
+ public static function idn_to_ascii($domainName, $options = self::IDNA_DEFAULT, $variant = self::INTL_IDNA_VARIANT_UTS46, &$idna_info = array())
149
+ {
150
+ if (\PHP_VERSION_ID >= 70200 && self::INTL_IDNA_VARIANT_2003 === $variant) {
151
+ @trigger_error('idn_to_ascii(): INTL_IDNA_VARIANT_2003 is deprecated', E_USER_DEPRECATED);
152
+ }
153
+
154
+ $options = array(
155
+ 'CheckHyphens' => true,
156
+ 'CheckBidi' => self::INTL_IDNA_VARIANT_2003 === $variant || 0 !== ($options & self::IDNA_CHECK_BIDI),
157
+ 'CheckJoiners' => self::INTL_IDNA_VARIANT_UTS46 === $variant && 0 !== ($options & self::IDNA_CHECK_CONTEXTJ),
158
+ 'UseSTD3ASCIIRules' => 0 !== ($options & self::IDNA_USE_STD3_RULES),
159
+ 'Transitional_Processing' => self::INTL_IDNA_VARIANT_2003 === $variant || 0 === ($options & self::IDNA_NONTRANSITIONAL_TO_ASCII),
160
+ 'VerifyDnsLength' => true,
161
+ );
162
+ $info = new Info();
163
+ $labels = self::process((string) $domainName, $options, $info);
164
+
165
+ foreach ($labels as $i => $label) {
166
+ // Only convert labels to punycode that contain non-ASCII code points
167
+ if (1 === preg_match('/[^\x00-\x7F]/', $label)) {
168
+ try {
169
+ $label = 'xn--'.self::punycodeEncode($label);
170
+ } catch (Exception $e) {
171
+ $info->errors |= self::ERROR_PUNYCODE;
172
+ }
173
+
174
+ $labels[$i] = $label;
175
+ }
176
+ }
177
+
178
+ if ($options['VerifyDnsLength']) {
179
+ self::validateDomainAndLabelLength($labels, $info);
180
+ }
181
+
182
+ $idna_info = array(
183
+ 'result' => implode('.', $labels),
184
+ 'isTransitionalDifferent' => $info->transitionalDifferent,
185
+ 'errors' => $info->errors,
186
+ );
187
+
188
+ return 0 === $info->errors ? $idna_info['result'] : false;
189
+ }
190
+
191
+ /**
192
+ * @see https://www.unicode.org/reports/tr46/#ToUnicode
193
+ *
194
+ * @param string $domainName
195
+ * @param int $options
196
+ * @param int $variant
197
+ * @param array $idna_info
198
+ *
199
+ * @return string|false
200
+ */
201
+ public static function idn_to_utf8($domainName, $options = self::IDNA_DEFAULT, $variant = self::INTL_IDNA_VARIANT_UTS46, &$idna_info = array())
202
+ {
203
+ if (\PHP_VERSION_ID >= 70200 && self::INTL_IDNA_VARIANT_2003 === $variant) {
204
+ @trigger_error('idn_to_utf8(): INTL_IDNA_VARIANT_2003 is deprecated', E_USER_DEPRECATED);
205
+ }
206
+
207
+ $info = new Info();
208
+ $labels = self::process((string) $domainName, array(
209
+ 'CheckHyphens' => true,
210
+ 'CheckBidi' => self::INTL_IDNA_VARIANT_2003 === $variant || 0 !== ($options & self::IDNA_CHECK_BIDI),
211
+ 'CheckJoiners' => self::INTL_IDNA_VARIANT_UTS46 === $variant && 0 !== ($options & self::IDNA_CHECK_CONTEXTJ),
212
+ 'UseSTD3ASCIIRules' => 0 !== ($options & self::IDNA_USE_STD3_RULES),
213
+ 'Transitional_Processing' => self::INTL_IDNA_VARIANT_2003 === $variant || 0 === ($options & self::IDNA_NONTRANSITIONAL_TO_UNICODE),
214
+ ), $info);
215
+ $idna_info = array(
216
+ 'result' => implode('.', $labels),
217
+ 'isTransitionalDifferent' => $info->transitionalDifferent,
218
+ 'errors' => $info->errors,
219
+ );
220
+
221
+ return 0 === $info->errors ? $idna_info['result'] : false;
222
+ }
223
+
224
+ /**
225
+ * @param string $label
226
+ *
227
+ * @return bool
228
+ */
229
+ private static function isValidContextJ(array $codePoints, $label)
230
+ {
231
+ if (!isset(self::$virama)) {
232
+ self::$virama = require __DIR__.\DIRECTORY_SEPARATOR.'Resources'.\DIRECTORY_SEPARATOR.'unidata'.\DIRECTORY_SEPARATOR.'virama.php';
233
+ }
234
+
235
+ $offset = 0;
236
+
237
+ foreach ($codePoints as $i => $codePoint) {
238
+ if (0x200C !== $codePoint && 0x200D !== $codePoint) {
239
+ continue;
240
+ }
241
+
242
+ if (!isset($codePoints[$i - 1])) {
243
+ return false;
244
+ }
245
+
246
+ // If Canonical_Combining_Class(Before(cp)) .eq. Virama Then True;
247
+ if (isset(self::$virama[$codePoints[$i - 1]])) {
248
+ continue;
249
+ }
250
+
251
+ // If RegExpMatch((Joining_Type:{L,D})(Joining_Type:T)*\u200C(Joining_Type:T)*(Joining_Type:{R,D})) Then
252
+ // True;
253
+ // Generated RegExp = ([Joining_Type:{L,D}][Joining_Type:T]*\u200C[Joining_Type:T]*)[Joining_Type:{R,D}]
254
+ if (0x200C === $codePoint && 1 === preg_match(Regex::ZWNJ, $label, $matches, PREG_OFFSET_CAPTURE, $offset)) {
255
+ $offset += \strlen($matches[1][0]);
256
+
257
+ continue;
258
+ }
259
+
260
+ return false;
261
+ }
262
+
263
+ return true;
264
+ }
265
+
266
+ /**
267
+ * @see https://www.unicode.org/reports/tr46/#ProcessingStepMap
268
+ *
269
+ * @param string $input
270
+ * @param array<string, bool> $options
271
+ *
272
+ * @return string
273
+ */
274
+ private static function mapCodePoints($input, array $options, Info $info)
275
+ {
276
+ $str = '';
277
+ $useSTD3ASCIIRules = $options['UseSTD3ASCIIRules'];
278
+ $transitional = $options['Transitional_Processing'];
279
+
280
+ foreach (self::utf8Decode($input) as $codePoint) {
281
+ $data = self::lookupCodePointStatus($codePoint, $useSTD3ASCIIRules);
282
+
283
+ switch ($data['status']) {
284
+ case 'disallowed':
285
+ $info->errors |= self::ERROR_DISALLOWED;
286
+
287
+ // no break.
288
+
289
+ case 'valid':
290
+ $str .= mb_chr($codePoint, 'utf-8');
291
+
292
+ break;
293
+
294
+ case 'ignored':
295
+ // Do nothing.
296
+ break;
297
+
298
+ case 'mapped':
299
+ $str .= $data['mapping'];
300
+
301
+ break;
302
+
303
+ case 'deviation':
304
+ $info->transitionalDifferent = true;
305
+ $str .= ($transitional ? $data['mapping'] : mb_chr($codePoint, 'utf-8'));
306
+
307
+ break;
308
+ }
309
+ }
310
+
311
+ return $str;
312
+ }
313
+
314
+ /**
315
+ * @see https://www.unicode.org/reports/tr46/#Processing
316
+ *
317
+ * @param string $domain
318
+ * @param array<string, bool> $options
319
+ *
320
+ * @return array<int, string>
321
+ */
322
+ private static function process($domain, array $options, Info $info)
323
+ {
324
+ // If VerifyDnsLength is not set, we are doing ToUnicode otherwise we are doing ToASCII and
325
+ // we need to respect the VerifyDnsLength option.
326
+ $checkForEmptyLabels = !isset($options['VerifyDnsLength']) || $options['VerifyDnsLength'];
327
+
328
+ if ($checkForEmptyLabels && '' === $domain) {
329
+ $info->errors |= self::ERROR_EMPTY_LABEL;
330
+
331
+ return array($domain);
332
+ }
333
+
334
+ // Step 1. Map each code point in the domain name string
335
+ $domain = self::mapCodePoints($domain, $options, $info);
336
+
337
+ // Step 2. Normalize the domain name string to Unicode Normalization Form C.
338
+ if (!Normalizer::isNormalized($domain, Normalizer::FORM_C)) {
339
+ $domain = Normalizer::normalize($domain, Normalizer::FORM_C);
340
+ }
341
+
342
+ // Step 3. Break the string into labels at U+002E (.) FULL STOP.
343
+ $labels = explode('.', $domain);
344
+ $lastLabelIndex = \count($labels) - 1;
345
+
346
+ // Step 4. Convert and validate each label in the domain name string.
347
+ foreach ($labels as $i => $label) {
348
+ $validationOptions = $options;
349
+
350
+ if ('xn--' === substr($label, 0, 4)) {
351
+ try {
352
+ $label = self::punycodeDecode(substr($label, 4));
353
+ } catch (Exception $e) {
354
+ $info->errors |= self::ERROR_PUNYCODE;
355
+
356
+ continue;
357
+ }
358
+
359
+ $validationOptions['Transitional_Processing'] = false;
360
+ $labels[$i] = $label;
361
+ }
362
+
363
+ self::validateLabel($label, $info, $validationOptions, $i > 0 && $i === $lastLabelIndex);
364
+ }
365
+
366
+ if ($info->bidiDomain && !$info->validBidiDomain) {
367
+ $info->errors |= self::ERROR_BIDI;
368
+ }
369
+
370
+ // Any input domain name string that does not record an error has been successfully
371
+ // processed according to this specification. Conversely, if an input domain_name string
372
+ // causes an error, then the processing of the input domain_name string fails. Determining
373
+ // what to do with error input is up to the caller, and not in the scope of this document.
374
+ return $labels;
375
+ }
376
+
377
+ /**
378
+ * @see https://tools.ietf.org/html/rfc5893#section-2
379
+ *
380
+ * @param string $label
381
+ */
382
+ private static function validateBidiLabel($label, Info $info)
383
+ {
384
+ if (1 === preg_match(Regex::RTL_LABEL, $label)) {
385
+ $info->bidiDomain = true;
386
+
387
+ // Step 1. The first character must be a character with Bidi property L, R, or AL.
388
+ // If it has the R or AL property, it is an RTL label
389
+ if (1 !== preg_match(Regex::BIDI_STEP_1_RTL, $label)) {
390
+ $info->validBidiDomain = false;
391
+
392
+ return;
393
+ }
394
+
395
+ // Step 2. In an RTL label, only characters with the Bidi properties R, AL, AN, EN, ES,
396
+ // CS, ET, ON, BN, or NSM are allowed.
397
+ if (1 === preg_match(Regex::BIDI_STEP_2, $label)) {
398
+ $info->validBidiDomain = false;
399
+
400
+ return;
401
+ }
402
+
403
+ // Step 3. In an RTL label, the end of the label must be a character with Bidi property
404
+ // R, AL, EN, or AN, followed by zero or more characters with Bidi property NSM.
405
+ if (1 !== preg_match(Regex::BIDI_STEP_3, $label)) {
406
+ $info->validBidiDomain = false;
407
+
408
+ return;
409
+ }
410
+
411
+ // Step 4. In an RTL label, if an EN is present, no AN may be present, and vice versa.
412
+ if (1 === preg_match(Regex::BIDI_STEP_4_AN, $label) && 1 === preg_match(Regex::BIDI_STEP_4_EN, $label)) {
413
+ $info->validBidiDomain = false;
414
+
415
+ return;
416
+ }
417
+
418
+ return;
419
+ }
420
+
421
+ // We are a LTR label
422
+ // Step 1. The first character must be a character with Bidi property L, R, or AL.
423
+ // If it has the L property, it is an LTR label.
424
+ if (1 !== preg_match(Regex::BIDI_STEP_1_LTR, $label)) {
425
+ $info->validBidiDomain = false;
426
+
427
+ return;
428
+ }
429
+
430
+ // Step 5. In an LTR label, only characters with the Bidi properties L, EN,
431
+ // ES, CS, ET, ON, BN, or NSM are allowed.
432
+ if (1 === preg_match(Regex::BIDI_STEP_5, $label)) {
433
+ $info->validBidiDomain = false;
434
+
435
+ return;
436
+ }
437
+
438
+ // Step 6.In an LTR label, the end of the label must be a character with Bidi property L or
439
+ // EN, followed by zero or more characters with Bidi property NSM.
440
+ if (1 !== preg_match(Regex::BIDI_STEP_6, $label)) {
441
+ $info->validBidiDomain = false;
442
+
443
+ return;
444
+ }
445
+ }
446
+
447
+ /**
448
+ * @param array<int, string> $labels
449
+ */
450
+ private static function validateDomainAndLabelLength(array $labels, Info $info)
451
+ {
452
+ $maxDomainSize = self::MAX_DOMAIN_SIZE;
453
+ $length = \count($labels);
454
+
455
+ // Number of "." delimiters.
456
+ $domainLength = $length - 1;
457
+
458
+ // If the last label is empty and it is not the first label, then it is the root label.
459
+ // Increase the max size by 1, making it 254, to account for the root label's "."
460
+ // delimiter. This also means we don't need to check the last label's length for being too
461
+ // long.
462
+ if ($length > 1 && '' === $labels[$length - 1]) {
463
+ ++$maxDomainSize;
464
+ --$length;
465
+ }
466
+
467
+ for ($i = 0; $i < $length; ++$i) {
468
+ $bytes = \strlen($labels[$i]);
469
+ $domainLength += $bytes;
470
+
471
+ if ($bytes > self::MAX_LABEL_SIZE) {
472
+ $info->errors |= self::ERROR_LABEL_TOO_LONG;
473
+ }
474
+ }
475
+
476
+ if ($domainLength > $maxDomainSize) {
477
+ $info->errors |= self::ERROR_DOMAIN_NAME_TOO_LONG;
478
+ }
479
+ }
480
+
481
+ /**
482
+ * @see https://www.unicode.org/reports/tr46/#Validity_Criteria
483
+ *
484
+ * @param string $label
485
+ * @param array<string, bool> $options
486
+ * @param bool $canBeEmpty
487
+ */
488
+ private static function validateLabel($label, Info $info, array $options, $canBeEmpty)
489
+ {
490
+ if ('' === $label) {
491
+ if (!$canBeEmpty && (!isset($options['VerifyDnsLength']) || $options['VerifyDnsLength'])) {
492
+ $info->errors |= self::ERROR_EMPTY_LABEL;
493
+ }
494
+
495
+ return;
496
+ }
497
+
498
+ // Step 1. The label must be in Unicode Normalization Form C.
499
+ if (!Normalizer::isNormalized($label, Normalizer::FORM_C)) {
500
+ $info->errors |= self::ERROR_INVALID_ACE_LABEL;
501
+ }
502
+
503
+ $codePoints = self::utf8Decode($label);
504
+
505
+ if ($options['CheckHyphens']) {
506
+ // Step 2. If CheckHyphens, the label must not contain a U+002D HYPHEN-MINUS character
507
+ // in both the thrid and fourth positions.
508
+ if (isset($codePoints[2], $codePoints[3]) && 0x002D === $codePoints[2] && 0x002D === $codePoints[3]) {
509
+ $info->errors |= self::ERROR_HYPHEN_3_4;
510
+ }
511
+
512
+ // Step 3. If CheckHyphens, the label must neither begin nor end with a U+002D
513
+ // HYPHEN-MINUS character.
514
+ if ('-' === substr($label, 0, 1)) {
515
+ $info->errors |= self::ERROR_LEADING_HYPHEN;
516
+ }
517
+
518
+ if ('-' === substr($label, -1, 1)) {
519
+ $info->errors |= self::ERROR_TRAILING_HYPHEN;
520
+ }
521
+ }
522
+
523
+ // Step 4. The label must not contain a U+002E (.) FULL STOP.
524
+ if (false !== strpos($label, '.')) {
525
+ $info->errors |= self::ERROR_LABEL_HAS_DOT;
526
+ }
527
+
528
+ // Step 5. The label must not begin with a combining mark, that is: General_Category=Mark.
529
+ if (1 === preg_match(Regex::COMBINING_MARK, $label)) {
530
+ $info->errors |= self::ERROR_LEADING_COMBINING_MARK;
531
+ }
532
+
533
+ // Step 6. Each code point in the label must only have certain status values according to
534
+ // Section 5, IDNA Mapping Table:
535
+ $transitional = $options['Transitional_Processing'];
536
+ $useSTD3ASCIIRules = $options['UseSTD3ASCIIRules'];
537
+
538
+ foreach ($codePoints as $codePoint) {
539
+ $data = self::lookupCodePointStatus($codePoint, $useSTD3ASCIIRules);
540
+ $status = $data['status'];
541
+
542
+ if ('valid' === $status || (!$transitional && 'deviation' === $status)) {
543
+ continue;
544
+ }
545
+
546
+ $info->errors |= self::ERROR_DISALLOWED;
547
+
548
+ break;
549
+ }
550
+
551
+ // Step 7. If CheckJoiners, the label must satisify the ContextJ rules from Appendix A, in
552
+ // The Unicode Code Points and Internationalized Domain Names for Applications (IDNA)
553
+ // [IDNA2008].
554
+ if ($options['CheckJoiners'] && !self::isValidContextJ($codePoints, $label)) {
555
+ $info->errors |= self::ERROR_CONTEXTJ;
556
+ }
557
+
558
+ // Step 8. If CheckBidi, and if the domain name is a Bidi domain name, then the label must
559
+ // satisfy all six of the numbered conditions in [IDNA2008] RFC 5893, Section 2.
560
+ if ($options['CheckBidi'] && (!$info->bidiDomain || $info->validBidiDomain)) {
561
+ self::validateBidiLabel($label, $info);
562
+ }
563
+ }
564
+
565
+ /**
566
+ * @see https://tools.ietf.org/html/rfc3492#section-6.2
567
+ *
568
+ * @param string $input
569
+ *
570
+ * @return string
571
+ */
572
+ private static function punycodeDecode($input)
573
+ {
574
+ $n = self::INITIAL_N;
575
+ $out = 0;
576
+ $i = 0;
577
+ $bias = self::INITIAL_BIAS;
578
+ $lastDelimIndex = strrpos($input, self::DELIMITER);
579
+ $b = false === $lastDelimIndex ? 0 : $lastDelimIndex;
580
+ $inputLength = \strlen($input);
581
+ $output = array();
582
+ $bytes = array_map('ord', str_split($input));
583
+
584
+ for ($j = 0; $j < $b; ++$j) {
585
+ if ($bytes[$j] > 0x7F) {
586
+ throw new Exception('Invalid input');
587
+ }
588
+
589
+ $output[$out++] = $input[$j];
590
+ }
591
+
592
+ if ($b > 0) {
593
+ ++$b;
594
+ }
595
+
596
+ for ($in = $b; $in < $inputLength; ++$out) {
597
+ $oldi = $i;
598
+ $w = 1;
599
+
600
+ for ($k = self::BASE; /* no condition */; $k += self::BASE) {
601
+ if ($in >= $inputLength) {
602
+ throw new Exception('Invalid input');
603
+ }
604
+
605
+ $digit = self::$basicToDigit[$bytes[$in++] & 0xFF];
606
+
607
+ if ($digit < 0) {
608
+ throw new Exception('Invalid input');
609
+ }
610
+
611
+ if ($digit > intdiv(self::MAX_INT - $i, $w)) {
612
+ throw new Exception('Integer overflow');
613
+ }
614
+
615
+ $i += $digit * $w;
616
+
617
+ if ($k <= $bias) {
618
+ $t = self::TMIN;
619
+ } elseif ($k >= $bias + self::TMAX) {
620
+ $t = self::TMAX;
621
+ } else {
622
+ $t = $k - $bias;
623
+ }
624
+
625
+ if ($digit < $t) {
626
+ break;
627
+ }
628
+
629
+ $baseMinusT = self::BASE - $t;
630
+
631
+ if ($w > intdiv(self::MAX_INT, $baseMinusT)) {
632
+ throw new Exception('Integer overflow');
633
+ }
634
+
635
+ $w *= $baseMinusT;
636
+ }
637
+
638
+ $outPlusOne = $out + 1;
639
+ $bias = self::adaptBias($i - $oldi, $outPlusOne, 0 === $oldi);
640
+
641
+ if (intdiv($i, $outPlusOne) > self::MAX_INT - $n) {
642
+ throw new Exception('Integer overflow');
643
+ }
644
+
645
+ $n += intdiv($i, $outPlusOne);
646
+ $i %= $outPlusOne;
647
+ array_splice($output, $i++, 0, array(mb_chr($n, 'utf-8')));
648
+ }
649
+
650
+ return implode('', $output);
651
+ }
652
+
653
+ /**
654
+ * @see https://tools.ietf.org/html/rfc3492#section-6.3
655
+ *
656
+ * @param string $input
657
+ *
658
+ * @return string
659
+ */
660
+ private static function punycodeEncode($input)
661
+ {
662
+ $n = self::INITIAL_N;
663
+ $delta = 0;
664
+ $out = 0;
665
+ $bias = self::INITIAL_BIAS;
666
+ $inputLength = 0;
667
+ $output = '';
668
+ $iter = self::utf8Decode($input);
669
+
670
+ foreach ($iter as $codePoint) {
671
+ ++$inputLength;
672
+
673
+ if ($codePoint < 0x80) {
674
+ $output .= \chr($codePoint);
675
+ ++$out;
676
+ }
677
+ }
678
+
679
+ $h = $out;
680
+ $b = $out;
681
+
682
+ if ($b > 0) {
683
+ $output .= self::DELIMITER;
684
+ ++$out;
685
+ }
686
+
687
+ while ($h < $inputLength) {
688
+ $m = self::MAX_INT;
689
+
690
+ foreach ($iter as $codePoint) {
691
+ if ($codePoint >= $n && $codePoint < $m) {
692
+ $m = $codePoint;
693
+ }
694
+ }
695
+
696
+ if ($m - $n > intdiv(self::MAX_INT - $delta, $h + 1)) {
697
+ throw new Exception('Integer overflow');
698
+ }
699
+
700
+ $delta += ($m - $n) * ($h + 1);
701
+ $n = $m;
702
+
703
+ foreach ($iter as $codePoint) {
704
+ if ($codePoint < $n && 0 === ++$delta) {
705
+ throw new Exception('Integer overflow');
706
+ } elseif ($codePoint === $n) {
707
+ $q = $delta;
708
+
709
+ for ($k = self::BASE; /* no condition */; $k += self::BASE) {
710
+ if ($k <= $bias) {
711
+ $t = self::TMIN;
712
+ } elseif ($k >= $bias + self::TMAX) {
713
+ $t = self::TMAX;
714
+ } else {
715
+ $t = $k - $bias;
716
+ }
717
+
718
+ if ($q < $t) {
719
+ break;
720
+ }
721
+
722
+ $qMinusT = $q - $t;
723
+ $baseMinusT = self::BASE - $t;
724
+ $output .= self::encodeDigit($t + ($qMinusT) % ($baseMinusT), false);
725
+ ++$out;
726
+ $q = intdiv($qMinusT, $baseMinusT);
727
+ }
728
+
729
+ $output .= self::encodeDigit($q, false);
730
+ ++$out;
731
+ $bias = self::adaptBias($delta, $h + 1, $h === $b);
732
+ $delta = 0;
733
+ ++$h;
734
+ }
735
+ }
736
+
737
+ ++$delta;
738
+ ++$n;
739
+ }
740
+
741
+ return $output;
742
+ }
743
+
744
+ /**
745
+ * @see https://tools.ietf.org/html/rfc3492#section-6.1
746
+ *
747
+ * @param int $delta
748
+ * @param int $numPoints
749
+ * @param bool $firstTime
750
+ *
751
+ * @return int
752
+ */
753
+ private static function adaptBias($delta, $numPoints, $firstTime)
754
+ {
755
+ // xxx >> 1 is a faster way of doing intdiv(xxx, 2)
756
+ $delta = $firstTime ? intdiv($delta, self::DAMP) : $delta >> 1;
757
+ $delta += intdiv($delta, $numPoints);
758
+ $k = 0;
759
+
760
+ while ($delta > ((self::BASE - self::TMIN) * self::TMAX) >> 1) {
761
+ $delta = intdiv($delta, self::BASE - self::TMIN);
762
+ $k += self::BASE;
763
+ }
764
+
765
+ return $k + intdiv((self::BASE - self::TMIN + 1) * $delta, $delta + self::SKEW);
766
+ }
767
+
768
+ /**
769
+ * @param int $d
770
+ * @param bool $flag
771
+ *
772
+ * @return string
773
+ */
774
+ private static function encodeDigit($d, $flag)
775
+ {
776
+ return \chr($d + 22 + 75 * ($d < 26 ? 1 : 0) - (($flag ? 1 : 0) << 5));
777
+ }
778
+
779
+ /**
780
+ * Takes a UTF-8 encoded string and converts it into a series of integer code points. Any
781
+ * invalid byte sequences will be replaced by a U+FFFD replacement code point.
782
+ *
783
+ * @see https://encoding.spec.whatwg.org/#utf-8-decoder
784
+ *
785
+ * @param string $input
786
+ *
787
+ * @return array<int, int>
788
+ */
789
+ private static function utf8Decode($input)
790
+ {
791
+ $bytesSeen = 0;
792
+ $bytesNeeded = 0;
793
+ $lowerBoundary = 0x80;
794
+ $upperBoundary = 0xBF;
795
+ $codePoint = 0;
796
+ $codePoints = array();
797
+ $length = \strlen($input);
798
+
799
+ for ($i = 0; $i < $length; ++$i) {
800
+ $byte = \ord($input[$i]);
801
+
802
+ if (0 === $bytesNeeded) {
803
+ if ($byte >= 0x00 && $byte <= 0x7F) {
804
+ $codePoints[] = $byte;
805
+
806
+ continue;
807
+ }
808
+
809
+ if ($byte >= 0xC2 && $byte <= 0xDF) {
810
+ $bytesNeeded = 1;
811
+ $codePoint = $byte & 0x1F;
812
+ } elseif ($byte >= 0xE0 && $byte <= 0xEF) {
813
+ if (0xE0 === $byte) {
814
+ $lowerBoundary = 0xA0;
815
+ } elseif (0xED === $byte) {
816
+ $upperBoundary = 0x9F;
817
+ }
818
+
819
+ $bytesNeeded = 2;
820
+ $codePoint = $byte & 0xF;
821
+ } elseif ($byte >= 0xF0 && $byte <= 0xF4) {
822
+ if (0xF0 === $byte) {
823
+ $lowerBoundary = 0x90;
824
+ } elseif (0xF4 === $byte) {
825
+ $upperBoundary = 0x8F;
826
+ }
827
+
828
+ $bytesNeeded = 3;
829
+ $codePoint = $byte & 0x7;
830
+ } else {
831
+ $codePoints[] = 0xFFFD;
832
+ }
833
+
834
+ continue;
835
+ }
836
+
837
+ if ($byte < $lowerBoundary || $byte > $upperBoundary) {
838
+ $codePoint = 0;
839
+ $bytesNeeded = 0;
840
+ $bytesSeen = 0;
841
+ $lowerBoundary = 0x80;
842
+ $upperBoundary = 0xBF;
843
+ --$i;
844
+ $codePoints[] = 0xFFFD;
845
+
846
+ continue;
847
+ }
848
+
849
+ $lowerBoundary = 0x80;
850
+ $upperBoundary = 0xBF;
851
+ $codePoint = ($codePoint << 6) | ($byte & 0x3F);
852
+
853
+ if (++$bytesSeen !== $bytesNeeded) {
854
+ continue;
855
+ }
856
+
857
+ $codePoints[] = $codePoint;
858
+ $codePoint = 0;
859
+ $bytesNeeded = 0;
860
+ $bytesSeen = 0;
861
+ }
862
+
863
+ // String unexpectedly ended, so append a U+FFFD code point.
864
+ if (0 !== $bytesNeeded) {
865
+ $codePoints[] = 0xFFFD;
866
+ }
867
+
868
+ return $codePoints;
869
+ }
870
+
871
+ /**
872
+ * @param int $codePoint
873
+ * @param bool $useSTD3ASCIIRules
874
+ *
875
+ * @return array{status: string, mapping?: string}
876
+ */
877
+ private static function lookupCodePointStatus($codePoint, $useSTD3ASCIIRules)
878
+ {
879
+ if (!self::$mappingTableLoaded) {
880
+ self::$mappingTableLoaded = true;
881
+ self::$mapped = require __DIR__.'/Resources/unidata/mapped.php';
882
+ self::$ignored = require __DIR__.'/Resources/unidata/ignored.php';
883
+ self::$deviation = require __DIR__.'/Resources/unidata/deviation.php';
884
+ self::$disallowed = require __DIR__.'/Resources/unidata/disallowed.php';
885
+ self::$disallowed_STD3_mapped = require __DIR__.'/Resources/unidata/disallowed_STD3_mapped.php';
886
+ self::$disallowed_STD3_valid = require __DIR__.'/Resources/unidata/disallowed_STD3_valid.php';
887
+ }
888
+
889
+ if (isset(self::$mapped[$codePoint])) {
890
+ return array('status' => 'mapped', 'mapping' => self::$mapped[$codePoint]);
891
+ }
892
+
893
+ if (isset(self::$ignored[$codePoint])) {
894
+ return array('status' => 'ignored');
895
+ }
896
+
897
+ if (isset(self::$deviation[$codePoint])) {
898
+ return array('status' => 'deviation', 'mapping' => self::$deviation[$codePoint]);
899
+ }
900
+
901
+ if (isset(self::$disallowed[$codePoint]) || DisallowedRanges::inRange($codePoint)) {
902
+ return array('status' => 'disallowed');
903
+ }
904
+
905
+ $isDisallowedMapped = isset(self::$disallowed_STD3_mapped[$codePoint]);
906
+
907
+ if ($isDisallowedMapped || isset(self::$disallowed_STD3_valid[$codePoint])) {
908
+ $status = 'disallowed';
909
+
910
+ if (!$useSTD3ASCIIRules) {
911
+ $status = $isDisallowedMapped ? 'mapped' : 'valid';
912
+ }
913
+
914
+ if ($isDisallowedMapped) {
915
+ return array('status' => $status, 'mapping' => self::$disallowed_STD3_mapped[$codePoint]);
916
+ }
917
+
918
+ return array('status' => $status);
919
+ }
920
+
921
+ return array('status' => 'valid');
922
+ }
923
+ }
vendor/symfony/polyfill-intl-idn/Info.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com> and Trevor Rowbotham <trevor.rowbotham@pm.me>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Symfony\Polyfill\Intl\Idn;
13
+
14
+ /**
15
+ * @internal
16
+ */
17
+ class Info
18
+ {
19
+ public $bidiDomain = false;
20
+ public $errors = 0;
21
+ public $validBidiDomain = true;
22
+ public $transitionalDifferent = false;
23
+ }
vendor/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php ADDED
@@ -0,0 +1,375 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Symfony\Polyfill\Intl\Idn\Resources\unidata;
4
+
5
+ /**
6
+ * @internal
7
+ */
8
+ final class DisallowedRanges
9
+ {
10
+ /**
11
+ * @param int $codePoint
12
+ *
13
+ * @return bool
14
+ */
15
+ public static function inRange($codePoint)
16
+ {
17
+ if ($codePoint >= 128 && $codePoint <= 159) {
18
+ return true;
19
+ }
20
+
21
+ if ($codePoint >= 2155 && $codePoint <= 2207) {
22
+ return true;
23
+ }
24
+
25
+ if ($codePoint >= 3676 && $codePoint <= 3712) {
26
+ return true;
27
+ }
28
+
29
+ if ($codePoint >= 3808 && $codePoint <= 3839) {
30
+ return true;
31
+ }
32
+
33
+ if ($codePoint >= 4059 && $codePoint <= 4095) {
34
+ return true;
35
+ }
36
+
37
+ if ($codePoint >= 4256 && $codePoint <= 4293) {
38
+ return true;
39
+ }
40
+
41
+ if ($codePoint >= 6849 && $codePoint <= 6911) {
42
+ return true;
43
+ }
44
+
45
+ if ($codePoint >= 11859 && $codePoint <= 11903) {
46
+ return true;
47
+ }
48
+
49
+ if ($codePoint >= 42955 && $codePoint <= 42996) {
50
+ return true;
51
+ }
52
+
53
+ if ($codePoint >= 55296 && $codePoint <= 57343) {
54
+ return true;
55
+ }
56
+
57
+ if ($codePoint >= 57344 && $codePoint <= 63743) {
58
+ return true;
59
+ }
60
+
61
+ if ($codePoint >= 64218 && $codePoint <= 64255) {
62
+ return true;
63
+ }
64
+
65
+ if ($codePoint >= 64976 && $codePoint <= 65007) {
66
+ return true;
67
+ }
68
+
69
+ if ($codePoint >= 65630 && $codePoint <= 65663) {
70
+ return true;
71
+ }
72
+
73
+ if ($codePoint >= 65953 && $codePoint <= 65999) {
74
+ return true;
75
+ }
76
+
77
+ if ($codePoint >= 66046 && $codePoint <= 66175) {
78
+ return true;
79
+ }
80
+
81
+ if ($codePoint >= 66518 && $codePoint <= 66559) {
82
+ return true;
83
+ }
84
+
85
+ if ($codePoint >= 66928 && $codePoint <= 67071) {
86
+ return true;
87
+ }
88
+
89
+ if ($codePoint >= 67432 && $codePoint <= 67583) {
90
+ return true;
91
+ }
92
+
93
+ if ($codePoint >= 67760 && $codePoint <= 67807) {
94
+ return true;
95
+ }
96
+
97
+ if ($codePoint >= 67904 && $codePoint <= 67967) {
98
+ return true;
99
+ }
100
+
101
+ if ($codePoint >= 68256 && $codePoint <= 68287) {
102
+ return true;
103
+ }
104
+
105
+ if ($codePoint >= 68528 && $codePoint <= 68607) {
106
+ return true;
107
+ }
108
+
109
+ if ($codePoint >= 68681 && $codePoint <= 68735) {
110
+ return true;
111
+ }
112
+
113
+ if ($codePoint >= 68922 && $codePoint <= 69215) {
114
+ return true;
115
+ }
116
+
117
+ if ($codePoint >= 69298 && $codePoint <= 69375) {
118
+ return true;
119
+ }
120
+
121
+ if ($codePoint >= 69466 && $codePoint <= 69551) {
122
+ return true;
123
+ }
124
+
125
+ if ($codePoint >= 70207 && $codePoint <= 70271) {
126
+ return true;
127
+ }
128
+
129
+ if ($codePoint >= 70517 && $codePoint <= 70655) {
130
+ return true;
131
+ }
132
+
133
+ if ($codePoint >= 70874 && $codePoint <= 71039) {
134
+ return true;
135
+ }
136
+
137
+ if ($codePoint >= 71134 && $codePoint <= 71167) {
138
+ return true;
139
+ }
140
+
141
+ if ($codePoint >= 71370 && $codePoint <= 71423) {
142
+ return true;
143
+ }
144
+
145
+ if ($codePoint >= 71488 && $codePoint <= 71679) {
146
+ return true;
147
+ }
148
+
149
+ if ($codePoint >= 71740 && $codePoint <= 71839) {
150
+ return true;
151
+ }
152
+
153
+ if ($codePoint >= 72026 && $codePoint <= 72095) {
154
+ return true;
155
+ }
156
+
157
+ if ($codePoint >= 72441 && $codePoint <= 72703) {
158
+ return true;
159
+ }
160
+
161
+ if ($codePoint >= 72887 && $codePoint <= 72959) {
162
+ return true;
163
+ }
164
+
165
+ if ($codePoint >= 73130 && $codePoint <= 73439) {
166
+ return true;
167
+ }
168
+
169
+ if ($codePoint >= 73465 && $codePoint <= 73647) {
170
+ return true;
171
+ }
172
+
173
+ if ($codePoint >= 74650 && $codePoint <= 74751) {
174
+ return true;
175
+ }
176
+
177
+ if ($codePoint >= 75076 && $codePoint <= 77823) {
178
+ return true;
179
+ }
180
+
181
+ if ($codePoint >= 78905 && $codePoint <= 82943) {
182
+ return true;
183
+ }
184
+
185
+ if ($codePoint >= 83527 && $codePoint <= 92159) {
186
+ return true;
187
+ }
188
+
189
+ if ($codePoint >= 92784 && $codePoint <= 92879) {
190
+ return true;
191
+ }
192
+
193
+ if ($codePoint >= 93072 && $codePoint <= 93759) {
194
+ return true;
195
+ }
196
+
197
+ if ($codePoint >= 93851 && $codePoint <= 93951) {
198
+ return true;
199
+ }
200
+
201
+ if ($codePoint >= 94112 && $codePoint <= 94175) {
202
+ return true;
203
+ }
204
+
205
+ if ($codePoint >= 101590 && $codePoint <= 101631) {
206
+ return true;
207
+ }
208
+
209
+ if ($codePoint >= 101641 && $codePoint <= 110591) {
210
+ return true;
211
+ }
212
+
213
+ if ($codePoint >= 110879 && $codePoint <= 110927) {
214
+ return true;
215
+ }
216
+
217
+ if ($codePoint >= 111356 && $codePoint <= 113663) {
218
+ return true;
219
+ }
220
+
221
+ if ($codePoint >= 113828 && $codePoint <= 118783) {
222
+ return true;
223
+ }
224
+
225
+ if ($codePoint >= 119366 && $codePoint <= 119519) {
226
+ return true;
227
+ }
228
+
229
+ if ($codePoint >= 119673 && $codePoint <= 119807) {
230
+ return true;
231
+ }
232
+
233
+ if ($codePoint >= 121520 && $codePoint <= 122879) {
234
+ return true;
235
+ }
236
+
237
+ if ($codePoint >= 122923 && $codePoint <= 123135) {
238
+ return true;
239
+ }
240
+
241
+ if ($codePoint >= 123216 && $codePoint <= 123583) {
242
+ return true;
243
+ }
244
+
245
+ if ($codePoint >= 123648 && $codePoint <= 124927) {
246
+ return true;
247
+ }
248
+
249
+ if ($codePoint >= 125143 && $codePoint <= 125183) {
250
+ return true;
251
+ }
252
+
253
+ if ($codePoint >= 125280 && $codePoint <= 126064) {
254
+ return true;
255
+ }
256
+
257
+ if ($codePoint >= 126133 && $codePoint <= 126208) {
258
+ return true;
259
+ }
260
+
261
+ if ($codePoint >= 126270 && $codePoint <= 126463) {
262
+ return true;
263
+ }
264
+
265
+ if ($codePoint >= 126652 && $codePoint <= 126703) {
266
+ return true;
267
+ }
268
+
269
+ if ($codePoint >= 126706 && $codePoint <= 126975) {
270
+ return true;
271
+ }
272
+
273
+ if ($codePoint >= 127406 && $codePoint <= 127461) {
274
+ return true;
275
+ }
276
+
277
+ if ($codePoint >= 127590 && $codePoint <= 127743) {
278
+ return true;
279
+ }
280
+
281
+ if ($codePoint >= 129202 && $codePoint <= 129279) {
282
+ return true;
283
+ }
284
+
285
+ if ($codePoint >= 129751 && $codePoint <= 129791) {
286
+ return true;
287
+ }
288
+
289
+ if ($codePoint >= 129995 && $codePoint <= 130031) {
290
+ return true;
291
+ }
292
+
293
+ if ($codePoint >= 130042 && $codePoint <= 131069) {
294
+ return true;
295
+ }
296
+
297
+ if ($codePoint >= 173790 && $codePoint <= 173823) {
298
+ return true;
299
+ }
300
+
301
+ if ($codePoint >= 191457 && $codePoint <= 194559) {
302
+ return true;
303
+ }
304
+
305
+ if ($codePoint >= 195102 && $codePoint <= 196605) {
306
+ return true;
307
+ }
308
+
309
+ if ($codePoint >= 201547 && $codePoint <= 262141) {
310
+ return true;
311
+ }
312
+
313
+ if ($codePoint >= 262144 && $codePoint <= 327677) {
314
+ return true;
315
+ }
316
+
317
+ if ($codePoint >= 327680 && $codePoint <= 393213) {
318
+ return true;
319
+ }
320
+
321
+ if ($codePoint >= 393216 && $codePoint <= 458749) {
322
+ return true;
323
+ }
324
+
325
+ if ($codePoint >= 458752 && $codePoint <= 524285) {
326
+ return true;
327
+ }
328
+
329
+ if ($codePoint >= 524288 && $codePoint <= 589821) {
330
+ return true;
331
+ }
332
+
333
+ if ($codePoint >= 589824 && $codePoint <= 655357) {
334
+ return true;
335
+ }
336
+
337
+ if ($codePoint >= 655360 && $codePoint <= 720893) {
338
+ return true;
339
+ }
340
+
341
+ if ($codePoint >= 720896 && $codePoint <= 786429) {
342
+ return true;
343
+ }
344
+
345
+ if ($codePoint >= 786432 && $codePoint <= 851965) {
346
+ return true;
347
+ }
348
+
349
+ if ($codePoint >= 851968 && $codePoint <= 917501) {
350
+ return true;
351
+ }
352
+
353
+ if ($codePoint >= 917536 && $codePoint <= 917631) {
354
+ return true;
355
+ }
356
+
357
+ if ($codePoint >= 917632 && $codePoint <= 917759) {
358
+ return true;
359
+ }
360
+
361
+ if ($codePoint >= 918000 && $codePoint <= 983037) {
362
+ return true;
363
+ }
364
+
365
+ if ($codePoint >= 983040 && $codePoint <= 1048573) {
366
+ return true;
367
+ }
368
+
369
+ if ($codePoint >= 1048576 && $codePoint <= 1114109) {
370
+ return true;
371
+ }
372
+
373
+ return false;
374
+ }
375
+ }
vendor/symfony/polyfill-intl-idn/Resources/unidata/Regex.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Symfony\Polyfill\Intl\Idn\Resources\unidata;
4
+
5
+ /**
6
+ * @internal
7
+ */
8
+ final class Regex
9
+ {
10
+ const COMBINING_MARK = '/^[\x{0300}-\x{036F}\x{0483}-\x{0487}\x{0488}-\x{0489}\x{0591}-\x{05BD}\x{05BF}\x{05C1}-\x{05C2}\x{05C4}-\x{05C5}\x{05C7}\x{0610}-\x{061A}\x{064B}-\x{065F}\x{0670}\x{06D6}-\x{06DC}\x{06DF}-\x{06E4}\x{06E7}-\x{06E8}\x{06EA}-\x{06ED}\x{0711}\x{0730}-\x{074A}\x{07A6}-\x{07B0}\x{07EB}-\x{07F3}\x{07FD}\x{0816}-\x{0819}\x{081B}-\x{0823}\x{0825}-\x{0827}\x{0829}-\x{082D}\x{0859}-\x{085B}\x{08D3}-\x{08E1}\x{08E3}-\x{0902}\x{0903}\x{093A}\x{093B}\x{093C}\x{093E}-\x{0940}\x{0941}-\x{0948}\x{0949}-\x{094C}\x{094D}\x{094E}-\x{094F}\x{0951}-\x{0957}\x{0962}-\x{0963}\x{0981}\x{0982}-\x{0983}\x{09BC}\x{09BE}-\x{09C0}\x{09C1}-\x{09C4}\x{09C7}-\x{09C8}\x{09CB}-\x{09CC}\x{09CD}\x{09D7}\x{09E2}-\x{09E3}\x{09FE}\x{0A01}-\x{0A02}\x{0A03}\x{0A3C}\x{0A3E}-\x{0A40}\x{0A41}-\x{0A42}\x{0A47}-\x{0A48}\x{0A4B}-\x{0A4D}\x{0A51}\x{0A70}-\x{0A71}\x{0A75}\x{0A81}-\x{0A82}\x{0A83}\x{0ABC}\x{0ABE}-\x{0AC0}\x{0AC1}-\x{0AC5}\x{0AC7}-\x{0AC8}\x{0AC9}\x{0ACB}-\x{0ACC}\x{0ACD}\x{0AE2}-\x{0AE3}\x{0AFA}-\x{0AFF}\x{0B01}\x{0B02}-\x{0B03}\x{0B3C}\x{0B3E}\x{0B3F}\x{0B40}\x{0B41}-\x{0B44}\x{0B47}-\x{0B48}\x{0B4B}-\x{0B4C}\x{0B4D}\x{0B55}-\x{0B56}\x{0B57}\x{0B62}-\x{0B63}\x{0B82}\x{0BBE}-\x{0BBF}\x{0BC0}\x{0BC1}-\x{0BC2}\x{0BC6}-\x{0BC8}\x{0BCA}-\x{0BCC}\x{0BCD}\x{0BD7}\x{0C00}\x{0C01}-\x{0C03}\x{0C04}\x{0C3E}-\x{0C40}\x{0C41}-\x{0C44}\x{0C46}-\x{0C48}\x{0C4A}-\x{0C4D}\x{0C55}-\x{0C56}\x{0C62}-\x{0C63}\x{0C81}\x{0C82}-\x{0C83}\x{0CBC}\x{0CBE}\x{0CBF}\x{0CC0}-\x{0CC4}\x{0CC6}\x{0CC7}-\x{0CC8}\x{0CCA}-\x{0CCB}\x{0CCC}-\x{0CCD}\x{0CD5}-\x{0CD6}\x{0CE2}-\x{0CE3}\x{0D00}-\x{0D01}\x{0D02}-\x{0D03}\x{0D3B}-\x{0D3C}\x{0D3E}-\x{0D40}\x{0D41}-\x{0D44}\x{0D46}-\x{0D48}\x{0D4A}-\x{0D4C}\x{0D4D}\x{0D57}\x{0D62}-\x{0D63}\x{0D81}\x{0D82}-\x{0D83}\x{0DCA}\x{0DCF}-\x{0DD1}\x{0DD2}-\x{0DD4}\x{0DD6}\x{0DD8}-\x{0DDF}\x{0DF2}-\x{0DF3}\x{0E31}\x{0E34}-\x{0E3A}\x{0E47}-\x{0E4E}\x{0EB1}\x{0EB4}-\x{0EBC}\x{0EC8}-\x{0ECD}\x{0F18}-\x{0F19}\x{0F35}\x{0F37}\x{0F39}\x{0F3E}-\x{0F3F}\x{0F71}-\x{0F7E}\x{0F7F}\x{0F80}-\x{0F84}\x{0F86}-\x{0F87}\x{0F8D}-\x{0F97}\x{0F99}-\x{0FBC}\x{0FC6}\x{102B}-\x{102C}\x{102D}-\x{1030}\x{1031}\x{1032}-\x{1037}\x{1038}\x{1039}-\x{103A}\x{103B}-\x{103C}\x{103D}-\x{103E}\x{1056}-\x{1057}\x{1058}-\x{1059}\x{105E}-\x{1060}\x{1062}-\x{1064}\x{1067}-\x{106D}\x{1071}-\x{1074}\x{1082}\x{1083}-\x{1084}\x{1085}-\x{1086}\x{1087}-\x{108C}\x{108D}\x{108F}\x{109A}-\x{109C}\x{109D}\x{135D}-\x{135F}\x{1712}-\x{1714}\x{1732}-\x{1734}\x{1752}-\x{1753}\x{1772}-\x{1773}\x{17B4}-\x{17B5}\x{17B6}\x{17B7}-\x{17BD}\x{17BE}-\x{17C5}\x{17C6}\x{17C7}-\x{17C8}\x{17C9}-\x{17D3}\x{17DD}\x{180B}-\x{180D}\x{1885}-\x{1886}\x{18A9}\x{1920}-\x{1922}\x{1923}-\x{1926}\x{1927}-\x{1928}\x{1929}-\x{192B}\x{1930}-\x{1931}\x{1932}\x{1933}-\x{1938}\x{1939}-\x{193B}\x{1A17}-\x{1A18}\x{1A19}-\x{1A1A}\x{1A1B}\x{1A55}\x{1A56}\x{1A57}\x{1A58}-\x{1A5E}\x{1A60}\x{1A61}\x{1A62}\x{1A63}-\x{1A64}\x{1A65}-\x{1A6C}\x{1A6D}-\x{1A72}\x{1A73}-\x{1A7C}\x{1A7F}\x{1AB0}-\x{1ABD}\x{1ABE}\x{1ABF}-\x{1AC0}\x{1B00}-\x{1B03}\x{1B04}\x{1B34}\x{1B35}\x{1B36}-\x{1B3A}\x{1B3B}\x{1B3C}\x{1B3D}-\x{1B41}\x{1B42}\x{1B43}-\x{1B44}\x{1B6B}-\x{1B73}\x{1B80}-\x{1B81}\x{1B82}\x{1BA1}\x{1BA2}-\x{1BA5}\x{1BA6}-\x{1BA7}\x{1BA8}-\x{1BA9}\x{1BAA}\x{1BAB}-\x{1BAD}\x{1BE6}\x{1BE7}\x{1BE8}-\x{1BE9}\x{1BEA}-\x{1BEC}\x{1BED}\x{1BEE}\x{1BEF}-\x{1BF1}\x{1BF2}-\x{1BF3}\x{1C24}-\x{1C2B}\x{1C2C}-\x{1C33}\x{1C34}-\x{1C35}\x{1C36}-\x{1C37}\x{1CD0}-\x{1CD2}\x{1CD4}-\x{1CE0}\x{1CE1}\x{1CE2}-\x{1CE8}\x{1CED}\x{1CF4}\x{1CF7}\x{1CF8}-\x{1CF9}\x{1DC0}-\x{1DF9}\x{1DFB}-\x{1DFF}\x{20D0}-\x{20DC}\x{20DD}-\x{20E0}\x{20E1}\x{20E2}-\x{20E4}\x{20E5}-\x{20F0}\x{2CEF}-\x{2CF1}\x{2D7F}\x{2DE0}-\x{2DFF}\x{302A}-\x{302D}\x{302E}-\x{302F}\x{3099}-\x{309A}\x{A66F}\x{A670}-\x{A672}\x{A674}-\x{A67D}\x{A69E}-\x{A69F}\x{A6F0}-\x{A6F1}\x{A802}\x{A806}\x{A80B}\x{A823}-\x{A824}\x{A825}-\x{A826}\x{A827}\x{A82C}\x{A880}-\x{A881}\x{A8B4}-\x{A8C3}\x{A8C4}-\x{A8C5}\x{A8E0}-\x{A8F1}\x{A8FF}\x{A926}-\x{A92D}\x{A947}-\x{A951}\x{A952}-\x{A953}\x{A980}-\x{A982}\x{A983}\x{A9B3}\x{A9B4}-\x{A9B5}\x{A9B6}-\x{A9B9}\x{A9BA}-\x{A9BB}\x{A9BC}-\x{A9BD}\x{A9BE}-\x{A9C0}\x{A9E5}\x{AA29}-\x{AA2E}\x{AA2F}-\x{AA30}\x{AA31}-\x{AA32}\x{AA33}-\x{AA34}\x{AA35}-\x{AA36}\x{AA43}\x{AA4C}\x{AA4D}\x{AA7B}\x{AA7C}\x{AA7D}\x{AAB0}\x{AAB2}-\x{AAB4}\x{AAB7}-\x{AAB8}\x{AABE}-\x{AABF}\x{AAC1}\x{AAEB}\x{AAEC}-\x{AAED}\x{AAEE}-\x{AAEF}\x{AAF5}\x{AAF6}\x{ABE3}-\x{ABE4}\x{ABE5}\x{ABE6}-\x{ABE7}\x{ABE8}\x{ABE9}-\x{ABEA}\x{ABEC}\x{ABED}\x{FB1E}\x{FE00}-\x{FE0F}\x{FE20}-\x{FE2F}\x{101FD}\x{102E0}\x{10376}-\x{1037A}\x{10A01}-\x{10A03}\x{10A05}-\x{10A06}\x{10A0C}-\x{10A0F}\x{10A38}-\x{10A3A}\x{10A3F}\x{10AE5}-\x{10AE6}\x{10D24}-\x{10D27}\x{10EAB}-\x{10EAC}\x{10F46}-\x{10F50}\x{11000}\x{11001}\x{11002}\x{11038}-\x{11046}\x{1107F}-\x{11081}\x{11082}\x{110B0}-\x{110B2}\x{110B3}-\x{110B6}\x{110B7}-\x{110B8}\x{110B9}-\x{110BA}\x{11100}-\x{11102}\x{11127}-\x{1112B}\x{1112C}\x{1112D}-\x{11134}\x{11145}-\x{11146}\x{11173}\x{11180}-\x{11181}\x{11182}\x{111B3}-\x{111B5}\x{111B6}-\x{111BE}\x{111BF}-\x{111C0}\x{111C9}-\x{111CC}\x{111CE}\x{111CF}\x{1122C}-\x{1122E}\x{1122F}-\x{11231}\x{11232}-\x{11233}\x{11234}\x{11235}\x{11236}-\x{11237}\x{1123E}\x{112DF}\x{112E0}-\x{112E2}\x{112E3}-\x{112EA}\x{11300}-\x{11301}\x{11302}-\x{11303}\x{1133B}-\x{1133C}\x{1133E}-\x{1133F}\x{11340}\x{11341}-\x{11344}\x{11347}-\x{11348}\x{1134B}-\x{1134D}\x{11357}\x{11362}-\x{11363}\x{11366}-\x{1136C}\x{11370}-\x{11374}\x{11435}-\x{11437}\x{11438}-\x{1143F}\x{11440}-\x{11441}\x{11442}-\x{11444}\x{11445}\x{11446}\x{1145E}\x{114B0}-\x{114B2}\x{114B3}-\x{114B8}\x{114B9}\x{114BA}\x{114BB}-\x{114BE}\x{114BF}-\x{114C0}\x{114C1}\x{114C2}-\x{114C3}\x{115AF}-\x{115B1}\x{115B2}-\x{115B5}\x{115B8}-\x{115BB}\x{115BC}-\x{115BD}\x{115BE}\x{115BF}-\x{115C0}\x{115DC}-\x{115DD}\x{11630}-\x{11632}\x{11633}-\x{1163A}\x{1163B}-\x{1163C}\x{1163D}\x{1163E}\x{1163F}-\x{11640}\x{116AB}\x{116AC}\x{116AD}\x{116AE}-\x{116AF}\x{116B0}-\x{116B5}\x{116B6}\x{116B7}\x{1171D}-\x{1171F}\x{11720}-\x{11721}\x{11722}-\x{11725}\x{11726}\x{11727}-\x{1172B}\x{1182C}-\x{1182E}\x{1182F}-\x{11837}\x{11838}\x{11839}-\x{1183A}\x{11930}-\x{11935}\x{11937}-\x{11938}\x{1193B}-\x{1193C}\x{1193D}\x{1193E}\x{11940}\x{11942}\x{11943}\x{119D1}-\x{119D3}\x{119D4}-\x{119D7}\x{119DA}-\x{119DB}\x{119DC}-\x{119DF}\x{119E0}\x{119E4}\x{11A01}-\x{11A0A}\x{11A33}-\x{11A38}\x{11A39}\x{11A3B}-\x{11A3E}\x{11A47}\x{11A51}-\x{11A56}\x{11A57}-\x{11A58}\x{11A59}-\x{11A5B}\x{11A8A}-\x{11A96}\x{11A97}\x{11A98}-\x{11A99}\x{11C2F}\x{11C30}-\x{11C36}\x{11C38}-\x{11C3D}\x{11C3E}\x{11C3F}\x{11C92}-\x{11CA7}\x{11CA9}\x{11CAA}-\x{11CB0}\x{11CB1}\x{11CB2}-\x{11CB3}\x{11CB4}\x{11CB5}-\x{11CB6}\x{11D31}-\x{11D36}\x{11D3A}\x{11D3C}-\x{11D3D}\x{11D3F}-\x{11D45}\x{11D47}\x{11D8A}-\x{11D8E}\x{11D90}-\x{11D91}\x{11D93}-\x{11D94}\x{11D95}\x{11D96}\x{11D97}\x{11EF3}-\x{11EF4}\x{11EF5}-\x{11EF6}\x{16AF0}-\x{16AF4}\x{16B30}-\x{16B36}\x{16F4F}\x{16F51}-\x{16F87}\x{16F8F}-\x{16F92}\x{16FE4}\x{16FF0}-\x{16FF1}\x{1BC9D}-\x{1BC9E}\x{1D165}-\x{1D166}\x{1D167}-\x{1D169}\x{1D16D}-\x{1D172}\x{1D17B}-\x{1D182}\x{1D185}-\x{1D18B}\x{1D1AA}-\x{1D1AD}\x{1D242}-\x{1D244}\x{1DA00}-\x{1DA36}\x{1DA3B}-\x{1DA6C}\x{1DA75}\x{1DA84}\x{1DA9B}-\x{1DA9F}\x{1DAA1}-\x{1DAAF}\x{1E000}-\x{1E006}\x{1E008}-\x{1E018}\x{1E01B}-\x{1E021}\x{1E023}-\x{1E024}\x{1E026}-\x{1E02A}\x{1E130}-\x{1E136}\x{1E2EC}-\x{1E2EF}\x{1E8D0}-\x{1E8D6}\x{1E944}-\x{1E94A}\x{E0100}-\x{E01EF}]/u';
11
+
12
+ const RTL_LABEL = '/[\x{0590}\x{05BE}\x{05C0}\x{05C3}\x{05C6}\x{05C8}-\x{05CF}\x{05D0}-\x{05EA}\x{05EB}-\x{05EE}\x{05EF}-\x{05F2}\x{05F3}-\x{05F4}\x{05F5}-\x{05FF}\x{0600}-\x{0605}\x{0608}\x{060B}\x{060D}\x{061B}\x{061C}\x{061D}\x{061E}-\x{061F}\x{0620}-\x{063F}\x{0640}\x{0641}-\x{064A}\x{0660}-\x{0669}\x{066B}-\x{066C}\x{066D}\x{066E}-\x{066F}\x{0671}-\x{06D3}\x{06D4}\x{06D5}\x{06DD}\x{06E5}-\x{06E6}\x{06EE}-\x{06EF}\x{06FA}-\x{06FC}\x{06FD}-\x{06FE}\x{06FF}\x{0700}-\x{070D}\x{070E}\x{070F}\x{0710}\x{0712}-\x{072F}\x{074B}-\x{074C}\x{074D}-\x{07A5}\x{07B1}\x{07B2}-\x{07BF}\x{07C0}-\x{07C9}\x{07CA}-\x{07EA}\x{07F4}-\x{07F5}\x{07FA}\x{07FB}-\x{07FC}\x{07FE}-\x{07FF}\x{0800}-\x{0815}\x{081A}\x{0824}\x{0828}\x{082E}-\x{082F}\x{0830}-\x{083E}\x{083F}\x{0840}-\x{0858}\x{085C}-\x{085D}\x{085E}\x{085F}\x{0860}-\x{086A}\x{086B}-\x{086F}\x{0870}-\x{089F}\x{08A0}-\x{08B4}\x{08B5}\x{08B6}-\x{08C7}\x{08C8}-\x{08D2}\x{08E2}\x{200F}\x{FB1D}\x{FB1F}-\x{FB28}\x{FB2A}-\x{FB36}\x{FB37}\x{FB38}-\x{FB3C}\x{FB3D}\x{FB3E}\x{FB3F}\x{FB40}-\x{FB41}\x{FB42}\x{FB43}-\x{FB44}\x{FB45}\x{FB46}-\x{FB4F}\x{FB50}-\x{FBB1}\x{FBB2}-\x{FBC1}\x{FBC2}-\x{FBD2}\x{FBD3}-\x{FD3D}\x{FD40}-\x{FD4F}\x{FD50}-\x{FD8F}\x{FD90}-\x{FD91}\x{FD92}-\x{FDC7}\x{FDC8}-\x{FDCF}\x{FDF0}-\x{FDFB}\x{FDFC}\x{FDFE}-\x{FDFF}\x{FE70}-\x{FE74}\x{FE75}\x{FE76}-\x{FEFC}\x{FEFD}-\x{FEFE}\x{10800}-\x{10805}\x{10806}-\x{10807}\x{10808}\x{10809}\x{1080A}-\x{10835}\x{10836}\x{10837}-\x{10838}\x{10839}-\x{1083B}\x{1083C}\x{1083D}-\x{1083E}\x{1083F}-\x{10855}\x{10856}\x{10857}\x{10858}-\x{1085F}\x{10860}-\x{10876}\x{10877}-\x{10878}\x{10879}-\x{1087F}\x{10880}-\x{1089E}\x{1089F}-\x{108A6}\x{108A7}-\x{108AF}\x{108B0}-\x{108DF}\x{108E0}-\x{108F2}\x{108F3}\x{108F4}-\x{108F5}\x{108F6}-\x{108FA}\x{108FB}-\x{108FF}\x{10900}-\x{10915}\x{10916}-\x{1091B}\x{1091C}-\x{1091E}\x{10920}-\x{10939}\x{1093A}-\x{1093E}\x{1093F}\x{10940}-\x{1097F}\x{10980}-\x{109B7}\x{109B8}-\x{109BB}\x{109BC}-\x{109BD}\x{109BE}-\x{109BF}\x{109C0}-\x{109CF}\x{109D0}-\x{109D1}\x{109D2}-\x{109FF}\x{10A00}\x{10A04}\x{10A07}-\x{10A0B}\x{10A10}-\x{10A13}\x{10A14}\x{10A15}-\x{10A17}\x{10A18}\x{10A19}-\x{10A35}\x{10A36}-\x{10A37}\x{10A3B}-\x{10A3E}\x{10A40}-\x{10A48}\x{10A49}-\x{10A4F}\x{10A50}-\x{10A58}\x{10A59}-\x{10A5F}\x{10A60}-\x{10A7C}\x{10A7D}-\x{10A7E}\x{10A7F}\x{10A80}-\x{10A9C}\x{10A9D}-\x{10A9F}\x{10AA0}-\x{10ABF}\x{10AC0}-\x{10AC7}\x{10AC8}\x{10AC9}-\x{10AE4}\x{10AE7}-\x{10AEA}\x{10AEB}-\x{10AEF}\x{10AF0}-\x{10AF6}\x{10AF7}-\x{10AFF}\x{10B00}-\x{10B35}\x{10B36}-\x{10B38}\x{10B40}-\x{10B55}\x{10B56}-\x{10B57}\x{10B58}-\x{10B5F}\x{10B60}-\x{10B72}\x{10B73}-\x{10B77}\x{10B78}-\x{10B7F}\x{10B80}-\x{10B91}\x{10B92}-\x{10B98}\x{10B99}-\x{10B9C}\x{10B9D}-\x{10BA8}\x{10BA9}-\x{10BAF}\x{10BB0}-\x{10BFF}\x{10C00}-\x{10C48}\x{10C49}-\x{10C7F}\x{10C80}-\x{10CB2}\x{10CB3}-\x{10CBF}\x{10CC0}-\x{10CF2}\x{10CF3}-\x{10CF9}\x{10CFA}-\x{10CFF}\x{10D00}-\x{10D23}\x{10D28}-\x{10D2F}\x{10D30}-\x{10D39}\x{10D3A}-\x{10D3F}\x{10D40}-\x{10E5F}\x{10E60}-\x{10E7E}\x{10E7F}\x{10E80}-\x{10EA9}\x{10EAA}\x{10EAD}\x{10EAE}-\x{10EAF}\x{10EB0}-\x{10EB1}\x{10EB2}-\x{10EFF}\x{10F00}-\x{10F1C}\x{10F1D}-\x{10F26}\x{10F27}\x{10F28}-\x{10F2F}\x{10F30}-\x{10F45}\x{10F51}-\x{10F54}\x{10F55}-\x{10F59}\x{10F5A}-\x{10F6F}\x{10F70}-\x{10FAF}\x{10FB0}-\x{10FC4}\x{10FC5}-\x{10FCB}\x{10FCC}-\x{10FDF}\x{10FE0}-\x{10FF6}\x{10FF7}-\x{10FFF}\x{1E800}-\x{1E8C4}\x{1E8C5}-\x{1E8C6}\x{1E8C7}-\x{1E8CF}\x{1E8D7}-\x{1E8FF}\x{1E900}-\x{1E943}\x{1E94B}\x{1E94C}-\x{1E94F}\x{1E950}-\x{1E959}\x{1E95A}-\x{1E95D}\x{1E95E}-\x{1E95F}\x{1E960}-\x{1EC6F}\x{1EC70}\x{1EC71}-\x{1ECAB}\x{1ECAC}\x{1ECAD}-\x{1ECAF}\x{1ECB0}\x{1ECB1}-\x{1ECB4}\x{1ECB5}-\x{1ECBF}\x{1ECC0}-\x{1ECFF}\x{1ED00}\x{1ED01}-\x{1ED2D}\x{1ED2E}\x{1ED2F}-\x{1ED3D}\x{1ED3E}-\x{1ED4F}\x{1ED50}-\x{1EDFF}\x{1EE00}-\x{1EE03}\x{1EE04}\x{1EE05}-\x{1EE1F}\x{1EE20}\x{1EE21}-\x{1EE22}\x{1EE23}\x{1EE24}\x{1EE25}-\x{1EE26}\x{1EE27}\x{1EE28}\x{1EE29}-\x{1EE32}\x{1EE33}\x{1EE34}-\x{1EE37}\x{1EE38}\x{1EE39}\x{1EE3A}\x{1EE3B}\x{1EE3C}-\x{1EE41}\x{1EE42}\x{1EE43}-\x{1EE46}\x{1EE47}\x{1EE48}\x{1EE49}\x{1EE4A}\x{1EE4B}\x{1EE4C}\x{1EE4D}-\x{1EE4F}\x{1EE50}\x{1EE51}-\x{1EE52}\x{1EE53}\x{1EE54}\x{1EE55}-\x{1EE56}\x{1EE57}\x{1EE58}\x{1EE59}\x{1EE5A}\x{1EE5B}\x{1EE5C}\x{1EE5D}\x{1EE5E}\x{1EE5F}\x{1EE60}\x{1EE61}-\x{1EE62}\x{1EE63}\x{1EE64}\x{1EE65}-\x{1EE66}\x{1EE67}-\x{1EE6A}\x{1EE6B}\x{1EE6C}-\x{1EE72}\x{1EE73}\x{1EE74}-\x{1EE77}\x{1EE78}\x{1EE79}-\x{1EE7C}\x{1EE7D}\x{1EE7E}\x{1EE7F}\x{1EE80}-\x{1EE89}\x{1EE8A}\x{1EE8B}-\x{1EE9B}\x{1EE9C}-\x{1EEA0}\x{1EEA1}-\x{1EEA3}\x{1EEA4}\x{1EEA5}-\x{1EEA9}\x{1EEAA}\x{1EEAB}-\x{1EEBB}\x{1EEBC}-\x{1EEEF}\x{1EEF2}-\x{1EEFF}\x{1EF00}-\x{1EFFF}]/u';
13
+
14
+ const BIDI_STEP_1_LTR = '/^[^\x{0000}-\x{0008}\x{0009}\x{000A}\x{000B}\x{000C}\x{000D}\x{000E}-\x{001B}\x{001C}-\x{001E}\x{001F}\x{0020}\x{0021}-\x{0022}\x{0023}\x{0024}\x{0025}\x{0026}-\x{0027}\x{0028}\x{0029}\x{002A}\x{002B}\x{002C}\x{002D}\x{002E}-\x{002F}\x{0030}-\x{0039}\x{003A}\x{003B}\x{003C}-\x{003E}\x{003F}-\x{0040}\x{005B}\x{005C}\x{005D}\x{005E}\x{005F}\x{0060}\x{007B}\x{007C}\x{007D}\x{007E}\x{007F}-\x{0084}\x{0085}\x{0086}-\x{009F}\x{00A0}\x{00A1}\x{00A2}-\x{00A5}\x{00A6}\x{00A7}\x{00A8}\x{00A9}\x{00AB}\x{00AC}\x{00AD}\x{00AE}\x{00AF}\x{00B0}\x{00B1}\x{00B2}-\x{00B3}\x{00B4}\x{00B6}-\x{00B7}\x{00B8}\x{00B9}\x{00BB}\x{00BC}-\x{00BE}\x{00BF}\x{00D7}\x{00F7}\x{02B9}-\x{02BA}\x{02C2}-\x{02C5}\x{02C6}-\x{02CF}\x{02D2}-\x{02DF}\x{02E5}-\x{02EB}\x{02EC}\x{02ED}\x{02EF}-\x{02FF}\x{0300}-\x{036F}\x{0374}\x{0375}\x{037E}\x{0384}-\x{0385}\x{0387}\x{03F6}\x{0483}-\x{0487}\x{0488}-\x{0489}\x{058A}\x{058D}-\x{058E}\x{058F}\x{0590}\x{0591}-\x{05BD}\x{05BE}\x{05BF}\x{05C0}\x{05C1}-\x{05C2}\x{05C3}\x{05C4}-\x{05C5}\x{05C6}\x{05C7}\x{05C8}-\x{05CF}\x{05D0}-\x{05EA}\x{05EB}-\x{05EE}\x{05EF}-\x{05F2}\x{05F3}-\x{05F4}\x{05F5}-\x{05FF}\x{0600}-\x{0605}\x{0606}-\x{0607}\x{0608}\x{0609}-\x{060A}\x{060B}\x{060C}\x{060D}\x{060E}-\x{060F}\x{0610}-\x{061A}\x{061B}\x{061C}\x{061D}\x{061E}-\x{061F}\x{0620}-\x{063F}\x{0640}\x{0641}-\x{064A}\x{064B}-\x{065F}\x{0660}-\x{0669}\x{066A}\x{066B}-\x{066C}\x{066D}\x{066E}-\x{066F}\x{0670}\x{0671}-\x{06D3}\x{06D4}\x{06D5}\x{06D6}-\x{06DC}\x{06DD}\x{06DE}\x{06DF}-\x{06E4}\x{06E5}-\x{06E6}\x{06E7}-\x{06E8}\x{06E9}\x{06EA}-\x{06ED}\x{06EE}-\x{06EF}\x{06F0}-\x{06F9}\x{06FA}-\x{06FC}\x{06FD}-\x{06FE}\x{06FF}\x{0700}-\x{070D}\x{070E}\x{070F}\x{0710}\x{0711}\x{0712}-\x{072F}\x{0730}-\x{074A}\x{074B}-\x{074C}\x{074D}-\x{07A5}\x{07A6}-\x{07B0}\x{07B1}\x{07B2}-\x{07BF}\x{07C0}-\x{07C9}\x{07CA}-\x{07EA}\x{07EB}-\x{07F3}\x{07F4}-\x{07F5}\x{07F6}\x{07F7}-\x{07F9}\x{07FA}\x{07FB}-\x{07FC}\x{07FD}\x{07FE}-\x{07FF}\x{0800}-\x{0815}\x{0816}-\x{0819}\x{081A}\x{081B}-\x{0823}\x{0824}\x{0825}-\x{0827}\x{0828}\x{0829}-\x{082D}\x{082E}-\x{082F}\x{0830}-\x{083E}\x{083F}\x{0840}-\x{0858}\x{0859}-\x{085B}\x{085C}-\x{085D}\x{085E}\x{085F}\x{0860}-\x{086A}\x{086B}-\x{086F}\x{0870}-\x{089F}\x{08A0}-\x{08B4}\x{08B5}\x{08B6}-\x{08C7}\x{08C8}-\x{08D2}\x{08D3}-\x{08E1}\x{08E2}\x{08E3}-\x{0902}\x{093A}\x{093C}\x{0941}-\x{0948}\x{094D}\x{0951}-\x{0957}\x{0962}-\x{0963}\x{0981}\x{09BC}\x{09C1}-\x{09C4}\x{09CD}\x{09E2}-\x{09E3}\x{09F2}-\x{09F3}\x{09FB}\x{09FE}\x{0A01}-\x{0A02}\x{0A3C}\x{0A41}-\x{0A42}\x{0A47}-\x{0A48}\x{0A4B}-\x{0A4D}\x{0A51}\x{0A70}-\x{0A71}\x{0A75}\x{0A81}-\x{0A82}\x{0ABC}\x{0AC1}-\x{0AC5}\x{0AC7}-\x{0AC8}\x{0ACD}\x{0AE2}-\x{0AE3}\x{0AF1}\x{0AFA}-\x{0AFF}\x{0B01}\x{0B3C}\x{0B3F}\x{0B41}-\x{0B44}\x{0B4D}\x{0B55}-\x{0B56}\x{0B62}-\x{0B63}\x{0B82}\x{0BC0}\x{0BCD}\x{0BF3}-\x{0BF8}\x{0BF9}\x{0BFA}\x{0C00}\x{0C04}\x{0C3E}-\x{0C40}\x{0C46}-\x{0C48}\x{0C4A}-\x{0C4D}\x{0C55}-\x{0C56}\x{0C62}-\x{0C63}\x{0C78}-\x{0C7E}\x{0C81}\x{0CBC}\x{0CCC}-\x{0CCD}\x{0CE2}-\x{0CE3}\x{0D00}-\x{0D01}\x{0D3B}-\x{0D3C}\x{0D41}-\x{0D44}\x{0D4D}\x{0D62}-\x{0D63}\x{0D81}\x{0DCA}\x{0DD2}-\x{0DD4}\x{0DD6}\x{0E31}\x{0E34}-\x{0E3A}\x{0E3F}\x{0E47}-\x{0E4E}\x{0EB1}\x{0EB4}-\x{0EBC}\x{0EC8}-\x{0ECD}\x{0F18}-\x{0F19}\x{0F35}\x{0F37}\x{0F39}\x{0F3A}\x{0F3B}\x{0F3C}\x{0F3D}\x{0F71}-\x{0F7E}\x{0F80}-\x{0F84}\x{0F86}-\x{0F87}\x{0F8D}-\x{0F97}\x{0F99}-\x{0FBC}\x{0FC6}\x{102D}-\x{1030}\x{1032}-\x{1037}\x{1039}-\x{103A}\x{103D}-\x{103E}\x{1058}-\x{1059}\x{105E}-\x{1060}\x{1071}-\x{1074}\x{1082}\x{1085}-\x{1086}\x{108D}\x{109D}\x{135D}-\x{135F}\x{1390}-\x{1399}\x{1400}\x{1680}\x{169B}\x{169C}\x{1712}-\x{1714}\x{1732}-\x{1734}\x{1752}-\x{1753}\x{1772}-\x{1773}\x{17B4}-\x{17B5}\x{17B7}-\x{17BD}\x{17C6}\x{17C9}-\x{17D3}\x{17DB}\x{17DD}\x{17F0}-\x{17F9}\x{1800}-\x{1805}\x{1806}\x{1807}-\x{180A}\x{180B}-\x{180D}\x{180E}\x{1885}-\x{1886}\x{18A9}\x{1920}-\x{1922}\x{1927}-\x{1928}\x{1932}\x{1939}-\x{193B}\x{1940}\x{1944}-\x{1945}\x{19DE}-\x{19FF}\x{1A17}-\x{1A18}\x{1A1B}\x{1A56}\x{1A58}-\x{1A5E}\x{1A60}\x{1A62}\x{1A65}-\x{1A6C}\x{1A73}-\x{1A7C}\x{1A7F}\x{1AB0}-\x{1ABD}\x{1ABE}\x{1ABF}-\x{1AC0}\x{1B00}-\x{1B03}\x{1B34}\x{1B36}-\x{1B3A}\x{1B3C}\x{1B42}\x{1B6B}-\x{1B73}\x{1B80}-\x{1B81}\x{1BA2}-\x{1BA5}\x{1BA8}-\x{1BA9}\x{1BAB}-\x{1BAD}\x{1BE6}\x{1BE8}-\x{1BE9}\x{1BED}\x{1BEF}-\x{1BF1}\x{1C2C}-\x{1C33}\x{1C36}-\x{1C37}\x{1CD0}-\x{1CD2}\x{1CD4}-\x{1CE0}\x{1CE2}-\x{1CE8}\x{1CED}\x{1CF4}\x{1CF8}-\x{1CF9}\x{1DC0}-\x{1DF9}\x{1DFB}-\x{1DFF}\x{1FBD}\x{1FBF}-\x{1FC1}\x{1FCD}-\x{1FCF}\x{1FDD}-\x{1FDF}\x{1FED}-\x{1FEF}\x{1FFD}-\x{1FFE}\x{2000}-\x{200A}\x{200B}-\x{200D}\x{200F}\x{2010}-\x{2015}\x{2016}-\x{2017}\x{2018}\x{2019}\x{201A}\x{201B}-\x{201C}\x{201D}\x{201E}\x{201F}\x{2020}-\x{2027}\x{2028}\x{2029}\x{202A}\x{202B}\x{202C}\x{202D}\x{202E}\x{202F}\x{2030}-\x{2034}\x{2035}-\x{2038}\x{2039}\x{203A}\x{203B}-\x{203E}\x{203F}-\x{2040}\x{2041}-\x{2043}\x{2044}\x{2045}\x{2046}\x{2047}-\x{2051}\x{2052}\x{2053}\x{2054}\x{2055}-\x{205E}\x{205F}\x{2060}-\x{2064}\x{2065}\x{2066}\x{2067}\x{2068}\x{2069}\x{206A}-\x{206F}\x{2070}\x{2074}-\x{2079}\x{207A}-\x{207B}\x{207C}\x{207D}\x{207E}\x{2080}-\x{2089}\x{208A}-\x{208B}\x{208C}\x{208D}\x{208E}\x{20A0}-\x{20BF}\x{20C0}-\x{20CF}\x{20D0}-\x{20DC}\x{20DD}-\x{20E0}\x{20E1}\x{20E2}-\x{20E4}\x{20E5}-\x{20F0}\x{2100}-\x{2101}\x{2103}-\x{2106}\x{2108}-\x{2109}\x{2114}\x{2116}-\x{2117}\x{2118}\x{211E}-\x{2123}\x{2125}\x{2127}\x{2129}\x{212E}\x{213A}-\x{213B}\x{2140}-\x{2144}\x{214A}\x{214B}\x{214C}-\x{214D}\x{2150}-\x{215F}\x{2189}\x{218A}-\x{218B}\x{2190}-\x{2194}\x{2195}-\x{2199}\x{219A}-\x{219B}\x{219C}-\x{219F}\x{21A0}\x{21A1}-\x{21A2}\x{21A3}\x{21A4}-\x{21A5}\x{21A6}\x{21A7}-\x{21AD}\x{21AE}\x{21AF}-\x{21CD}\x{21CE}-\x{21CF}\x{21D0}-\x{21D1}\x{21D2}\x{21D3}\x{21D4}\x{21D5}-\x{21F3}\x{21F4}-\x{2211}\x{2212}\x{2213}\x{2214}-\x{22FF}\x{2300}-\x{2307}\x{2308}\x{2309}\x{230A}\x{230B}\x{230C}-\x{231F}\x{2320}-\x{2321}\x{2322}-\x{2328}\x{2329}\x{232A}\x{232B}-\x{2335}\x{237B}\x{237C}\x{237D}-\x{2394}\x{2396}-\x{239A}\x{239B}-\x{23B3}\x{23B4}-\x{23DB}\x{23DC}-\x{23E1}\x{23E2}-\x{2426}\x{2440}-\x{244A}\x{2460}-\x{2487}\x{2488}-\x{249B}\x{24EA}-\x{24FF}\x{2500}-\x{25B6}\x{25B7}\x{25B8}-\x{25C0}\x{25C1}\x{25C2}-\x{25F7}\x{25F8}-\x{25FF}\x{2600}-\x{266E}\x{266F}\x{2670}-\x{26AB}\x{26AD}-\x{2767}\x{2768}\x{2769}\x{276A}\x{276B}\x{276C}\x{276D}\x{276E}\x{276F}\x{2770}\x{2771}\x{2772}\x{2773}\x{2774}\x{2775}\x{2776}-\x{2793}\x{2794}-\x{27BF}\x{27C0}-\x{27C4}\x{27C5}\x{27C6}\x{27C7}-\x{27E5}\x{27E6}\x{27E7}\x{27E8}\x{27E9}\x{27EA}\x{27EB}\x{27EC}\x{27ED}\x{27EE}\x{27EF}\x{27F0}-\x{27FF}\x{2900}-\x{2982}\x{2983}\x{2984}\x{2985}\x{2986}\x{2987}\x{2988}\x{2989}\x{298A}\x{298B}\x{298C}\x{298D}\x{298E}\x{298F}\x{2990}\x{2991}\x{2992}\x{2993}\x{2994}\x{2995}\x{2996}\x{2997}\x{2998}\x{2999}-\x{29D7}\x{29D8}\x{29D9}\x{29DA}\x{29DB}\x{29DC}-\x{29FB}\x{29FC}\x{29FD}\x{29FE}-\x{2AFF}\x{2B00}-\x{2B2F}\x{2B30}-\x{2B44}\x{2B45}-\x{2B46}\x{2B47}-\x{2B4C}\x{2B4D}-\x{2B73}\x{2B76}-\x{2B95}\x{2B97}-\x{2BFF}\x{2CE5}-\x{2CEA}\x{2CEF}-\x{2CF1}\x{2CF9}-\x{2CFC}\x{2CFD}\x{2CFE}-\x{2CFF}\x{2D7F}\x{2DE0}-\x{2DFF}\x{2E00}-\x{2E01}\x{2E02}\x{2E03}\x{2E04}\x{2E05}\x{2E06}-\x{2E08}\x{2E09}\x{2E0A}\x{2E0B}\x{2E0C}\x{2E0D}\x{2E0E}-\x{2E16}\x{2E17}\x{2E18}-\x{2E19}\x{2E1A}\x{2E1B}\x{2E1C}\x{2E1D}\x{2E1E}-\x{2E1F}\x{2E20}\x{2E21}\x{2E22}\x{2E23}\x{2E24}\x{2E25}\x{2E26}\x{2E27}\x{2E28}\x{2E29}\x{2E2A}-\x{2E2E}\x{2E2F}\x{2E30}-\x{2E39}\x{2E3A}-\x{2E3B}\x{2E3C}-\x{2E3F}\x{2E40}\x{2E41}\x{2E42}\x{2E43}-\x{2E4F}\x{2E50}-\x{2E51}\x{2E52}\x{2E80}-\x{2E99}\x{2E9B}-\x{2EF3}\x{2F00}-\x{2FD5}\x{2FF0}-\x{2FFB}\x{3000}\x{3001}-\x{3003}\x{3004}\x{3008}\x{3009}\x{300A}\x{300B}\x{300C}\x{300D}\x{300E}\x{300F}\x{3010}\x{3011}\x{3012}-\x{3013}\x{3014}\x{3015}\x{3016}\x{3017}\x{3018}\x{3019}\x{301A}\x{301B}\x{301C}\x{301D}\x{301E}-\x{301F}\x{3020}\x{302A}-\x{302D}\x{3030}\x{3036}-\x{3037}\x{303D}\x{303E}-\x{303F}\x{3099}-\x{309A}\x{309B}-\x{309C}\x{30A0}\x{30FB}\x{31C0}-\x{31E3}\x{321D}-\x{321E}\x{3250}\x{3251}-\x{325F}\x{327C}-\x{327E}\x{32B1}-\x{32BF}\x{32CC}-\x{32CF}\x{3377}-\x{337A}\x{33DE}-\x{33DF}\x{33FF}\x{4DC0}-\x{4DFF}\x{A490}-\x{A4C6}\x{A60D}-\x{A60F}\x{A66F}\x{A670}-\x{A672}\x{A673}\x{A674}-\x{A67D}\x{A67E}\x{A67F}\x{A69E}-\x{A69F}\x{A6F0}-\x{A6F1}\x{A700}-\x{A716}\x{A717}-\x{A71F}\x{A720}-\x{A721}\x{A788}\x{A802}\x{A806}\x{A80B}\x{A825}-\x{A826}\x{A828}-\x{A82B}\x{A82C}\x{A838}\x{A839}\x{A874}-\x{A877}\x{A8C4}-\x{A8C5}\x{A8E0}-\x{A8F1}\x{A8FF}\x{A926}-\x{A92D}\x{A947}-\x{A951}\x{A980}-\x{A982}\x{A9B3}\x{A9B6}-\x{A9B9}\x{A9BC}-\x{A9BD}\x{A9E5}\x{AA29}-\x{AA2E}\x{AA31}-\x{AA32}\x{AA35}-\x{AA36}\x{AA43}\x{AA4C}\x{AA7C}\x{AAB0}\x{AAB2}-\x{AAB4}\x{AAB7}-\x{AAB8}\x{AABE}-\x{AABF}\x{AAC1}\x{AAEC}-\x{AAED}\x{AAF6}\x{AB6A}-\x{AB6B}\x{ABE5}\x{ABE8}\x{ABED}\x{FB1D}\x{FB1E}\x{FB1F}-\x{FB28}\x{FB29}\x{FB2A}-\x{FB36}\x{FB37}\x{FB38}-\x{FB3C}\x{FB3D}\x{FB3E}\x{FB3F}\x{FB40}-\x{FB41}\x{FB42}\x{FB43}-\x{FB44}\x{FB45}\x{FB46}-\x{FB4F}\x{FB50}-\x{FBB1}\x{FBB2}-\x{FBC1}\x{FBC2}-\x{FBD2}\x{FBD3}-\x{FD3D}\x{FD3E}\x{FD3F}\x{FD40}-\x{FD4F}\x{FD50}-\x{FD8F}\x{FD90}-\x{FD91}\x{FD92}-\x{FDC7}\x{FDC8}-\x{FDCF}\x{FDD0}-\x{FDEF}\x{FDF0}-\x{FDFB}\x{FDFC}\x{FDFD}\x{FDFE}-\x{FDFF}\x{FE00}-\x{FE0F}\x{FE10}-\x{FE16}\x{FE17}\x{FE18}\x{FE19}\x{FE20}-\x{FE2F}\x{FE30}\x{FE31}-\x{FE32}\x{FE33}-\x{FE34}\x{FE35}\x{FE36}\x{FE37}\x{FE38}\x{FE39}\x{FE3A}\x{FE3B}\x{FE3C}\x{FE3D}\x{FE3E}\x{FE3F}\x{FE40}\x{FE41}\x{FE42}\x{FE43}\x{FE44}\x{FE45}-\x{FE46}\x{FE47}\x{FE48}\x{FE49}-\x{FE4C}\x{FE4D}-\x{FE4F}\x{FE50}\x{FE51}\x{FE52}\x{FE54}\x{FE55}\x{FE56}-\x{FE57}\x{FE58}\x{FE59}\x{FE5A}\x{FE5B}\x{FE5C}\x{FE5D}\x{FE5E}\x{FE5F}\x{FE60}-\x{FE61}\x{FE62}\x{FE63}\x{FE64}-\x{FE66}\x{FE68}\x{FE69}\x{FE6A}\x{FE6B}\x{FE70}-\x{FE74}\x{FE75}\x{FE76}-\x{FEFC}\x{FEFD}-\x{FEFE}\x{FEFF}\x{FF01}-\x{FF02}\x{FF03}\x{FF04}\x{FF05}\x{FF06}-\x{FF07}\x{FF08}\x{FF09}\x{FF0A}\x{FF0B}\x{FF0C}\x{FF0D}\x{FF0E}-\x{FF0F}\x{FF10}-\x{FF19}\x{FF1A}\x{FF1B}\x{FF1C}-\x{FF1E}\x{FF1F}-\x{FF20}\x{FF3B}\x{FF3C}\x{FF3D}\x{FF3E}\x{FF3F}\x{FF40}\x{FF5B}\x{FF5C}\x{FF5D}\x{FF5E}\x{FF5F}\x{FF60}\x{FF61}\x{FF62}\x{FF63}\x{FF64}-\x{FF65}\x{FFE0}-\x{FFE1}\x{FFE2}\x{FFE3}\x{FFE4}\x{FFE5}-\x{FFE6}\x{FFE8}\x{FFE9}-\x{FFEC}\x{FFED}-\x{FFEE}\x{FFF0}-\x{FFF8}\x{FFF9}-\x{FFFB}\x{FFFC}-\x{FFFD}\x{FFFE}-\x{FFFF}\x{10101}\x{10140}-\x{10174}\x{10175}-\x{10178}\x{10179}-\x{10189}\x{1018A}-\x{1018B}\x{1018C}\x{10190}-\x{1019C}\x{101A0}\x{101FD}\x{102E0}\x{102E1}-\x{102FB}\x{10376}-\x{1037A}\x{10800}-\x{10805}\x{10806}-\x{10807}\x{10808}\x{10809}\x{1080A}-\x{10835}\x{10836}\x{10837}-\x{10838}\x{10839}-\x{1083B}\x{1083C}\x{1083D}-\x{1083E}\x{1083F}-\x{10855}\x{10856}\x{10857}\x{10858}-\x{1085F}\x{10860}-\x{10876}\x{10877}-\x{10878}\x{10879}-\x{1087F}\x{10880}-\x{1089E}\x{1089F}-\x{108A6}\x{108A7}-\x{108AF}\x{108B0}-\x{108DF}\x{108E0}-\x{108F2}\x{108F3}\x{108F4}-\x{108F5}\x{108F6}-\x{108FA}\x{108FB}-\x{108FF}\x{10900}-\x{10915}\x{10916}-\x{1091B}\x{1091C}-\x{1091E}\x{1091F}\x{10920}-\x{10939}\x{1093A}-\x{1093E}\x{1093F}\x{10940}-\x{1097F}\x{10980}-\x{109B7}\x{109B8}-\x{109BB}\x{109BC}-\x{109BD}\x{109BE}-\x{109BF}\x{109C0}-\x{109CF}\x{109D0}-\x{109D1}\x{109D2}-\x{109FF}\x{10A00}\x{10A01}-\x{10A03}\x{10A04}\x{10A05}-\x{10A06}\x{10A07}-\x{10A0B}\x{10A0C}-\x{10A0F}\x{10A10}-\x{10A13}\x{10A14}\x{10A15}-\x{10A17}\x{10A18}\x{10A19}-\x{10A35}\x{10A36}-\x{10A37}\x{10A38}-\x{10A3A}\x{10A3B}-\x{10A3E}\x{10A3F}\x{10A40}-\x{10A48}\x{10A49}-\x{10A4F}\x{10A50}-\x{10A58}\x{10A59}-\x{10A5F}\x{10A60}-\x{10A7C}\x{10A7D}-\x{10A7E}\x{10A7F}\x{10A80}-\x{10A9C}\x{10A9D}-\x{10A9F}\x{10AA0}-\x{10ABF}\x{10AC0}-\x{10AC7}\x{10AC8}\x{10AC9}-\x{10AE4}\x{10AE5}-\x{10AE6}\x{10AE7}-\x{10AEA}\x{10AEB}-\x{10AEF}\x{10AF0}-\x{10AF6}\x{10AF7}-\x{10AFF}\x{10B00}-\x{10B35}\x{10B36}-\x{10B38}\x{10B39}-\x{10B3F}\x{10B40}-\x{10B55}\x{10B56}-\x{10B57}\x{10B58}-\x{10B5F}\x{10B60}-\x{10B72}\x{10B73}-\x{10B77}\x{10B78}-\x{10B7F}\x{10B80}-\x{10B91}\x{10B92}-\x{10B98}\x{10B99}-\x{10B9C}\x{10B9D}-\x{10BA8}\x{10BA9}-\x{10BAF}\x{10BB0}-\x{10BFF}\x{10C00}-\x{10C48}\x{10C49}-\x{10C7F}\x{10C80}-\x{10CB2}\x{10CB3}-\x{10CBF}\x{10CC0}-\x{10CF2}\x{10CF3}-\x{10CF9}\x{10CFA}-\x{10CFF}\x{10D00}-\x{10D23}\x{10D24}-\x{10D27}\x{10D28}-\x{10D2F}\x{10D30}-\x{10D39}\x{10D3A}-\x{10D3F}\x{10D40}-\x{10E5F}\x{10E60}-\x{10E7E}\x{10E7F}\x{10E80}-\x{10EA9}\x{10EAA}\x{10EAB}-\x{10EAC}\x{10EAD}\x{10EAE}-\x{10EAF}\x{10EB0}-\x{10EB1}\x{10EB2}-\x{10EFF}\x{10F00}-\x{10F1C}\x{10F1D}-\x{10F26}\x{10F27}\x{10F28}-\x{10F2F}\x{10F30}-\x{10F45}\x{10F46}-\x{10F50}\x{10F51}-\x{10F54}\x{10F55}-\x{10F59}\x{10F5A}-\x{10F6F}\x{10F70}-\x{10FAF}\x{10FB0}-\x{10FC4}\x{10FC5}-\x{10FCB}\x{10FCC}-\x{10FDF}\x{10FE0}-\x{10FF6}\x{10FF7}-\x{10FFF}\x{11001}\x{11038}-\x{11046}\x{11052}-\x{11065}\x{1107F}-\x{11081}\x{110B3}-\x{110B6}\x{110B9}-\x{110BA}\x{11100}-\x{11102}\x{11127}-\x{1112B}\x{1112D}-\x{11134}\x{11173}\x{11180}-\x{11181}\x{111B6}-\x{111BE}\x{111C9}-\x{111CC}\x{111CF}\x{1122F}-\x{11231}\x{11234}\x{11236}-\x{11237}\x{1123E}\x{112DF}\x{112E3}-\x{112EA}\x{11300}-\x{11301}\x{1133B}-\x{1133C}\x{11340}\x{11366}-\x{1136C}\x{11370}-\x{11374}\x{11438}-\x{1143F}\x{11442}-\x{11444}\x{11446}\x{1145E}\x{114B3}-\x{114B8}\x{114BA}\x{114BF}-\x{114C0}\x{114C2}-\x{114C3}\x{115B2}-\x{115B5}\x{115BC}-\x{115BD}\x{115BF}-\x{115C0}\x{115DC}-\x{115DD}\x{11633}-\x{1163A}\x{1163D}\x{1163F}-\x{11640}\x{11660}-\x{1166C}\x{116AB}\x{116AD}\x{116B0}-\x{116B5}\x{116B7}\x{1171D}-\x{1171F}\x{11722}-\x{11725}\x{11727}-\x{1172B}\x{1182F}-\x{11837}\x{11839}-\x{1183A}\x{1193B}-\x{1193C}\x{1193E}\x{11943}\x{119D4}-\x{119D7}\x{119DA}-\x{119DB}\x{119E0}\x{11A01}-\x{11A06}\x{11A09}-\x{11A0A}\x{11A33}-\x{11A38}\x{11A3B}-\x{11A3E}\x{11A47}\x{11A51}-\x{11A56}\x{11A59}-\x{11A5B}\x{11A8A}-\x{11A96}\x{11A98}-\x{11A99}\x{11C30}-\x{11C36}\x{11C38}-\x{11C3D}\x{11C92}-\x{11CA7}\x{11CAA}-\x{11CB0}\x{11CB2}-\x{11CB3}\x{11CB5}-\x{11CB6}\x{11D31}-\x{11D36}\x{11D3A}\x{11D3C}-\x{11D3D}\x{11D3F}-\x{11D45}\x{11D47}\x{11D90}-\x{11D91}\x{11D95}\x{11D97}\x{11EF3}-\x{11EF4}\x{11FD5}-\x{11FDC}\x{11FDD}-\x{11FE0}\x{11FE1}-\x{11FF1}\x{16AF0}-\x{16AF4}\x{16B30}-\x{16B36}\x{16F4F}\x{16F8F}-\x{16F92}\x{16FE2}\x{16FE4}\x{1BC9D}-\x{1BC9E}\x{1BCA0}-\x{1BCA3}\x{1D167}-\x{1D169}\x{1D173}-\x{1D17A}\x{1D17B}-\x{1D182}\x{1D185}-\x{1D18B}\x{1D1AA}-\x{1D1AD}\x{1D200}-\x{1D241}\x{1D242}-\x{1D244}\x{1D245}\x{1D300}-\x{1D356}\x{1D6DB}\x{1D715}\x{1D74F}\x{1D789}\x{1D7C3}\x{1D7CE}-\x{1D7FF}\x{1DA00}-\x{1DA36}\x{1DA3B}-\x{1DA6C}\x{1DA75}\x{1DA84}\x{1DA9B}-\x{1DA9F}\x{1DAA1}-\x{1DAAF}\x{1E000}-\x{1E006}\x{1E008}-\x{1E018}\x{1E01B}-\x{1E021}\x{1E023}-\x{1E024}\x{1E026}-\x{1E02A}\x{1E130}-\x{1E136}\x{1E2EC}-\x{1E2EF}\x{1E2FF}\x{1E800}-\x{1E8C4}\x{1E8C5}-\x{1E8C6}\x{1E8C7}-\x{1E8CF}\x{1E8D0}-\x{1E8D6}\x{1E8D7}-\x{1E8FF}\x{1E900}-\x{1E943}\x{1E944}-\x{1E94A}\x{1E94B}\x{1E94C}-\x{1E94F}\x{1E950}-\x{1E959}\x{1E95A}-\x{1E95D}\x{1E95E}-\x{1E95F}\x{1E960}-\x{1EC6F}\x{1EC70}\x{1EC71}-\x{1ECAB}\x{1ECAC}\x{1ECAD}-\x{1ECAF}\x{1ECB0}\x{1ECB1}-\x{1ECB4}\x{1ECB5}-\x{1ECBF}\x{1ECC0}-\x{1ECFF}\x{1ED00}\x{1ED01}-\x{1ED2D}\x{1ED2E}\x{1ED2F}-\x{1ED3D}\x{1ED3E}-\x{1ED4F}\x{1ED50}-\x{1EDFF}\x{1EE00}-\x{1EE03}\x{1EE04}\x{1EE05}-\x{1EE1F}\x{1EE20}\x{1EE21}-\x{1EE22}\x{1EE23}\x{1EE24}\x{1EE25}-\x{1EE26}\x{1EE27}\x{1EE28}\x{1EE29}-\x{1EE32}\x{1EE33}\x{1EE34}-\x{1EE37}\x{1EE38}\x{1EE39}\x{1EE3A}\x{1EE3B}\x{1EE3C}-\x{1EE41}\x{1EE42}\x{1EE43}-\x{1EE46}\x{1EE47}\x{1EE48}\x{1EE49}\x{1EE4A}\x{1EE4B}\x{1EE4C}\x{1EE4D}-\x{1EE4F}\x{1EE50}\x{1EE51}-\x{1EE52}\x{1EE53}\x{1EE54}\x{1EE55}-\x{1EE56}\x{1EE57}\x{1EE58}\x{1EE59}\x{1EE5A}\x{1EE5B}\x{1EE5C}\x{1EE5D}\x{1EE5E}\x{1EE5F}\x{1EE60}\x{1EE61}-\x{1EE62}\x{1EE63}\x{1EE64}\x{1EE65}-\x{1EE66}\x{1EE67}-\x{1EE6A}\x{1EE6B}\x{1EE6C}-\x{1EE72}\x{1EE73}\x{1EE74}-\x{1EE77}\x{1EE78}\x{1EE79}-\x{1EE7C}\x{1EE7D}\x{1EE7E}\x{1EE7F}\x{1EE80}-\x{1EE89}\x{1EE8A}\x{1EE8B}-\x{1EE9B}\x{1EE9C}-\x{1EEA0}\x{1EEA1}-\x{1EEA3}\x{1EEA4}\x{1EEA5}-\x{1EEA9}\x{1EEAA}\x{1EEAB}-\x{1EEBB}\x{1EEBC}-\x{1EEEF}\x{1EEF0}-\x{1EEF1}\x{1EEF2}-\x{1EEFF}\x{1EF00}-\x{1EFFF}\x{1F000}-\x{1F02B}\x{1F030}-\x{1F093}\x{1F0A0}-\x{1F0AE}\x{1F0B1}-\x{1F0BF}\x{1F0C1}-\x{1F0CF}\x{1F0D1}-\x{1F0F5}\x{1F100}-\x{1F10A}\x{1F10B}-\x{1F10C}\x{1F10D}-\x{1F10F}\x{1F12F}\x{1F16A}-\x{1F16F}\x{1F1AD}\x{1F260}-\x{1F265}\x{1F300}-\x{1F3FA}\x{1F3FB}-\x{1F3FF}\x{1F400}-\x{1F6D7}\x{1F6E0}-\x{1F6EC}\x{1F6F0}-\x{1F6FC}\x{1F700}-\x{1F773}\x{1F780}-\x{1F7D8}\x{1F7E0}-\x{1F7EB}\x{1F800}-\x{1F80B}\x{1F810}-\x{1F847}\x{1F850}-\x{1F859}\x{1F860}-\x{1F887}\x{1F890}-\x{1F8AD}\x{1F8B0}-\x{1F8B1}\x{1F900}-\x{1F978}\x{1F97A}-\x{1F9CB}\x{1F9CD}-\x{1FA53}\x{1FA60}-\x{1FA6D}\x{1FA70}-\x{1FA74}\x{1FA78}-\x{1FA7A}\x{1FA80}-\x{1FA86}\x{1FA90}-\x{1FAA8}\x{1FAB0}-\x{1FAB6}\x{1FAC0}-\x{1FAC2}\x{1FAD0}-\x{1FAD6}\x{1FB00}-\x{1FB92}\x{1FB94}-\x{1FBCA}\x{1FBF0}-\x{1FBF9}\x{1FFFE}-\x{1FFFF}\x{2FFFE}-\x{2FFFF}\x{3FFFE}-\x{3FFFF}\x{4FFFE}-\x{4FFFF}\x{5FFFE}-\x{5FFFF}\x{6FFFE}-\x{6FFFF}\x{7FFFE}-\x{7FFFF}\x{8FFFE}-\x{8FFFF}\x{9FFFE}-\x{9FFFF}\x{AFFFE}-\x{AFFFF}\x{BFFFE}-\x{BFFFF}\x{CFFFE}-\x{CFFFF}\x{DFFFE}-\x{E0000}\x{E0001}\x{E0002}-\x{E001F}\x{E0020}-\x{E007F}\x{E0080}-\x{E00FF}\x{E0100}-\x{E01EF}\x{E01F0}-\x{E0FFF}\x{EFFFE}-\x{EFFFF}\x{FFFFE}-\x{FFFFF}\x{10FFFE}-\x{10FFFF}]/u';
15
+ const BIDI_STEP_1_RTL = '/^[\x{0590}\x{05BE}\x{05C0}\x{05C3}\x{05C6}\x{05C8}-\x{05CF}\x{05D0}-\x{05EA}\x{05EB}-\x{05EE}\x{05EF}-\x{05F2}\x{05F3}-\x{05F4}\x{05F5}-\x{05FF}\x{0608}\x{060B}\x{060D}\x{061B}\x{061C}\x{061D}\x{061E}-\x{061F}\x{0620}-\x{063F}\x{0640}\x{0641}-\x{064A}\x{066D}\x{066E}-\x{066F}\x{0671}-\x{06D3}\x{06D4}\x{06D5}\x{06E5}-\x{06E6}\x{06EE}-\x{06EF}\x{06FA}-\x{06FC}\x{06FD}-\x{06FE}\x{06FF}\x{0700}-\x{070D}\x{070E}\x{070F}\x{0710}\x{0712}-\x{072F}\x{074B}-\x{074C}\x{074D}-\x{07A5}\x{07B1}\x{07B2}-\x{07BF}\x{07C0}-\x{07C9}\x{07CA}-\x{07EA}\x{07F4}-\x{07F5}\x{07FA}\x{07FB}-\x{07FC}\x{07FE}-\x{07FF}\x{0800}-\x{0815}\x{081A}\x{0824}\x{0828}\x{082E}-\x{082F}\x{0830}-\x{083E}\x{083F}\x{0840}-\x{0858}\x{085C}-\x{085D}\x{085E}\x{085F}\x{0860}-\x{086A}\x{086B}-\x{086F}\x{0870}-\x{089F}\x{08A0}-\x{08B4}\x{08B5}\x{08B6}-\x{08C7}\x{08C8}-\x{08D2}\x{200F}\x{FB1D}\x{FB1F}-\x{FB28}\x{FB2A}-\x{FB36}\x{FB37}\x{FB38}-\x{FB3C}\x{FB3D}\x{FB3E}\x{FB3F}\x{FB40}-\x{FB41}\x{FB42}\x{FB43}-\x{FB44}\x{FB45}\x{FB46}-\x{FB4F}\x{FB50}-\x{FBB1}\x{FBB2}-\x{FBC1}\x{FBC2}-\x{FBD2}\x{FBD3}-\x{FD3D}\x{FD40}-\x{FD4F}\x{FD50}-\x{FD8F}\x{FD90}-\x{FD91}\x{FD92}-\x{FDC7}\x{FDC8}-\x{FDCF}\x{FDF0}-\x{FDFB}\x{FDFC}\x{FDFE}-\x{FDFF}\x{FE70}-\x{FE74}\x{FE75}\x{FE76}-\x{FEFC}\x{FEFD}-\x{FEFE}\x{10800}-\x{10805}\x{10806}-\x{10807}\x{10808}\x{10809}\x{1080A}-\x{10835}\x{10836}\x{10837}-\x{10838}\x{10839}-\x{1083B}\x{1083C}\x{1083D}-\x{1083E}\x{1083F}-\x{10855}\x{10856}\x{10857}\x{10858}-\x{1085F}\x{10860}-\x{10876}\x{10877}-\x{10878}\x{10879}-\x{1087F}\x{10880}-\x{1089E}\x{1089F}-\x{108A6}\x{108A7}-\x{108AF}\x{108B0}-\x{108DF}\x{108E0}-\x{108F2}\x{108F3}\x{108F4}-\x{108F5}\x{108F6}-\x{108FA}\x{108FB}-\x{108FF}\x{10900}-\x{10915}\x{10916}-\x{1091B}\x{1091C}-\x{1091E}\x{10920}-\x{10939}\x{1093A}-\x{1093E}\x{1093F}\x{10940}-\x{1097F}\x{10980}-\x{109B7}\x{109B8}-\x{109BB}\x{109BC}-\x{109BD}\x{109BE}-\x{109BF}\x{109C0}-\x{109CF}\x{109D0}-\x{109D1}\x{109D2}-\x{109FF}\x{10A00}\x{10A04}\x{10A07}-\x{10A0B}\x{10A10}-\x{10A13}\x{10A14}\x{10A15}-\x{10A17}\x{10A18}\x{10A19}-\x{10A35}\x{10A36}-\x{10A37}\x{10A3B}-\x{10A3E}\x{10A40}-\x{10A48}\x{10A49}-\x{10A4F}\x{10A50}-\x{10A58}\x{10A59}-\x{10A5F}\x{10A60}-\x{10A7C}\x{10A7D}-\x{10A7E}\x{10A7F}\x{10A80}-\x{10A9C}\x{10A9D}-\x{10A9F}\x{10AA0}-\x{10ABF}\x{10AC0}-\x{10AC7}\x{10AC8}\x{10AC9}-\x{10AE4}\x{10AE7}-\x{10AEA}\x{10AEB}-\x{10AEF}\x{10AF0}-\x{10AF6}\x{10AF7}-\x{10AFF}\x{10B00}-\x{10B35}\x{10B36}-\x{10B38}\x{10B40}-\x{10B55}\x{10B56}-\x{10B57}\x{10B58}-\x{10B5F}\x{10B60}-\x{10B72}\x{10B73}-\x{10B77}\x{10B78}-\x{10B7F}\x{10B80}-\x{10B91}\x{10B92}-\x{10B98}\x{10B99}-\x{10B9C}\x{10B9D}-\x{10BA8}\x{10BA9}-\x{10BAF}\x{10BB0}-\x{10BFF}\x{10C00}-\x{10C48}\x{10C49}-\x{10C7F}\x{10C80}-\x{10CB2}\x{10CB3}-\x{10CBF}\x{10CC0}-\x{10CF2}\x{10CF3}-\x{10CF9}\x{10CFA}-\x{10CFF}\x{10D00}-\x{10D23}\x{10D28}-\x{10D2F}\x{10D3A}-\x{10D3F}\x{10D40}-\x{10E5F}\x{10E7F}\x{10E80}-\x{10EA9}\x{10EAA}\x{10EAD}\x{10EAE}-\x{10EAF}\x{10EB0}-\x{10EB1}\x{10EB2}-\x{10EFF}\x{10F00}-\x{10F1C}\x{10F1D}-\x{10F26}\x{10F27}\x{10F28}-\x{10F2F}\x{10F30}-\x{10F45}\x{10F51}-\x{10F54}\x{10F55}-\x{10F59}\x{10F5A}-\x{10F6F}\x{10F70}-\x{10FAF}\x{10FB0}-\x{10FC4}\x{10FC5}-\x{10FCB}\x{10FCC}-\x{10FDF}\x{10FE0}-\x{10FF6}\x{10FF7}-\x{10FFF}\x{1E800}-\x{1E8C4}\x{1E8C5}-\x{1E8C6}\x{1E8C7}-\x{1E8CF}\x{1E8D7}-\x{1E8FF}\x{1E900}-\x{1E943}\x{1E94B}\x{1E94C}-\x{1E94F}\x{1E950}-\x{1E959}\x{1E95A}-\x{1E95D}\x{1E95E}-\x{1E95F}\x{1E960}-\x{1EC6F}\x{1EC70}\x{1EC71}-\x{1ECAB}\x{1ECAC}\x{1ECAD}-\x{1ECAF}\x{1ECB0}\x{1ECB1}-\x{1ECB4}\x{1ECB5}-\x{1ECBF}\x{1ECC0}-\x{1ECFF}\x{1ED00}\x{1ED01}-\x{1ED2D}\x{1ED2E}\x{1ED2F}-\x{1ED3D}\x{1ED3E}-\x{1ED4F}\x{1ED50}-\x{1EDFF}\x{1EE00}-\x{1EE03}\x{1EE04}\x{1EE05}-\x{1EE1F}\x{1EE20}\x{1EE21}-\x{1EE22}\x{1EE23}\x{1EE24}\x{1EE25}-\x{1EE26}\x{1EE27}\x{1EE28}\x{1EE29}-\x{1EE32}\x{1EE33}\x{1EE34}-\x{1EE37}\x{1EE38}\x{1EE39}\x{1EE3A}\x{1EE3B}\x{1EE3C}-\x{1EE41}\x{1EE42}\x{1EE43}-\x{1EE46}\x{1EE47}\x{1EE48}\x{1EE49}\x{1EE4A}\x{1EE4B}\x{1EE4C}\x{1EE4D}-\x{1EE4F}\x{1EE50}\x{1EE51}-\x{1EE52}\x{1EE53}\x{1EE54}\x{1EE55}-\x{1EE56}\x{1EE57}\x{1EE58}\x{1EE59}\x{1EE5A}\x{1EE5B}\x{1EE5C}\x{1EE5D}\x{1EE5E}\x{1EE5F}\x{1EE60}\x{1EE61}-\x{1EE62}\x{1EE63}\x{1EE64}\x{1EE65}-\x{1EE66}\x{1EE67}-\x{1EE6A}\x{1EE6B}\x{1EE6C}-\x{1EE72}\x{1EE73}\x{1EE74}-\x{1EE77}\x{1EE78}\x{1EE79}-\x{1EE7C}\x{1EE7D}\x{1EE7E}\x{1EE7F}\x{1EE80}-\x{1EE89}\x{1EE8A}\x{1EE8B}-\x{1EE9B}\x{1EE9C}-\x{1EEA0}\x{1EEA1}-\x{1EEA3}\x{1EEA4}\x{1EEA5}-\x{1EEA9}\x{1EEAA}\x{1EEAB}-\x{1EEBB}\x{1EEBC}-\x{1EEEF}\x{1EEF2}-\x{1EEFF}\x{1EF00}-\x{1EFFF}]/u';
16
+ const BIDI_STEP_2 = '/[^\x{0000}-\x{0008}\x{000E}-\x{001B}\x{0021}-\x{0022}\x{0023}\x{0024}\x{0025}\x{0026}-\x{0027}\x{0028}\x{0029}\x{002A}\x{002B}\x{002C}\x{002D}\x{002E}-\x{002F}\x{0030}-\x{0039}\x{003A}\x{003B}\x{003C}-\x{003E}\x{003F}-\x{0040}\x{005B}\x{005C}\x{005D}\x{005E}\x{005F}\x{0060}\x{007B}\x{007C}\x{007D}\x{007E}\x{007F}-\x{0084}\x{0086}-\x{009F}\x{00A0}\x{00A1}\x{00A2}-\x{00A5}\x{00A6}\x{00A7}\x{00A8}\x{00A9}\x{00AB}\x{00AC}\x{00AD}\x{00AE}\x{00AF}\x{00B0}\x{00B1}\x{00B2}-\x{00B3}\x{00B4}\x{00B6}-\x{00B7}\x{00B8}\x{00B9}\x{00BB}\x{00BC}-\x{00BE}\x{00BF}\x{00D7}\x{00F7}\x{02B9}-\x{02BA}\x{02C2}-\x{02C5}\x{02C6}-\x{02CF}\x{02D2}-\x{02DF}\x{02E5}-\x{02EB}\x{02EC}\x{02ED}\x{02EF}-\x{02FF}\x{0300}-\x{036F}\x{0374}\x{0375}\x{037E}\x{0384}-\x{0385}\x{0387}\x{03F6}\x{0483}-\x{0487}\x{0488}-\x{0489}\x{058A}\x{058D}-\x{058E}\x{058F}\x{0590}\x{0591}-\x{05BD}\x{05BE}\x{05BF}\x{05C0}\x{05C1}-\x{05C2}\x{05C3}\x{05C4}-\x{05C5}\x{05C6}\x{05C7}\x{05C8}-\x{05CF}\x{05D0}-\x{05EA}\x{05EB}-\x{05EE}\x{05EF}-\x{05F2}\x{05F3}-\x{05F4}\x{05F5}-\x{05FF}\x{0600}-\x{0605}\x{0606}-\x{0607}\x{0608}\x{0609}-\x{060A}\x{060B}\x{060C}\x{060D}\x{060E}-\x{060F}\x{0610}-\x{061A}\x{061B}\x{061C}\x{061D}\x{061E}-\x{061F}\x{0620}-\x{063F}\x{0640}\x{0641}-\x{064A}\x{064B}-\x{065F}\x{0660}-\x{0669}\x{066A}\x{066B}-\x{066C}\x{066D}\x{066E}-\x{066F}\x{0670}\x{0671}-\x{06D3}\x{06D4}\x{06D5}\x{06D6}-\x{06DC}\x{06DD}\x{06DE}\x{06DF}-\x{06E4}\x{06E5}-\x{06E6}\x{06E7}-\x{06E8}\x{06E9}\x{06EA}-\x{06ED}\x{06EE}-\x{06EF}\x{06F0}-\x{06F9}\x{06FA}-\x{06FC}\x{06FD}-\x{06FE}\x{06FF}\x{0700}-\x{070D}\x{070E}\x{070F}\x{0710}\x{0711}\x{0712}-\x{072F}\x{0730}-\x{074A}\x{074B}-\x{074C}\x{074D}-\x{07A5}\x{07A6}-\x{07B0}\x{07B1}\x{07B2}-\x{07BF}\x{07C0}-\x{07C9}\x{07CA}-\x{07EA}\x{07EB}-\x{07F3}\x{07F4}-\x{07F5}\x{07F6}\x{07F7}-\x{07F9}\x{07FA}\x{07FB}-\x{07FC}\x{07FD}\x{07FE}-\x{07FF}\x{0800}-\x{0815}\x{0816}-\x{0819}\x{081A}\x{081B}-\x{0823}\x{0824}\x{0825}-\x{0827}\x{0828}\x{0829}-\x{082D}\x{082E}-\x{082F}\x{0830}-\x{083E}\x{083F}\x{0840}-\x{0858}\x{0859}-\x{085B}\x{085C}-\x{085D}\x{085E}\x{085F}\x{0860}-\x{086A}\x{086B}-\x{086F}\x{0870}-\x{089F}\x{08A0}-\x{08B4}\x{08B5}\x{08B6}-\x{08C7}\x{08C8}-\x{08D2}\x{08D3}-\x{08E1}\x{08E2}\x{08E3}-\x{0902}\x{093A}\x{093C}\x{0941}-\x{0948}\x{094D}\x{0951}-\x{0957}\x{0962}-\x{0963}\x{0981}\x{09BC}\x{09C1}-\x{09C4}\x{09CD}\x{09E2}-\x{09E3}\x{09F2}-\x{09F3}\x{09FB}\x{09FE}\x{0A01}-\x{0A02}\x{0A3C}\x{0A41}-\x{0A42}\x{0A47}-\x{0A48}\x{0A4B}-\x{0A4D}\x{0A51}\x{0A70}-\x{0A71}\x{0A75}\x{0A81}-\x{0A82}\x{0ABC}\x{0AC1}-\x{0AC5}\x{0AC7}-\x{0AC8}\x{0ACD}\x{0AE2}-\x{0AE3}\x{0AF1}\x{0AFA}-\x{0AFF}\x{0B01}\x{0B3C}\x{0B3F}\x{0B41}-\x{0B44}\x{0B4D}\x{0B55}-\x{0B56}\x{0B62}-\x{0B63}\x{0B82}\x{0BC0}\x{0BCD}\x{0BF3}-\x{0BF8}\x{0BF9}\x{0BFA}\x{0C00}\x{0C04}\x{0C3E}-\x{0C40}\x{0C46}-\x{0C48}\x{0C4A}-\x{0C4D}\x{0C55}-\x{0C56}\x{0C62}-\x{0C63}\x{0C78}-\x{0C7E}\x{0C81}\x{0CBC}\x{0CCC}-\x{0CCD}\x{0CE2}-\x{0CE3}\x{0D00}-\x{0D01}\x{0D3B}-\x{0D3C}\x{0D41}-\x{0D44}\x{0D4D}\x{0D62}-\x{0D63}\x{0D81}\x{0DCA}\x{0DD2}-\x{0DD4}\x{0DD6}\x{0E31}\x{0E34}-\x{0E3A}\x{0E3F}\x{0E47}-\x{0E4E}\x{0EB1}\x{0EB4}-\x{0EBC}\x{0EC8}-\x{0ECD}\x{0F18}-\x{0F19}\x{0F35}\x{0F37}\x{0F39}\x{0F3A}\x{0F3B}\x{0F3C}\x{0F3D}\x{0F71}-\x{0F7E}\x{0F80}-\x{0F84}\x{0F86}-\x{0F87}\x{0F8D}-\x{0F97}\x{0F99}-\x{0FBC}\x{0FC6}\x{102D}-\x{1030}\x{1032}-\x{1037}\x{1039}-\x{103A}\x{103D}-\x{103E}\x{1058}-\x{1059}\x{105E}-\x{1060}\x{1071}-\x{1074}\x{1082}\x{1085}-\x{1086}\x{108D}\x{109D}\x{135D}-\x{135F}\x{1390}-\x{1399}\x{1400}\x{169B}\x{169C}\x{1712}-\x{1714}\x{1732}-\x{1734}\x{1752}-\x{1753}\x{1772}-\x{1773}\x{17B4}-\x{17B5}\x{17B7}-\x{17BD}\x{17C6}\x{17C9}-\x{17D3}\x{17DB}\x{17DD}\x{17F0}-\x{17F9}\x{1800}-\x{1805}\x{1806}\x{1807}-\x{180A}\x{180B}-\x{180D}\x{180E}\x{1885}-\x{1886}\x{18A9}\x{1920}-\x{1922}\x{1927}-\x{1928}\x{1932}\x{1939}-\x{193B}\x{1940}\x{1944}-\x{1945}\x{19DE}-\x{19FF}\x{1A17}-\x{1A18}\x{1A1B}\x{1A56}\x{1A58}-\x{1A5E}\x{1A60}\x{1A62}\x{1A65}-\x{1A6C}\x{1A73}-\x{1A7C}\x{1A7F}\x{1AB0}-\x{1ABD}\x{1ABE}\x{1ABF}-\x{1AC0}\x{1B00}-\x{1B03}\x{1B34}\x{1B36}-\x{1B3A}\x{1B3C}\x{1B42}\x{1B6B}-\x{1B73}\x{1B80}-\x{1B81}\x{1BA2}-\x{1BA5}\x{1BA8}-\x{1BA9}\x{1BAB}-\x{1BAD}\x{1BE6}\x{1BE8}-\x{1BE9}\x{1BED}\x{1BEF}-\x{1BF1}\x{1C2C}-\x{1C33}\x{1C36}-\x{1C37}\x{1CD0}-\x{1CD2}\x{1CD4}-\x{1CE0}\x{1CE2}-\x{1CE8}\x{1CED}\x{1CF4}\x{1CF8}-\x{1CF9}\x{1DC0}-\x{1DF9}\x{1DFB}-\x{1DFF}\x{1FBD}\x{1FBF}-\x{1FC1}\x{1FCD}-\x{1FCF}\x{1FDD}-\x{1FDF}\x{1FED}-\x{1FEF}\x{1FFD}-\x{1FFE}\x{200B}-\x{200D}\x{200F}\x{2010}-\x{2015}\x{2016}-\x{2017}\x{2018}\x{2019}\x{201A}\x{201B}-\x{201C}\x{201D}\x{201E}\x{201F}\x{2020}-\x{2027}\x{202F}\x{2030}-\x{2034}\x{2035}-\x{2038}\x{2039}\x{203A}\x{203B}-\x{203E}\x{203F}-\x{2040}\x{2041}-\x{2043}\x{2044}\x{2045}\x{2046}\x{2047}-\x{2051}\x{2052}\x{2053}\x{2054}\x{2055}-\x{205E}\x{2060}-\x{2064}\x{2065}\x{206A}-\x{206F}\x{2070}\x{2074}-\x{2079}\x{207A}-\x{207B}\x{207C}\x{207D}\x{207E}\x{2080}-\x{2089}\x{208A}-\x{208B}\x{208C}\x{208D}\x{208E}\x{20A0}-\x{20BF}\x{20C0}-\x{20CF}\x{20D0}-\x{20DC}\x{20DD}-\x{20E0}\x{20E1}\x{20E2}-\x{20E4}\x{20E5}-\x{20F0}\x{2100}-\x{2101}\x{2103}-\x{2106}\x{2108}-\x{2109}\x{2114}\x{2116}-\x{2117}\x{2118}\x{211E}-\x{2123}\x{2125}\x{2127}\x{2129}\x{212E}\x{213A}-\x{213B}\x{2140}-\x{2144}\x{214A}\x{214B}\x{214C}-\x{214D}\x{2150}-\x{215F}\x{2189}\x{218A}-\x{218B}\x{2190}-\x{2194}\x{2195}-\x{2199}\x{219A}-\x{219B}\x{219C}-\x{219F}\x{21A0}\x{21A1}-\x{21A2}\x{21A3}\x{21A4}-\x{21A5}\x{21A6}\x{21A7}-\x{21AD}\x{21AE}\x{21AF}-\x{21CD}\x{21CE}-\x{21CF}\x{21D0}-\x{21D1}\x{21D2}\x{21D3}\x{21D4}\x{21D5}-\x{21F3}\x{21F4}-\x{2211}\x{2212}\x{2213}\x{2214}-\x{22FF}\x{2300}-\x{2307}\x{2308}\x{2309}\x{230A}\x{230B}\x{230C}-\x{231F}\x{2320}-\x{2321}\x{2322}-\x{2328}\x{2329}\x{232A}\x{232B}-\x{2335}\x{237B}\x{237C}\x{237D}-\x{2394}\x{2396}-\x{239A}\x{239B}-\x{23B3}\x{23B4}-\x{23DB}\x{23DC}-\x{23E1}\x{23E2}-\x{2426}\x{2440}-\x{244A}\x{2460}-\x{2487}\x{2488}-\x{249B}\x{24EA}-\x{24FF}\x{2500}-\x{25B6}\x{25B7}\x{25B8}-\x{25C0}\x{25C1}\x{25C2}-\x{25F7}\x{25F8}-\x{25FF}\x{2600}-\x{266E}\x{266F}\x{2670}-\x{26AB}\x{26AD}-\x{2767}\x{2768}\x{2769}\x{276A}\x{276B}\x{276C}\x{276D}\x{276E}\x{276F}\x{2770}\x{2771}\x{2772}\x{2773}\x{2774}\x{2775}\x{2776}-\x{2793}\x{2794}-\x{27BF}\x{27C0}-\x{27C4}\x{27C5}\x{27C6}\x{27C7}-\x{27E5}\x{27E6}\x{27E7}\x{27E8}\x{27E9}\x{27EA}\x{27EB}\x{27EC}\x{27ED}\x{27EE}\x{27EF}\x{27F0}-\x{27FF}\x{2900}-\x{2982}\x{2983}\x{2984}\x{2985}\x{2986}\x{2987}\x{2988}\x{2989}\x{298A}\x{298B}\x{298C}\x{298D}\x{298E}\x{298F}\x{2990}\x{2991}\x{2992}\x{2993}\x{2994}\x{2995}\x{2996}\x{2997}\x{2998}\x{2999}-\x{29D7}\x{29D8}\x{29D9}\x{29DA}\x{29DB}\x{29DC}-\x{29FB}\x{29FC}\x{29FD}\x{29FE}-\x{2AFF}\x{2B00}-\x{2B2F}\x{2B30}-\x{2B44}\x{2B45}-\x{2B46}\x{2B47}-\x{2B4C}\x{2B4D}-\x{2B73}\x{2B76}-\x{2B95}\x{2B97}-\x{2BFF}\x{2CE5}-\x{2CEA}\x{2CEF}-\x{2CF1}\x{2CF9}-\x{2CFC}\x{2CFD}\x{2CFE}-\x{2CFF}\x{2D7F}\x{2DE0}-\x{2DFF}\x{2E00}-\x{2E01}\x{2E02}\x{2E03}\x{2E04}\x{2E05}\x{2E06}-\x{2E08}\x{2E09}\x{2E0A}\x{2E0B}\x{2E0C}\x{2E0D}\x{2E0E}-\x{2E16}\x{2E17}\x{2E18}-\x{2E19}\x{2E1A}\x{2E1B}\x{2E1C}\x{2E1D}\x{2E1E}-\x{2E1F}\x{2E20}\x{2E21}\x{2E22}\x{2E23}\x{2E24}\x{2E25}\x{2E26}\x{2E27}\x{2E28}\x{2E29}\x{2E2A}-\x{2E2E}\x{2E2F}\x{2E30}-\x{2E39}\x{2E3A}-\x{2E3B}\x{2E3C}-\x{2E3F}\x{2E40}\x{2E41}\x{2E42}\x{2E43}-\x{2E4F}\x{2E50}-\x{2E51}\x{2E52}\x{2E80}-\x{2E99}\x{2E9B}-\x{2EF3}\x{2F00}-\x{2FD5}\x{2FF0}-\x{2FFB}\x{3001}-\x{3003}\x{3004}\x{3008}\x{3009}\x{300A}\x{300B}\x{300C}\x{300D}\x{300E}\x{300F}\x{3010}\x{3011}\x{3012}-\x{3013}\x{3014}\x{3015}\x{3016}\x{3017}\x{3018}\x{3019}\x{301A}\x{301B}\x{301C}\x{301D}\x{301E}-\x{301F}\x{3020}\x{302A}-\x{302D}\x{3030}\x{3036}-\x{3037}\x{303D}\x{303E}-\x{303F}\x{3099}-\x{309A}\x{309B}-\x{309C}\x{30A0}\x{30FB}\x{31C0}-\x{31E3}\x{321D}-\x{321E}\x{3250}\x{3251}-\x{325F}\x{327C}-\x{327E}\x{32B1}-\x{32BF}\x{32CC}-\x{32CF}\x{3377}-\x{337A}\x{33DE}-\x{33DF}\x{33FF}\x{4DC0}-\x{4DFF}\x{A490}-\x{A4C6}\x{A60D}-\x{A60F}\x{A66F}\x{A670}-\x{A672}\x{A673}\x{A674}-\x{A67D}\x{A67E}\x{A67F}\x{A69E}-\x{A69F}\x{A6F0}-\x{A6F1}\x{A700}-\x{A716}\x{A717}-\x{A71F}\x{A720}-\x{A721}\x{A788}\x{A802}\x{A806}\x{A80B}\x{A825}-\x{A826}\x{A828}-\x{A82B}\x{A82C}\x{A838}\x{A839}\x{A874}-\x{A877}\x{A8C4}-\x{A8C5}\x{A8E0}-\x{A8F1}\x{A8FF}\x{A926}-\x{A92D}\x{A947}-\x{A951}\x{A980}-\x{A982}\x{A9B3}\x{A9B6}-\x{A9B9}\x{A9BC}-\x{A9BD}\x{A9E5}\x{AA29}-\x{AA2E}\x{AA31}-\x{AA32}\x{AA35}-\x{AA36}\x{AA43}\x{AA4C}\x{AA7C}\x{AAB0}\x{AAB2}-\x{AAB4}\x{AAB7}-\x{AAB8}\x{AABE}-\x{AABF}\x{AAC1}\x{AAEC}-\x{AAED}\x{AAF6}\x{AB6A}-\x{AB6B}\x{ABE5}\x{ABE8}\x{ABED}\x{FB1D}\x{FB1E}\x{FB1F}-\x{FB28}\x{FB29}\x{FB2A}-\x{FB36}\x{FB37}\x{FB38}-\x{FB3C}\x{FB3D}\x{FB3E}\x{FB3F}\x{FB40}-\x{FB41}\x{FB42}\x{FB43}-\x{FB44}\x{FB45}\x{FB46}-\x{FB4F}\x{FB50}-\x{FBB1}\x{FBB2}-\x{FBC1}\x{FBC2}-\x{FBD2}\x{FBD3}-\x{FD3D}\x{FD3E}\x{FD3F}\x{FD40}-\x{FD4F}\x{FD50}-\x{FD8F}\x{FD90}-\x{FD91}\x{FD92}-\x{FDC7}\x{FDC8}-\x{FDCF}\x{FDD0}-\x{FDEF}\x{FDF0}-\x{FDFB}\x{FDFC}\x{FDFD}\x{FDFE}-\x{FDFF}\x{FE00}-\x{FE0F}\x{FE10}-\x{FE16}\x{FE17}\x{FE18}\x{FE19}\x{FE20}-\x{FE2F}\x{FE30}\x{FE31}-\x{FE32}\x{FE33}-\x{FE34}\x{FE35}\x{FE36}\x{FE37}\x{FE38}\x{FE39}\x{FE3A}\x{FE3B}\x{FE3C}\x{FE3D}\x{FE3E}\x{FE3F}\x{FE40}\x{FE41}\x{FE42}\x{FE43}\x{FE44}\x{FE45}-\x{FE46}\x{FE47}\x{FE48}\x{FE49}-\x{FE4C}\x{FE4D}-\x{FE4F}\x{FE50}\x{FE51}\x{FE52}\x{FE54}\x{FE55}\x{FE56}-\x{FE57}\x{FE58}\x{FE59}\x{FE5A}\x{FE5B}\x{FE5C}\x{FE5D}\x{FE5E}\x{FE5F}\x{FE60}-\x{FE61}\x{FE62}\x{FE63}\x{FE64}-\x{FE66}\x{FE68}\x{FE69}\x{FE6A}\x{FE6B}\x{FE70}-\x{FE74}\x{FE75}\x{FE76}-\x{FEFC}\x{FEFD}-\x{FEFE}\x{FEFF}\x{FF01}-\x{FF02}\x{FF03}\x{FF04}\x{FF05}\x{FF06}-\x{FF07}\x{FF08}\x{FF09}\x{FF0A}\x{FF0B}\x{FF0C}\x{FF0D}\x{FF0E}-\x{FF0F}\x{FF10}-\x{FF19}\x{FF1A}\x{FF1B}\x{FF1C}-\x{FF1E}\x{FF1F}-\x{FF20}\x{FF3B}\x{FF3C}\x{FF3D}\x{FF3E}\x{FF3F}\x{FF40}\x{FF5B}\x{FF5C}\x{FF5D}\x{FF5E}\x{FF5F}\x{FF60}\x{FF61}\x{FF62}\x{FF63}\x{FF64}-\x{FF65}\x{FFE0}-\x{FFE1}\x{FFE2}\x{FFE3}\x{FFE4}\x{FFE5}-\x{FFE6}\x{FFE8}\x{FFE9}-\x{FFEC}\x{FFED}-\x{FFEE}\x{FFF0}-\x{FFF8}\x{FFF9}-\x{FFFB}\x{FFFC}-\x{FFFD}\x{FFFE}-\x{FFFF}\x{10101}\x{10140}-\x{10174}\x{10175}-\x{10178}\x{10179}-\x{10189}\x{1018A}-\x{1018B}\x{1018C}\x{10190}-\x{1019C}\x{101A0}\x{101FD}\x{102E0}\x{102E1}-\x{102FB}\x{10376}-\x{1037A}\x{10800}-\x{10805}\x{10806}-\x{10807}\x{10808}\x{10809}\x{1080A}-\x{10835}\x{10836}\x{10837}-\x{10838}\x{10839}-\x{1083B}\x{1083C}\x{1083D}-\x{1083E}\x{1083F}-\x{10855}\x{10856}\x{10857}\x{10858}-\x{1085F}\x{10860}-\x{10876}\x{10877}-\x{10878}\x{10879}-\x{1087F}\x{10880}-\x{1089E}\x{1089F}-\x{108A6}\x{108A7}-\x{108AF}\x{108B0}-\x{108DF}\x{108E0}-\x{108F2}\x{108F3}\x{108F4}-\x{108F5}\x{108F6}-\x{108FA}\x{108FB}-\x{108FF}\x{10900}-\x{10915}\x{10916}-\x{1091B}\x{1091C}-\x{1091E}\x{1091F}\x{10920}-\x{10939}\x{1093A}-\x{1093E}\x{1093F}\x{10940}-\x{1097F}\x{10980}-\x{109B7}\x{109B8}-\x{109BB}\x{109BC}-\x{109BD}\x{109BE}-\x{109BF}\x{109C0}-\x{109CF}\x{109D0}-\x{109D1}\x{109D2}-\x{109FF}\x{10A00}\x{10A01}-\x{10A03}\x{10A04}\x{10A05}-\x{10A06}\x{10A07}-\x{10A0B}\x{10A0C}-\x{10A0F}\x{10A10}-\x{10A13}\x{10A14}\x{10A15}-\x{10A17}\x{10A18}\x{10A19}-\x{10A35}\x{10A36}-\x{10A37}\x{10A38}-\x{10A3A}\x{10A3B}-\x{10A3E}\x{10A3F}\x{10A40}-\x{10A48}\x{10A49}-\x{10A4F}\x{10A50}-\x{10A58}\x{10A59}-\x{10A5F}\x{10A60}-\x{10A7C}\x{10A7D}-\x{10A7E}\x{10A7F}\x{10A80}-\x{10A9C}\x{10A9D}-\x{10A9F}\x{10AA0}-\x{10ABF}\x{10AC0}-\x{10AC7}\x{10AC8}\x{10AC9}-\x{10AE4}\x{10AE5}-\x{10AE6}\x{10AE7}-\x{10AEA}\x{10AEB}-\x{10AEF}\x{10AF0}-\x{10AF6}\x{10AF7}-\x{10AFF}\x{10B00}-\x{10B35}\x{10B36}-\x{10B38}\x{10B39}-\x{10B3F}\x{10B40}-\x{10B55}\x{10B56}-\x{10B57}\x{10B58}-\x{10B5F}\x{10B60}-\x{10B72}\x{10B73}-\x{10B77}\x{10B78}-\x{10B7F}\x{10B80}-\x{10B91}\x{10B92}-\x{10B98}\x{10B99}-\x{10B9C}\x{10B9D}-\x{10BA8}\x{10BA9}-\x{10BAF}\x{10BB0}-\x{10BFF}\x{10C00}-\x{10C48}\x{10C49}-\x{10C7F}\x{10C80}-\x{10CB2}\x{10CB3}-\x{10CBF}\x{10CC0}-\x{10CF2}\x{10CF3}-\x{10CF9}\x{10CFA}-\x{10CFF}\x{10D00}-\x{10D23}\x{10D24}-\x{10D27}\x{10D28}-\x{10D2F}\x{10D30}-\x{10D39}\x{10D3A}-\x{10D3F}\x{10D40}-\x{10E5F}\x{10E60}-\x{10E7E}\x{10E7F}\x{10E80}-\x{10EA9}\x{10EAA}\x{10EAB}-\x{10EAC}\x{10EAD}\x{10EAE}-\x{10EAF}\x{10EB0}-\x{10EB1}\x{10EB2}-\x{10EFF}\x{10F00}-\x{10F1C}\x{10F1D}-\x{10F26}\x{10F27}\x{10F28}-\x{10F2F}\x{10F30}-\x{10F45}\x{10F46}-\x{10F50}\x{10F51}-\x{10F54}\x{10F55}-\x{10F59}\x{10F5A}-\x{10F6F}\x{10F70}-\x{10FAF}\x{10FB0}-\x{10FC4}\x{10FC5}-\x{10FCB}\x{10FCC}-\x{10FDF}\x{10FE0}-\x{10FF6}\x{10FF7}-\x{10FFF}\x{11001}\x{11038}-\x{11046}\x{11052}-\x{11065}\x{1107F}-\x{11081}\x{110B3}-\x{110B6}\x{110B9}-\x{110BA}\x{11100}-\x{11102}\x{11127}-\x{1112B}\x{1112D}-\x{11134}\x{11173}\x{11180}-\x{11181}\x{111B6}-\x{111BE}\x{111C9}-\x{111CC}\x{111CF}\x{1122F}-\x{11231}\x{11234}\x{11236}-\x{11237}\x{1123E}\x{112DF}\x{112E3}-\x{112EA}\x{11300}-\x{11301}\x{1133B}-\x{1133C}\x{11340}\x{11366}-\x{1136C}\x{11370}-\x{11374}\x{11438}-\x{1143F}\x{11442}-\x{11444}\x{11446}\x{1145E}\x{114B3}-\x{114B8}\x{114BA}\x{114BF}-\x{114C0}\x{114C2}-\x{114C3}\x{115B2}-\x{115B5}\x{115BC}-\x{115BD}\x{115BF}-\x{115C0}\x{115DC}-\x{115DD}\x{11633}-\x{1163A}\x{1163D}\x{1163F}-\x{11640}\x{11660}-\x{1166C}\x{116AB}\x{116AD}\x{116B0}-\x{116B5}\x{116B7}\x{1171D}-\x{1171F}\x{11722}-\x{11725}\x{11727}-\x{1172B}\x{1182F}-\x{11837}\x{11839}-\x{1183A}\x{1193B}-\x{1193C}\x{1193E}\x{11943}\x{119D4}-\x{119D7}\x{119DA}-\x{119DB}\x{119E0}\x{11A01}-\x{11A06}\x{11A09}-\x{11A0A}\x{11A33}-\x{11A38}\x{11A3B}-\x{11A3E}\x{11A47}\x{11A51}-\x{11A56}\x{11A59}-\x{11A5B}\x{11A8A}-\x{11A96}\x{11A98}-\x{11A99}\x{11C30}-\x{11C36}\x{11C38}-\x{11C3D}\x{11C92}-\x{11CA7}\x{11CAA}-\x{11CB0}\x{11CB2}-\x{11CB3}\x{11CB5}-\x{11CB6}\x{11D31}-\x{11D36}\x{11D3A}\x{11D3C}-\x{11D3D}\x{11D3F}-\x{11D45}\x{11D47}\x{11D90}-\x{11D91}\x{11D95}\x{11D97}\x{11EF3}-\x{11EF4}\x{11FD5}-\x{11FDC}\x{11FDD}-\x{11FE0}\x{11FE1}-\x{11FF1}\x{16AF0}-\x{16AF4}\x{16B30}-\x{16B36}\x{16F4F}\x{16F8F}-\x{16F92}\x{16FE2}\x{16FE4}\x{1BC9D}-\x{1BC9E}\x{1BCA0}-\x{1BCA3}\x{1D167}-\x{1D169}\x{1D173}-\x{1D17A}\x{1D17B}-\x{1D182}\x{1D185}-\x{1D18B}\x{1D1AA}-\x{1D1AD}\x{1D200}-\x{1D241}\x{1D242}-\x{1D244}\x{1D245}\x{1D300}-\x{1D356}\x{1D6DB}\x{1D715}\x{1D74F}\x{1D789}\x{1D7C3}\x{1D7CE}-\x{1D7FF}\x{1DA00}-\x{1DA36}\x{1DA3B}-\x{1DA6C}\x{1DA75}\x{1DA84}\x{1DA9B}-\x{1DA9F}\x{1DAA1}-\x{1DAAF}\x{1E000}-\x{1E006}\x{1E008}-\x{1E018}\x{1E01B}-\x{1E021}\x{1E023}-\x{1E024}\x{1E026}-\x{1E02A}\x{1E130}-\x{1E136}\x{1E2EC}-\x{1E2EF}\x{1E2FF}\x{1E800}-\x{1E8C4}\x{1E8C5}-\x{1E8C6}\x{1E8C7}-\x{1E8CF}\x{1E8D0}-\x{1E8D6}\x{1E8D7}-\x{1E8FF}\x{1E900}-\x{1E943}\x{1E944}-\x{1E94A}\x{1E94B}\x{1E94C}-\x{1E94F}\x{1E950}-\x{1E959}\x{1E95A}-\x{1E95D}\x{1E95E}-\x{1E95F}\x{1E960}-\x{1EC6F}\x{1EC70}\x{1EC71}-\x{1ECAB}\x{1ECAC}\x{1ECAD}-\x{1ECAF}\x{1ECB0}\x{1ECB1}-\x{1ECB4}\x{1ECB5}-\x{1ECBF}\x{1ECC0}-\x{1ECFF}\x{1ED00}\x{1ED01}-\x{1ED2D}\x{1ED2E}\x{1ED2F}-\x{1ED3D}\x{1ED3E}-\x{1ED4F}\x{1ED50}-\x{1EDFF}\x{1EE00}-\x{1EE03}\x{1EE04}\x{1EE05}-\x{1EE1F}\x{1EE20}\x{1EE21}-\x{1EE22}\x{1EE23}\x{1EE24}\x{1EE25}-\x{1EE26}\x{1EE27}\x{1EE28}\x{1EE29}-\x{1EE32}\x{1EE33}\x{1EE34}-\x{1EE37}\x{1EE38}\x{1EE39}\x{1EE3A}\x{1EE3B}\x{1EE3C}-\x{1EE41}\x{1EE42}\x{1EE43}-\x{1EE46}\x{1EE47}\x{1EE48}\x{1EE49}\x{1EE4A}\x{1EE4B}\x{1EE4C}\x{1EE4D}-\x{1EE4F}\x{1EE50}\x{1EE51}-\x{1EE52}\x{1EE53}\x{1EE54}\x{1EE55}-\x{1EE56}\x{1EE57}\x{1EE58}\x{1EE59}\x{1EE5A}\x{1EE5B}\x{1EE5C}\x{1EE5D}\x{1EE5E}\x{1EE5F}\x{1EE60}\x{1EE61}-\x{1EE62}\x{1EE63}\x{1EE64}\x{1EE65}-\x{1EE66}\x{1EE67}-\x{1EE6A}\x{1EE6B}\x{1EE6C}-\x{1EE72}\x{1EE73}\x{1EE74}-\x{1EE77}\x{1EE78}\x{1EE79}-\x{1EE7C}\x{1EE7D}\x{1EE7E}\x{1EE7F}\x{1EE80}-\x{1EE89}\x{1EE8A}\x{1EE8B}-\x{1EE9B}\x{1EE9C}-\x{1EEA0}\x{1EEA1}-\x{1EEA3}\x{1EEA4}\x{1EEA5}-\x{1EEA9}\x{1EEAA}\x{1EEAB}-\x{1EEBB}\x{1EEBC}-\x{1EEEF}\x{1EEF0}-\x{1EEF1}\x{1EEF2}-\x{1EEFF}\x{1EF00}-\x{1EFFF}\x{1F000}-\x{1F02B}\x{1F030}-\x{1F093}\x{1F0A0}-\x{1F0AE}\x{1F0B1}-\x{1F0BF}\x{1F0C1}-\x{1F0CF}\x{1F0D1}-\x{1F0F5}\x{1F100}-\x{1F10A}\x{1F10B}-\x{1F10C}\x{1F10D}-\x{1F10F}\x{1F12F}\x{1F16A}-\x{1F16F}\x{1F1AD}\x{1F260}-\x{1F265}\x{1F300}-\x{1F3FA}\x{1F3FB}-\x{1F3FF}\x{1F400}-\x{1F6D7}\x{1F6E0}-\x{1F6EC}\x{1F6F0}-\x{1F6FC}\x{1F700}-\x{1F773}\x{1F780}-\x{1F7D8}\x{1F7E0}-\x{1F7EB}\x{1F800}-\x{1F80B}\x{1F810}-\x{1F847}\x{1F850}-\x{1F859}\x{1F860}-\x{1F887}\x{1F890}-\x{1F8AD}\x{1F8B0}-\x{1F8B1}\x{1F900}-\x{1F978}\x{1F97A}-\x{1F9CB}\x{1F9CD}-\x{1FA53}\x{1FA60}-\x{1FA6D}\x{1FA70}-\x{1FA74}\x{1FA78}-\x{1FA7A}\x{1FA80}-\x{1FA86}\x{1FA90}-\x{1FAA8}\x{1FAB0}-\x{1FAB6}\x{1FAC0}-\x{1FAC2}\x{1FAD0}-\x{1FAD6}\x{1FB00}-\x{1FB92}\x{1FB94}-\x{1FBCA}\x{1FBF0}-\x{1FBF9}\x{1FFFE}-\x{1FFFF}\x{2FFFE}-\x{2FFFF}\x{3FFFE}-\x{3FFFF}\x{4FFFE}-\x{4FFFF}\x{5FFFE}-\x{5FFFF}\x{6FFFE}-\x{6FFFF}\x{7FFFE}-\x{7FFFF}\x{8FFFE}-\x{8FFFF}\x{9FFFE}-\x{9FFFF}\x{AFFFE}-\x{AFFFF}\x{BFFFE}-\x{BFFFF}\x{CFFFE}-\x{CFFFF}\x{DFFFE}-\x{E0000}\x{E0001}\x{E0002}-\x{E001F}\x{E0020}-\x{E007F}\x{E0080}-\x{E00FF}\x{E0100}-\x{E01EF}\x{E01F0}-\x{E0FFF}\x{EFFFE}-\x{EFFFF}\x{FFFFE}-\x{FFFFF}\x{10FFFE}-\x{10FFFF}]/u';
17
+ const BIDI_STEP_3 = '/[\x{0030}-\x{0039}\x{00B2}-\x{00B3}\x{00B9}\x{0590}\x{05BE}\x{05C0}\x{05C3}\x{05C6}\x{05C8}-\x{05CF}\x{05D0}-\x{05EA}\x{05EB}-\x{05EE}\x{05EF}-\x{05F2}\x{05F3}-\x{05F4}\x{05F5}-\x{05FF}\x{0600}-\x{0605}\x{0608}\x{060B}\x{060D}\x{061B}\x{061C}\x{061D}\x{061E}-\x{061F}\x{0620}-\x{063F}\x{0640}\x{0641}-\x{064A}\x{0660}-\x{0669}\x{066B}-\x{066C}\x{066D}\x{066E}-\x{066F}\x{0671}-\x{06D3}\x{06D4}\x{06D5}\x{06DD}\x{06E5}-\x{06E6}\x{06EE}-\x{06EF}\x{06F0}-\x{06F9}\x{06FA}-\x{06FC}\x{06FD}-\x{06FE}\x{06FF}\x{0700}-\x{070D}\x{070E}\x{070F}\x{0710}\x{0712}-\x{072F}\x{074B}-\x{074C}\x{074D}-\x{07A5}\x{07B1}\x{07B2}-\x{07BF}\x{07C0}-\x{07C9}\x{07CA}-\x{07EA}\x{07F4}-\x{07F5}\x{07FA}\x{07FB}-\x{07FC}\x{07FE}-\x{07FF}\x{0800}-\x{0815}\x{081A}\x{0824}\x{0828}\x{082E}-\x{082F}\x{0830}-\x{083E}\x{083F}\x{0840}-\x{0858}\x{085C}-\x{085D}\x{085E}\x{085F}\x{0860}-\x{086A}\x{086B}-\x{086F}\x{0870}-\x{089F}\x{08A0}-\x{08B4}\x{08B5}\x{08B6}-\x{08C7}\x{08C8}-\x{08D2}\x{08E2}\x{200F}\x{2070}\x{2074}-\x{2079}\x{2080}-\x{2089}\x{2488}-\x{249B}\x{FB1D}\x{FB1F}-\x{FB28}\x{FB2A}-\x{FB36}\x{FB37}\x{FB38}-\x{FB3C}\x{FB3D}\x{FB3E}\x{FB3F}\x{FB40}-\x{FB41}\x{FB42}\x{FB43}-\x{FB44}\x{FB45}\x{FB46}-\x{FB4F}\x{FB50}-\x{FBB1}\x{FBB2}-\x{FBC1}\x{FBC2}-\x{FBD2}\x{FBD3}-\x{FD3D}\x{FD40}-\x{FD4F}\x{FD50}-\x{FD8F}\x{FD90}-\x{FD91}\x{FD92}-\x{FDC7}\x{FDC8}-\x{FDCF}\x{FDF0}-\x{FDFB}\x{FDFC}\x{FDFE}-\x{FDFF}\x{FE70}-\x{FE74}\x{FE75}\x{FE76}-\x{FEFC}\x{FEFD}-\x{FEFE}\x{FF10}-\x{FF19}\x{102E1}-\x{102FB}\x{10800}-\x{10805}\x{10806}-\x{10807}\x{10808}\x{10809}\x{1080A}-\x{10835}\x{10836}\x{10837}-\x{10838}\x{10839}-\x{1083B}\x{1083C}\x{1083D}-\x{1083E}\x{1083F}-\x{10855}\x{10856}\x{10857}\x{10858}-\x{1085F}\x{10860}-\x{10876}\x{10877}-\x{10878}\x{10879}-\x{1087F}\x{10880}-\x{1089E}\x{1089F}-\x{108A6}\x{108A7}-\x{108AF}\x{108B0}-\x{108DF}\x{108E0}-\x{108F2}\x{108F3}\x{108F4}-\x{108F5}\x{108F6}-\x{108FA}\x{108FB}-\x{108FF}\x{10900}-\x{10915}\x{10916}-\x{1091B}\x{1091C}-\x{1091E}\x{10920}-\x{10939}\x{1093A}-\x{1093E}\x{1093F}\x{10940}-\x{1097F}\x{10980}-\x{109B7}\x{109B8}-\x{109BB}\x{109BC}-\x{109BD}\x{109BE}-\x{109BF}\x{109C0}-\x{109CF}\x{109D0}-\x{109D1}\x{109D2}-\x{109FF}\x{10A00}\x{10A04}\x{10A07}-\x{10A0B}\x{10A10}-\x{10A13}\x{10A14}\x{10A15}-\x{10A17}\x{10A18}\x{10A19}-\x{10A35}\x{10A36}-\x{10A37}\x{10A3B}-\x{10A3E}\x{10A40}-\x{10A48}\x{10A49}-\x{10A4F}\x{10A50}-\x{10A58}\x{10A59}-\x{10A5F}\x{10A60}-\x{10A7C}\x{10A7D}-\x{10A7E}\x{10A7F}\x{10A80}-\x{10A9C}\x{10A9D}-\x{10A9F}\x{10AA0}-\x{10ABF}\x{10AC0}-\x{10AC7}\x{10AC8}\x{10AC9}-\x{10AE4}\x{10AE7}-\x{10AEA}\x{10AEB}-\x{10AEF}\x{10AF0}-\x{10AF6}\x{10AF7}-\x{10AFF}\x{10B00}-\x{10B35}\x{10B36}-\x{10B38}\x{10B40}-\x{10B55}\x{10B56}-\x{10B57}\x{10B58}-\x{10B5F}\x{10B60}-\x{10B72}\x{10B73}-\x{10B77}\x{10B78}-\x{10B7F}\x{10B80}-\x{10B91}\x{10B92}-\x{10B98}\x{10B99}-\x{10B9C}\x{10B9D}-\x{10BA8}\x{10BA9}-\x{10BAF}\x{10BB0}-\x{10BFF}\x{10C00}-\x{10C48}\x{10C49}-\x{10C7F}\x{10C80}-\x{10CB2}\x{10CB3}-\x{10CBF}\x{10CC0}-\x{10CF2}\x{10CF3}-\x{10CF9}\x{10CFA}-\x{10CFF}\x{10D00}-\x{10D23}\x{10D28}-\x{10D2F}\x{10D30}-\x{10D39}\x{10D3A}-\x{10D3F}\x{10D40}-\x{10E5F}\x{10E60}-\x{10E7E}\x{10E7F}\x{10E80}-\x{10EA9}\x{10EAA}\x{10EAD}\x{10EAE}-\x{10EAF}\x{10EB0}-\x{10EB1}\x{10EB2}-\x{10EFF}\x{10F00}-\x{10F1C}\x{10F1D}-\x{10F26}\x{10F27}\x{10F28}-\x{10F2F}\x{10F30}-\x{10F45}\x{10F51}-\x{10F54}\x{10F55}-\x{10F59}\x{10F5A}-\x{10F6F}\x{10F70}-\x{10FAF}\x{10FB0}-\x{10FC4}\x{10FC5}-\x{10FCB}\x{10FCC}-\x{10FDF}\x{10FE0}-\x{10FF6}\x{10FF7}-\x{10FFF}\x{1D7CE}-\x{1D7FF}\x{1E800}-\x{1E8C4}\x{1E8C5}-\x{1E8C6}\x{1E8C7}-\x{1E8CF}\x{1E8D7}-\x{1E8FF}\x{1E900}-\x{1E943}\x{1E94B}\x{1E94C}-\x{1E94F}\x{1E950}-\x{1E959}\x{1E95A}-\x{1E95D}\x{1E95E}-\x{1E95F}\x{1E960}-\x{1EC6F}\x{1EC70}\x{1EC71}-\x{1ECAB}\x{1ECAC}\x{1ECAD}-\x{1ECAF}\x{1ECB0}\x{1ECB1}-\x{1ECB4}\x{1ECB5}-\x{1ECBF}\x{1ECC0}-\x{1ECFF}\x{1ED00}\x{1ED01}-\x{1ED2D}\x{1ED2E}\x{1ED2F}-\x{1ED3D}\x{1ED3E}-\x{1ED4F}\x{1ED50}-\x{1EDFF}\x{1EE00}-\x{1EE03}\x{1EE04}\x{1EE05}-\x{1EE1F}\x{1EE20}\x{1EE21}-\x{1EE22}\x{1EE23}\x{1EE24}\x{1EE25}-\x{1EE26}\x{1EE27}\x{1EE28}\x{1EE29}-\x{1EE32}\x{1EE33}\x{1EE34}-\x{1EE37}\x{1EE38}\x{1EE39}\x{1EE3A}\x{1EE3B}\x{1EE3C}-\x{1EE41}\x{1EE42}\x{1EE43}-\x{1EE46}\x{1EE47}\x{1EE48}\x{1EE49}\x{1EE4A}\x{1EE4B}\x{1EE4C}\x{1EE4D}-\x{1EE4F}\x{1EE50}\x{1EE51}-\x{1EE52}\x{1EE53}\x{1EE54}\x{1EE55}-\x{1EE56}\x{1EE57}\x{1EE58}\x{1EE59}\x{1EE5A}\x{1EE5B}\x{1EE5C}\x{1EE5D}\x{1EE5E}\x{1EE5F}\x{1EE60}\x{1EE61}-\x{1EE62}\x{1EE63}\x{1EE64}\x{1EE65}-\x{1EE66}\x{1EE67}-\x{1EE6A}\x{1EE6B}\x{1EE6C}-\x{1EE72}\x{1EE73}\x{1EE74}-\x{1EE77}\x{1EE78}\x{1EE79}-\x{1EE7C}\x{1EE7D}\x{1EE7E}\x{1EE7F}\x{1EE80}-\x{1EE89}\x{1EE8A}\x{1EE8B}-\x{1EE9B}\x{1EE9C}-\x{1EEA0}\x{1EEA1}-\x{1EEA3}\x{1EEA4}\x{1EEA5}-\x{1EEA9}\x{1EEAA}\x{1EEAB}-\x{1EEBB}\x{1EEBC}-\x{1EEEF}\x{1EEF2}-\x{1EEFF}\x{1EF00}-\x{1EFFF}\x{1F100}-\x{1F10A}\x{1FBF0}-\x{1FBF9}][\x{0300}-\x{036F}\x{0483}-\x{0487}\x{0488}-\x{0489}\x{0591}-\x{05BD}\x{05BF}\x{05C1}-\x{05C2}\x{05C4}-\x{05C5}\x{05C7}\x{0610}-\x{061A}\x{064B}-\x{065F}\x{0670}\x{06D6}-\x{06DC}\x{06DF}-\x{06E4}\x{06E7}-\x{06E8}\x{06EA}-\x{06ED}\x{0711}\x{0730}-\x{074A}\x{07A6}-\x{07B0}\x{07EB}-\x{07F3}\x{07FD}\x{0816}-\x{0819}\x{081B}-\x{0823}\x{0825}-\x{0827}\x{0829}-\x{082D}\x{0859}-\x{085B}\x{08D3}-\x{08E1}\x{08E3}-\x{0902}\x{093A}\x{093C}\x{0941}-\x{0948}\x{094D}\x{0951}-\x{0957}\x{0962}-\x{0963}\x{0981}\x{09BC}\x{09C1}-\x{09C4}\x{09CD}\x{09E2}-\x{09E3}\x{09FE}\x{0A01}-\x{0A02}\x{0A3C}\x{0A41}-\x{0A42}\x{0A47}-\x{0A48}\x{0A4B}-\x{0A4D}\x{0A51}\x{0A70}-\x{0A71}\x{0A75}\x{0A81}-\x{0A82}\x{0ABC}\x{0AC1}-\x{0AC5}\x{0AC7}-\x{0AC8}\x{0ACD}\x{0AE2}-\x{0AE3}\x{0AFA}-\x{0AFF}\x{0B01}\x{0B3C}\x{0B3F}\x{0B41}-\x{0B44}\x{0B4D}\x{0B55}-\x{0B56}\x{0B62}-\x{0B63}\x{0B82}\x{0BC0}\x{0BCD}\x{0C00}\x{0C04}\x{0C3E}-\x{0C40}\x{0C46}-\x{0C48}\x{0C4A}-\x{0C4D}\x{0C55}-\x{0C56}\x{0C62}-\x{0C63}\x{0C81}\x{0CBC}\x{0CCC}-\x{0CCD}\x{0CE2}-\x{0CE3}\x{0D00}-\x{0D01}\x{0D3B}-\x{0D3C}\x{0D41}-\x{0D44}\x{0D4D}\x{0D62}-\x{0D63}\x{0D81}\x{0DCA}\x{0DD2}-\x{0DD4}\x{0DD6}\x{0E31}\x{0E34}-\x{0E3A}\x{0E47}-\x{0E4E}\x{0EB1}\x{0EB4}-\x{0EBC}\x{0EC8}-\x{0ECD}\x{0F18}-\x{0F19}\x{0F35}\x{0F37}\x{0F39}\x{0F71}-\x{0F7E}\x{0F80}-\x{0F84}\x{0F86}-\x{0F87}\x{0F8D}-\x{0F97}\x{0F99}-\x{0FBC}\x{0FC6}\x{102D}-\x{1030}\x{1032}-\x{1037}\x{1039}-\x{103A}\x{103D}-\x{103E}\x{1058}-\x{1059}\x{105E}-\x{1060}\x{1071}-\x{1074}\x{1082}\x{1085}-\x{1086}\x{108D}\x{109D}\x{135D}-\x{135F}\x{1712}-\x{1714}\x{1732}-\x{1734}\x{1752}-\x{1753}\x{1772}-\x{1773}\x{17B4}-\x{17B5}\x{17B7}-\x{17BD}\x{17C6}\x{17C9}-\x{17D3}\x{17DD}\x{180B}-\x{180D}\x{1885}-\x{1886}\x{18A9}\x{1920}-\x{1922}\x{1927}-\x{1928}\x{1932}\x{1939}-\x{193B}\x{1A17}-\x{1A18}\x{1A1B}\x{1A56}\x{1A58}-\x{1A5E}\x{1A60}\x{1A62}\x{1A65}-\x{1A6C}\x{1A73}-\x{1A7C}\x{1A7F}\x{1AB0}-\x{1ABD}\x{1ABE}\x{1ABF}-\x{1AC0}\x{1B00}-\x{1B03}\x{1B34}\x{1B36}-\x{1B3A}\x{1B3C}\x{1B42}\x{1B6B}-\x{1B73}\x{1B80}-\x{1B81}\x{1BA2}-\x{1BA5}\x{1BA8}-\x{1BA9}\x{1BAB}-\x{1BAD}\x{1BE6}\x{1BE8}-\x{1BE9}\x{1BED}\x{1BEF}-\x{1BF1}\x{1C2C}-\x{1C33}\x{1C36}-\x{1C37}\x{1CD0}-\x{1CD2}\x{1CD4}-\x{1CE0}\x{1CE2}-\x{1CE8}\x{1CED}\x{1CF4}\x{1CF8}-\x{1CF9}\x{1DC0}-\x{1DF9}\x{1DFB}-\x{1DFF}\x{20D0}-\x{20DC}\x{20DD}-\x{20E0}\x{20E1}\x{20E2}-\x{20E4}\x{20E5}-\x{20F0}\x{2CEF}-\x{2CF1}\x{2D7F}\x{2DE0}-\x{2DFF}\x{302A}-\x{302D}\x{3099}-\x{309A}\x{A66F}\x{A670}-\x{A672}\x{A674}-\x{A67D}\x{A69E}-\x{A69F}\x{A6F0}-\x{A6F1}\x{A802}\x{A806}\x{A80B}\x{A825}-\x{A826}\x{A82C}\x{A8C4}-\x{A8C5}\x{A8E0}-\x{A8F1}\x{A8FF}\x{A926}-\x{A92D}\x{A947}-\x{A951}\x{A980}-\x{A982}\x{A9B3}\x{A9B6}-\x{A9B9}\x{A9BC}-\x{A9BD}\x{A9E5}\x{AA29}-\x{AA2E}\x{AA31}-\x{AA32}\x{AA35}-\x{AA36}\x{AA43}\x{AA4C}\x{AA7C}\x{AAB0}\x{AAB2}-\x{AAB4}\x{AAB7}-\x{AAB8}\x{AABE}-\x{AABF}\x{AAC1}\x{AAEC}-\x{AAED}\x{AAF6}\x{ABE5}\x{ABE8}\x{ABED}\x{FB1E}\x{FE00}-\x{FE0F}\x{FE20}-\x{FE2F}\x{101FD}\x{102E0}\x{10376}-\x{1037A}\x{10A01}-\x{10A03}\x{10A05}-\x{10A06}\x{10A0C}-\x{10A0F}\x{10A38}-\x{10A3A}\x{10A3F}\x{10AE5}-\x{10AE6}\x{10D24}-\x{10D27}\x{10EAB}-\x{10EAC}\x{10F46}-\x{10F50}\x{11001}\x{11038}-\x{11046}\x{1107F}-\x{11081}\x{110B3}-\x{110B6}\x{110B9}-\x{110BA}\x{11100}-\x{11102}\x{11127}-\x{1112B}\x{1112D}-\x{11134}\x{11173}\x{11180}-\x{11181}\x{111B6}-\x{111BE}\x{111C9}-\x{111CC}\x{111CF}\x{1122F}-\x{11231}\x{11234}\x{11236}-\x{11237}\x{1123E}\x{112DF}\x{112E3}-\x{112EA}\x{11300}-\x{11301}\x{1133B}-\x{1133C}\x{11340}\x{11366}-\x{1136C}\x{11370}-\x{11374}\x{11438}-\x{1143F}\x{11442}-\x{11444}\x{11446}\x{1145E}\x{114B3}-\x{114B8}\x{114BA}\x{114BF}-\x{114C0}\x{114C2}-\x{114C3}\x{115B2}-\x{115B5}\x{115BC}-\x{115BD}\x{115BF}-\x{115C0}\x{115DC}-\x{115DD}\x{11633}-\x{1163A}\x{1163D}\x{1163F}-\x{11640}\x{116AB}\x{116AD}\x{116B0}-\x{116B5}\x{116B7}\x{1171D}-\x{1171F}\x{11722}-\x{11725}\x{11727}-\x{1172B}\x{1182F}-\x{11837}\x{11839}-\x{1183A}\x{1193B}-\x{1193C}\x{1193E}\x{11943}\x{119D4}-\x{119D7}\x{119DA}-\x{119DB}\x{119E0}\x{11A01}-\x{11A06}\x{11A09}-\x{11A0A}\x{11A33}-\x{11A38}\x{11A3B}-\x{11A3E}\x{11A47}\x{11A51}-\x{11A56}\x{11A59}-\x{11A5B}\x{11A8A}-\x{11A96}\x{11A98}-\x{11A99}\x{11C30}-\x{11C36}\x{11C38}-\x{11C3D}\x{11C92}-\x{11CA7}\x{11CAA}-\x{11CB0}\x{11CB2}-\x{11CB3}\x{11CB5}-\x{11CB6}\x{11D31}-\x{11D36}\x{11D3A}\x{11D3C}-\x{11D3D}\x{11D3F}-\x{11D45}\x{11D47}\x{11D90}-\x{11D91}\x{11D95}\x{11D97}\x{11EF3}-\x{11EF4}\x{16AF0}-\x{16AF4}\x{16B30}-\x{16B36}\x{16F4F}\x{16F8F}-\x{16F92}\x{16FE4}\x{1BC9D}-\x{1BC9E}\x{1D167}-\x{1D169}\x{1D17B}-\x{1D182}\x{1D185}-\x{1D18B}\x{1D1AA}-\x{1D1AD}\x{1D242}-\x{1D244}\x{1DA00}-\x{1DA36}\x{1DA3B}-\x{1DA6C}\x{1DA75}\x{1DA84}\x{1DA9B}-\x{1DA9F}\x{1DAA1}-\x{1DAAF}\x{1E000}-\x{1E006}\x{1E008}-\x{1E018}\x{1E01B}-\x{1E021}\x{1E023}-\x{1E024}\x{1E026}-\x{1E02A}\x{1E130}-\x{1E136}\x{1E2EC}-\x{1E2EF}\x{1E8D0}-\x{1E8D6}\x{1E944}-\x{1E94A}\x{E0100}-\x{E01EF}]*$/u';
18
+ const BIDI_STEP_4_AN = '/[\x{0600}-\x{0605}\x{0660}-\x{0669}\x{066B}-\x{066C}\x{06DD}\x{08E2}\x{10D30}-\x{10D39}\x{10E60}-\x{10E7E}]/u';
19
+ const BIDI_STEP_4_EN = '/[\x{0030}-\x{0039}\x{00B2}-\x{00B3}\x{00B9}\x{06F0}-\x{06F9}\x{2070}\x{2074}-\x{2079}\x{2080}-\x{2089}\x{2488}-\x{249B}\x{FF10}-\x{FF19}\x{102E1}-\x{102FB}\x{1D7CE}-\x{1D7FF}\x{1F100}-\x{1F10A}\x{1FBF0}-\x{1FBF9}]/u';
20
+ const BIDI_STEP_5 = '/[\x{0009}\x{000A}\x{000B}\x{000C}\x{000D}\x{001C}-\x{001E}\x{001F}\x{0020}\x{0085}\x{0590}\x{05BE}\x{05C0}\x{05C3}\x{05C6}\x{05C8}-\x{05CF}\x{05D0}-\x{05EA}\x{05EB}-\x{05EE}\x{05EF}-\x{05F2}\x{05F3}-\x{05F4}\x{05F5}-\x{05FF}\x{0600}-\x{0605}\x{0608}\x{060B}\x{060D}\x{061B}\x{061C}\x{061D}\x{061E}-\x{061F}\x{0620}-\x{063F}\x{0640}\x{0641}-\x{064A}\x{0660}-\x{0669}\x{066B}-\x{066C}\x{066D}\x{066E}-\x{066F}\x{0671}-\x{06D3}\x{06D4}\x{06D5}\x{06DD}\x{06E5}-\x{06E6}\x{06EE}-\x{06EF}\x{06FA}-\x{06FC}\x{06FD}-\x{06FE}\x{06FF}\x{0700}-\x{070D}\x{070E}\x{070F}\x{0710}\x{0712}-\x{072F}\x{074B}-\x{074C}\x{074D}-\x{07A5}\x{07B1}\x{07B2}-\x{07BF}\x{07C0}-\x{07C9}\x{07CA}-\x{07EA}\x{07F4}-\x{07F5}\x{07FA}\x{07FB}-\x{07FC}\x{07FE}-\x{07FF}\x{0800}-\x{0815}\x{081A}\x{0824}\x{0828}\x{082E}-\x{082F}\x{0830}-\x{083E}\x{083F}\x{0840}-\x{0858}\x{085C}-\x{085D}\x{085E}\x{085F}\x{0860}-\x{086A}\x{086B}-\x{086F}\x{0870}-\x{089F}\x{08A0}-\x{08B4}\x{08B5}\x{08B6}-\x{08C7}\x{08C8}-\x{08D2}\x{08E2}\x{1680}\x{2000}-\x{200A}\x{200F}\x{2028}\x{2029}\x{202A}\x{202B}\x{202C}\x{202D}\x{202E}\x{205F}\x{2066}\x{2067}\x{2068}\x{2069}\x{3000}\x{FB1D}\x{FB1F}-\x{FB28}\x{FB2A}-\x{FB36}\x{FB37}\x{FB38}-\x{FB3C}\x{FB3D}\x{FB3E}\x{FB3F}\x{FB40}-\x{FB41}\x{FB42}\x{FB43}-\x{FB44}\x{FB45}\x{FB46}-\x{FB4F}\x{FB50}-\x{FBB1}\x{FBB2}-\x{FBC1}\x{FBC2}-\x{FBD2}\x{FBD3}-\x{FD3D}\x{FD40}-\x{FD4F}\x{FD50}-\x{FD8F}\x{FD90}-\x{FD91}\x{FD92}-\x{FDC7}\x{FDC8}-\x{FDCF}\x{FDF0}-\x{FDFB}\x{FDFC}\x{FDFE}-\x{FDFF}\x{FE70}-\x{FE74}\x{FE75}\x{FE76}-\x{FEFC}\x{FEFD}-\x{FEFE}\x{10800}-\x{10805}\x{10806}-\x{10807}\x{10808}\x{10809}\x{1080A}-\x{10835}\x{10836}\x{10837}-\x{10838}\x{10839}-\x{1083B}\x{1083C}\x{1083D}-\x{1083E}\x{1083F}-\x{10855}\x{10856}\x{10857}\x{10858}-\x{1085F}\x{10860}-\x{10876}\x{10877}-\x{10878}\x{10879}-\x{1087F}\x{10880}-\x{1089E}\x{1089F}-\x{108A6}\x{108A7}-\x{108AF}\x{108B0}-\x{108DF}\x{108E0}-\x{108F2}\x{108F3}\x{108F4}-\x{108F5}\x{108F6}-\x{108FA}\x{108FB}-\x{108FF}\x{10900}-\x{10915}\x{10916}-\x{1091B}\x{1091C}-\x{1091E}\x{10920}-\x{10939}\x{1093A}-\x{1093E}\x{1093F}\x{10940}-\x{1097F}\x{10980}-\x{109B7}\x{109B8}-\x{109BB}\x{109BC}-\x{109BD}\x{109BE}-\x{109BF}\x{109C0}-\x{109CF}\x{109D0}-\x{109D1}\x{109D2}-\x{109FF}\x{10A00}\x{10A04}\x{10A07}-\x{10A0B}\x{10A10}-\x{10A13}\x{10A14}\x{10A15}-\x{10A17}\x{10A18}\x{10A19}-\x{10A35}\x{10A36}-\x{10A37}\x{10A3B}-\x{10A3E}\x{10A40}-\x{10A48}\x{10A49}-\x{10A4F}\x{10A50}-\x{10A58}\x{10A59}-\x{10A5F}\x{10A60}-\x{10A7C}\x{10A7D}-\x{10A7E}\x{10A7F}\x{10A80}-\x{10A9C}\x{10A9D}-\x{10A9F}\x{10AA0}-\x{10ABF}\x{10AC0}-\x{10AC7}\x{10AC8}\x{10AC9}-\x{10AE4}\x{10AE7}-\x{10AEA}\x{10AEB}-\x{10AEF}\x{10AF0}-\x{10AF6}\x{10AF7}-\x{10AFF}\x{10B00}-\x{10B35}\x{10B36}-\x{10B38}\x{10B40}-\x{10B55}\x{10B56}-\x{10B57}\x{10B58}-\x{10B5F}\x{10B60}-\x{10B72}\x{10B73}-\x{10B77}\x{10B78}-\x{10B7F}\x{10B80}-\x{10B91}\x{10B92}-\x{10B98}\x{10B99}-\x{10B9C}\x{10B9D}-\x{10BA8}\x{10BA9}-\x{10BAF}\x{10BB0}-\x{10BFF}\x{10C00}-\x{10C48}\x{10C49}-\x{10C7F}\x{10C80}-\x{10CB2}\x{10CB3}-\x{10CBF}\x{10CC0}-\x{10CF2}\x{10CF3}-\x{10CF9}\x{10CFA}-\x{10CFF}\x{10D00}-\x{10D23}\x{10D28}-\x{10D2F}\x{10D30}-\x{10D39}\x{10D3A}-\x{10D3F}\x{10D40}-\x{10E5F}\x{10E60}-\x{10E7E}\x{10E7F}\x{10E80}-\x{10EA9}\x{10EAA}\x{10EAD}\x{10EAE}-\x{10EAF}\x{10EB0}-\x{10EB1}\x{10EB2}-\x{10EFF}\x{10F00}-\x{10F1C}\x{10F1D}-\x{10F26}\x{10F27}\x{10F28}-\x{10F2F}\x{10F30}-\x{10F45}\x{10F51}-\x{10F54}\x{10F55}-\x{10F59}\x{10F5A}-\x{10F6F}\x{10F70}-\x{10FAF}\x{10FB0}-\x{10FC4}\x{10FC5}-\x{10FCB}\x{10FCC}-\x{10FDF}\x{10FE0}-\x{10FF6}\x{10FF7}-\x{10FFF}\x{1E800}-\x{1E8C4}\x{1E8C5}-\x{1E8C6}\x{1E8C7}-\x{1E8CF}\x{1E8D7}-\x{1E8FF}\x{1E900}-\x{1E943}\x{1E94B}\x{1E94C}-\x{1E94F}\x{1E950}-\x{1E959}\x{1E95A}-\x{1E95D}\x{1E95E}-\x{1E95F}\x{1E960}-\x{1EC6F}\x{1EC70}\x{1EC71}-\x{1ECAB}\x{1ECAC}\x{1ECAD}-\x{1ECAF}\x{1ECB0}\x{1ECB1}-\x{1ECB4}\x{1ECB5}-\x{1ECBF}\x{1ECC0}-\x{1ECFF}\x{1ED00}\x{1ED01}-\x{1ED2D}\x{1ED2E}\x{1ED2F}-\x{1ED3D}\x{1ED3E}-\x{1ED4F}\x{1ED50}-\x{1EDFF}\x{1EE00}-\x{1EE03}\x{1EE04}\x{1EE05}-\x{1EE1F}\x{1EE20}\x{1EE21}-\x{1EE22}\x{1EE23}\x{1EE24}\x{1EE25}-\x{1EE26}\x{1EE27}\x{1EE28}\x{1EE29}-\x{1EE32}\x{1EE33}\x{1EE34}-\x{1EE37}\x{1EE38}\x{1EE39}\x{1EE3A}\x{1EE3B}\x{1EE3C}-\x{1EE41}\x{1EE42}\x{1EE43}-\x{1EE46}\x{1EE47}\x{1EE48}\x{1EE49}\x{1EE4A}\x{1EE4B}\x{1EE4C}\x{1EE4D}-\x{1EE4F}\x{1EE50}\x{1EE51}-\x{1EE52}\x{1EE53}\x{1EE54}\x{1EE55}-\x{1EE56}\x{1EE57}\x{1EE58}\x{1EE59}\x{1EE5A}\x{1EE5B}\x{1EE5C}\x{1EE5D}\x{1EE5E}\x{1EE5F}\x{1EE60}\x{1EE61}-\x{1EE62}\x{1EE63}\x{1EE64}\x{1EE65}-\x{1EE66}\x{1EE67}-\x{1EE6A}\x{1EE6B}\x{1EE6C}-\x{1EE72}\x{1EE73}\x{1EE74}-\x{1EE77}\x{1EE78}\x{1EE79}-\x{1EE7C}\x{1EE7D}\x{1EE7E}\x{1EE7F}\x{1EE80}-\x{1EE89}\x{1EE8A}\x{1EE8B}-\x{1EE9B}\x{1EE9C}-\x{1EEA0}\x{1EEA1}-\x{1EEA3}\x{1EEA4}\x{1EEA5}-\x{1EEA9}\x{1EEAA}\x{1EEAB}-\x{1EEBB}\x{1EEBC}-\x{1EEEF}\x{1EEF2}-\x{1EEFF}\x{1EF00}-\x{1EFFF}]/u';
21
+ const BIDI_STEP_6 = '/[^\x{0000}-\x{0008}\x{0009}\x{000A}\x{000B}\x{000C}\x{000D}\x{000E}-\x{001B}\x{001C}-\x{001E}\x{001F}\x{0020}\x{0021}-\x{0022}\x{0023}\x{0024}\x{0025}\x{0026}-\x{0027}\x{0028}\x{0029}\x{002A}\x{002B}\x{002C}\x{002D}\x{002E}-\x{002F}\x{003A}\x{003B}\x{003C}-\x{003E}\x{003F}-\x{0040}\x{005B}\x{005C}\x{005D}\x{005E}\x{005F}\x{0060}\x{007B}\x{007C}\x{007D}\x{007E}\x{007F}-\x{0084}\x{0085}\x{0086}-\x{009F}\x{00A0}\x{00A1}\x{00A2}-\x{00A5}\x{00A6}\x{00A7}\x{00A8}\x{00A9}\x{00AB}\x{00AC}\x{00AD}\x{00AE}\x{00AF}\x{00B0}\x{00B1}\x{00B4}\x{00B6}-\x{00B7}\x{00B8}\x{00BB}\x{00BC}-\x{00BE}\x{00BF}\x{00D7}\x{00F7}\x{02B9}-\x{02BA}\x{02C2}-\x{02C5}\x{02C6}-\x{02CF}\x{02D2}-\x{02DF}\x{02E5}-\x{02EB}\x{02EC}\x{02ED}\x{02EF}-\x{02FF}\x{0300}-\x{036F}\x{0374}\x{0375}\x{037E}\x{0384}-\x{0385}\x{0387}\x{03F6}\x{0483}-\x{0487}\x{0488}-\x{0489}\x{058A}\x{058D}-\x{058E}\x{058F}\x{0590}\x{0591}-\x{05BD}\x{05BE}\x{05BF}\x{05C0}\x{05C1}-\x{05C2}\x{05C3}\x{05C4}-\x{05C5}\x{05C6}\x{05C7}\x{05C8}-\x{05CF}\x{05D0}-\x{05EA}\x{05EB}-\x{05EE}\x{05EF}-\x{05F2}\x{05F3}-\x{05F4}\x{05F5}-\x{05FF}\x{0600}-\x{0605}\x{0606}-\x{0607}\x{0608}\x{0609}-\x{060A}\x{060B}\x{060C}\x{060D}\x{060E}-\x{060F}\x{0610}-\x{061A}\x{061B}\x{061C}\x{061D}\x{061E}-\x{061F}\x{0620}-\x{063F}\x{0640}\x{0641}-\x{064A}\x{064B}-\x{065F}\x{0660}-\x{0669}\x{066A}\x{066B}-\x{066C}\x{066D}\x{066E}-\x{066F}\x{0670}\x{0671}-\x{06D3}\x{06D4}\x{06D5}\x{06D6}-\x{06DC}\x{06DD}\x{06DE}\x{06DF}-\x{06E4}\x{06E5}-\x{06E6}\x{06E7}-\x{06E8}\x{06E9}\x{06EA}-\x{06ED}\x{06EE}-\x{06EF}\x{06FA}-\x{06FC}\x{06FD}-\x{06FE}\x{06FF}\x{0700}-\x{070D}\x{070E}\x{070F}\x{0710}\x{0711}\x{0712}-\x{072F}\x{0730}-\x{074A}\x{074B}-\x{074C}\x{074D}-\x{07A5}\x{07A6}-\x{07B0}\x{07B1}\x{07B2}-\x{07BF}\x{07C0}-\x{07C9}\x{07CA}-\x{07EA}\x{07EB}-\x{07F3}\x{07F4}-\x{07F5}\x{07F6}\x{07F7}-\x{07F9}\x{07FA}\x{07FB}-\x{07FC}\x{07FD}\x{07FE}-\x{07FF}\x{0800}-\x{0815}\x{0816}-\x{0819}\x{081A}\x{081B}-\x{0823}\x{0824}\x{0825}-\x{0827}\x{0828}\x{0829}-\x{082D}\x{082E}-\x{082F}\x{0830}-\x{083E}\x{083F}\x{0840}-\x{0858}\x{0859}-\x{085B}\x{085C}-\x{085D}\x{085E}\x{085F}\x{0860}-\x{086A}\x{086B}-\x{086F}\x{0870}-\x{089F}\x{08A0}-\x{08B4}\x{08B5}\x{08B6}-\x{08C7}\x{08C8}-\x{08D2}\x{08D3}-\x{08E1}\x{08E2}\x{08E3}-\x{0902}\x{093A}\x{093C}\x{0941}-\x{0948}\x{094D}\x{0951}-\x{0957}\x{0962}-\x{0963}\x{0981}\x{09BC}\x{09C1}-\x{09C4}\x{09CD}\x{09E2}-\x{09E3}\x{09F2}-\x{09F3}\x{09FB}\x{09FE}\x{0A01}-\x{0A02}\x{0A3C}\x{0A41}-\x{0A42}\x{0A47}-\x{0A48}\x{0A4B}-\x{0A4D}\x{0A51}\x{0A70}-\x{0A71}\x{0A75}\x{0A81}-\x{0A82}\x{0ABC}\x{0AC1}-\x{0AC5}\x{0AC7}-\x{0AC8}\x{0ACD}\x{0AE2}-\x{0AE3}\x{0AF1}\x{0AFA}-\x{0AFF}\x{0B01}\x{0B3C}\x{0B3F}\x{0B41}-\x{0B44}\x{0B4D}\x{0B55}-\x{0B56}\x{0B62}-\x{0B63}\x{0B82}\x{0BC0}\x{0BCD}\x{0BF3}-\x{0BF8}\x{0BF9}\x{0BFA}\x{0C00}\x{0C04}\x{0C3E}-\x{0C40}\x{0C46}-\x{0C48}\x{0C4A}-\x{0C4D}\x{0C55}-\x{0C56}\x{0C62}-\x{0C63}\x{0C78}-\x{0C7E}\x{0C81}\x{0CBC}\x{0CCC}-\x{0CCD}\x{0CE2}-\x{0CE3}\x{0D00}-\x{0D01}\x{0D3B}-\x{0D3C}\x{0D41}-\x{0D44}\x{0D4D}\x{0D62}-\x{0D63}\x{0D81}\x{0DCA}\x{0DD2}-\x{0DD4}\x{0DD6}\x{0E31}\x{0E34}-\x{0E3A}\x{0E3F}\x{0E47}-\x{0E4E}\x{0EB1}\x{0EB4}-\x{0EBC}\x{0EC8}-\x{0ECD}\x{0F18}-\x{0F19}\x{0F35}\x{0F37}\x{0F39}\x{0F3A}\x{0F3B}\x{0F3C}\x{0F3D}\x{0F71}-\x{0F7E}\x{0F80}-\x{0F84}\x{0F86}-\x{0F87}\x{0F8D}-\x{0F97}\x{0F99}-\x{0FBC}\x{0FC6}\x{102D}-\x{1030}\x{1032}-\x{1037}\x{1039}-\x{103A}\x{103D}-\x{103E}\x{1058}-\x{1059}\x{105E}-\x{1060}\x{1071}-\x{1074}\x{1082}\x{1085}-\x{1086}\x{108D}\x{109D}\x{135D}-\x{135F}\x{1390}-\x{1399}\x{1400}\x{1680}\x{169B}\x{169C}\x{1712}-\x{1714}\x{1732}-\x{1734}\x{1752}-\x{1753}\x{1772}-\x{1773}\x{17B4}-\x{17B5}\x{17B7}-\x{17BD}\x{17C6}\x{17C9}-\x{17D3}\x{17DB}\x{17DD}\x{17F0}-\x{17F9}\x{1800}-\x{1805}\x{1806}\x{1807}-\x{180A}\x{180B}-\x{180D}\x{180E}\x{1885}-\x{1886}\x{18A9}\x{1920}-\x{1922}\x{1927}-\x{1928}\x{1932}\x{1939}-\x{193B}\x{1940}\x{1944}-\x{1945}\x{19DE}-\x{19FF}\x{1A17}-\x{1A18}\x{1A1B}\x{1A56}\x{1A58}-\x{1A5E}\x{1A60}\x{1A62}\x{1A65}-\x{1A6C}\x{1A73}-\x{1A7C}\x{1A7F}\x{1AB0}-\x{1ABD}\x{1ABE}\x{1ABF}-\x{1AC0}\x{1B00}-\x{1B03}\x{1B34}\x{1B36}-\x{1B3A}\x{1B3C}\x{1B42}\x{1B6B}-\x{1B73}\x{1B80}-\x{1B81}\x{1BA2}-\x{1BA5}\x{1BA8}-\x{1BA9}\x{1BAB}-\x{1BAD}\x{1BE6}\x{1BE8}-\x{1BE9}\x{1BED}\x{1BEF}-\x{1BF1}\x{1C2C}-\x{1C33}\x{1C36}-\x{1C37}\x{1CD0}-\x{1CD2}\x{1CD4}-\x{1CE0}\x{1CE2}-\x{1CE8}\x{1CED}\x{1CF4}\x{1CF8}-\x{1CF9}\x{1DC0}-\x{1DF9}\x{1DFB}-\x{1DFF}\x{1FBD}\x{1FBF}-\x{1FC1}\x{1FCD}-\x{1FCF}\x{1FDD}-\x{1FDF}\x{1FED}-\x{1FEF}\x{1FFD}-\x{1FFE}\x{2000}-\x{200A}\x{200B}-\x{200D}\x{200F}\x{2010}-\x{2015}\x{2016}-\x{2017}\x{2018}\x{2019}\x{201A}\x{201B}-\x{201C}\x{201D}\x{201E}\x{201F}\x{2020}-\x{2027}\x{2028}\x{2029}\x{202A}\x{202B}\x{202C}\x{202D}\x{202E}\x{202F}\x{2030}-\x{2034}\x{2035}-\x{2038}\x{2039}\x{203A}\x{203B}-\x{203E}\x{203F}-\x{2040}\x{2041}-\x{2043}\x{2044}\x{2045}\x{2046}\x{2047}-\x{2051}\x{2052}\x{2053}\x{2054}\x{2055}-\x{205E}\x{205F}\x{2060}-\x{2064}\x{2065}\x{2066}\x{2067}\x{2068}\x{2069}\x{206A}-\x{206F}\x{207A}-\x{207B}\x{207C}\x{207D}\x{207E}\x{208A}-\x{208B}\x{208C}\x{208D}\x{208E}\x{20A0}-\x{20BF}\x{20C0}-\x{20CF}\x{20D0}-\x{20DC}\x{20DD}-\x{20E0}\x{20E1}\x{20E2}-\x{20E4}\x{20E5}-\x{20F0}\x{2100}-\x{2101}\x{2103}-\x{2106}\x{2108}-\x{2109}\x{2114}\x{2116}-\x{2117}\x{2118}\x{211E}-\x{2123}\x{2125}\x{2127}\x{2129}\x{212E}\x{213A}-\x{213B}\x{2140}-\x{2144}\x{214A}\x{214B}\x{214C}-\x{214D}\x{2150}-\x{215F}\x{2189}\x{218A}-\x{218B}\x{2190}-\x{2194}\x{2195}-\x{2199}\x{219A}-\x{219B}\x{219C}-\x{219F}\x{21A0}\x{21A1}-\x{21A2}\x{21A3}\x{21A4}-\x{21A5}\x{21A6}\x{21A7}-\x{21AD}\x{21AE}\x{21AF}-\x{21CD}\x{21CE}-\x{21CF}\x{21D0}-\x{21D1}\x{21D2}\x{21D3}\x{21D4}\x{21D5}-\x{21F3}\x{21F4}-\x{2211}\x{2212}\x{2213}\x{2214}-\x{22FF}\x{2300}-\x{2307}\x{2308}\x{2309}\x{230A}\x{230B}\x{230C}-\x{231F}\x{2320}-\x{2321}\x{2322}-\x{2328}\x{2329}\x{232A}\x{232B}-\x{2335}\x{237B}\x{237C}\x{237D}-\x{2394}\x{2396}-\x{239A}\x{239B}-\x{23B3}\x{23B4}-\x{23DB}\x{23DC}-\x{23E1}\x{23E2}-\x{2426}\x{2440}-\x{244A}\x{2460}-\x{2487}\x{24EA}-\x{24FF}\x{2500}-\x{25B6}\x{25B7}\x{25B8}-\x{25C0}\x{25C1}\x{25C2}-\x{25F7}\x{25F8}-\x{25FF}\x{2600}-\x{266E}\x{266F}\x{2670}-\x{26AB}\x{26AD}-\x{2767}\x{2768}\x{2769}\x{276A}\x{276B}\x{276C}\x{276D}\x{276E}\x{276F}\x{2770}\x{2771}\x{2772}\x{2773}\x{2774}\x{2775}\x{2776}-\x{2793}\x{2794}-\x{27BF}\x{27C0}-\x{27C4}\x{27C5}\x{27C6}\x{27C7}-\x{27E5}\x{27E6}\x{27E7}\x{27E8}\x{27E9}\x{27EA}\x{27EB}\x{27EC}\x{27ED}\x{27EE}\x{27EF}\x{27F0}-\x{27FF}\x{2900}-\x{2982}\x{2983}\x{2984}\x{2985}\x{2986}\x{2987}\x{2988}\x{2989}\x{298A}\x{298B}\x{298C}\x{298D}\x{298E}\x{298F}\x{2990}\x{2991}\x{2992}\x{2993}\x{2994}\x{2995}\x{2996}\x{2997}\x{2998}\x{2999}-\x{29D7}\x{29D8}\x{29D9}\x{29DA}\x{29DB}\x{29DC}-\x{29FB}\x{29FC}\x{29FD}\x{29FE}-\x{2AFF}\x{2B00}-\x{2B2F}\x{2B30}-\x{2B44}\x{2B45}-\x{2B46}\x{2B47}-\x{2B4C}\x{2B4D}-\x{2B73}\x{2B76}-\x{2B95}\x{2B97}-\x{2BFF}\x{2CE5}-\x{2CEA}\x{2CEF}-\x{2CF1}\x{2CF9}-\x{2CFC}\x{2CFD}\x{2CFE}-\x{2CFF}\x{2D7F}\x{2DE0}-\x{2DFF}\x{2E00}-\x{2E01}\x{2E02}\x{2E03}\x{2E04}\x{2E05}\x{2E06}-\x{2E08}\x{2E09}\x{2E0A}\x{2E0B}\x{2E0C}\x{2E0D}\x{2E0E}-\x{2E16}\x{2E17}\x{2E18}-\x{2E19}\x{2E1A}\x{2E1B}\x{2E1C}\x{2E1D}\x{2E1E}-\x{2E1F}\x{2E20}\x{2E21}\x{2E22}\x{2E23}\x{2E24}\x{2E25}\x{2E26}\x{2E27}\x{2E28}\x{2E29}\x{2E2A}-\x{2E2E}\x{2E2F}\x{2E30}-\x{2E39}\x{2E3A}-\x{2E3B}\x{2E3C}-\x{2E3F}\x{2E40}\x{2E41}\x{2E42}\x{2E43}-\x{2E4F}\x{2E50}-\x{2E51}\x{2E52}\x{2E80}-\x{2E99}\x{2E9B}-\x{2EF3}\x{2F00}-\x{2FD5}\x{2FF0}-\x{2FFB}\x{3000}\x{3001}-\x{3003}\x{3004}\x{3008}\x{3009}\x{300A}\x{300B}\x{300C}\x{300D}\x{300E}\x{300F}\x{3010}\x{3011}\x{3012}-\x{3013}\x{3014}\x{3015}\x{3016}\x{3017}\x{3018}\x{3019}\x{301A}\x{301B}\x{301C}\x{301D}\x{301E}-\x{301F}\x{3020}\x{302A}-\x{302D}\x{3030}\x{3036}-\x{3037}\x{303D}\x{303E}-\x{303F}\x{3099}-\x{309A}\x{309B}-\x{309C}\x{30A0}\x{30FB}\x{31C0}-\x{31E3}\x{321D}-\x{321E}\x{3250}\x{3251}-\x{325F}\x{327C}-\x{327E}\x{32B1}-\x{32BF}\x{32CC}-\x{32CF}\x{3377}-\x{337A}\x{33DE}-\x{33DF}\x{33FF}\x{4DC0}-\x{4DFF}\x{A490}-\x{A4C6}\x{A60D}-\x{A60F}\x{A66F}\x{A670}-\x{A672}\x{A673}\x{A674}-\x{A67D}\x{A67E}\x{A67F}\x{A69E}-\x{A69F}\x{A6F0}-\x{A6F1}\x{A700}-\x{A716}\x{A717}-\x{A71F}\x{A720}-\x{A721}\x{A788}\x{A802}\x{A806}\x{A80B}\x{A825}-\x{A826}\x{A828}-\x{A82B}\x{A82C}\x{A838}\x{A839}\x{A874}-\x{A877}\x{A8C4}-\x{A8C5}\x{A8E0}-\x{A8F1}\x{A8FF}\x{A926}-\x{A92D}\x{A947}-\x{A951}\x{A980}-\x{A982}\x{A9B3}\x{A9B6}-\x{A9B9}\x{A9BC}-\x{A9BD}\x{A9E5}\x{AA29}-\x{AA2E}\x{AA31}-\x{AA32}\x{AA35}-\x{AA36}\x{AA43}\x{AA4C}\x{AA7C}\x{AAB0}\x{AAB2}-\x{AAB4}\x{AAB7}-\x{AAB8}\x{AABE}-\x{AABF}\x{AAC1}\x{AAEC}-\x{AAED}\x{AAF6}\x{AB6A}-\x{AB6B}\x{ABE5}\x{ABE8}\x{ABED}\x{FB1D}\x{FB1E}\x{FB1F}-\x{FB28}\x{FB29}\x{FB2A}-\x{FB36}\x{FB37}\x{FB38}-\x{FB3C}\x{FB3D}\x{FB3E}\x{FB3F}\x{FB40}-\x{FB41}\x{FB42}\x{FB43}-\x{FB44}\x{FB45}\x{FB46}-\x{FB4F}\x{FB50}-\x{FBB1}\x{FBB2}-\x{FBC1}\x{FBC2}-\x{FBD2}\x{FBD3}-\x{FD3D}\x{FD3E}\x{FD3F}\x{FD40}-\x{FD4F}\x{FD50}-\x{FD8F}\x{FD90}-\x{FD91}\x{FD92}-\x{FDC7}\x{FDC8}-\x{FDCF}\x{FDD0}-\x{FDEF}\x{FDF0}-\x{FDFB}\x{FDFC}\x{FDFD}\x{FDFE}-\x{FDFF}\x{FE00}-\x{FE0F}\x{FE10}-\x{FE16}\x{FE17}\x{FE18}\x{FE19}\x{FE20}-\x{FE2F}\x{FE30}\x{FE31}-\x{FE32}\x{FE33}-\x{FE34}\x{FE35}\x{FE36}\x{FE37}\x{FE38}\x{FE39}\x{FE3A}\x{FE3B}\x{FE3C}\x{FE3D}\x{FE3E}\x{FE3F}\x{FE40}\x{FE41}\x{FE42}\x{FE43}\x{FE44}\x{FE45}-\x{FE46}\x{FE47}\x{FE48}\x{FE49}-\x{FE4C}\x{FE4D}-\x{FE4F}\x{FE50}\x{FE51}\x{FE52}\x{FE54}\x{FE55}\x{FE56}-\x{FE57}\x{FE58}\x{FE59}\x{FE5A}\x{FE5B}\x{FE5C}\x{FE5D}\x{FE5E}\x{FE5F}\x{FE60}-\x{FE61}\x{FE62}\x{FE63}\x{FE64}-\x{FE66}\x{FE68}\x{FE69}\x{FE6A}\x{FE6B}\x{FE70}-\x{FE74}\x{FE75}\x{FE76}-\x{FEFC}\x{FEFD}-\x{FEFE}\x{FEFF}\x{FF01}-\x{FF02}\x{FF03}\x{FF04}\x{FF05}\x{FF06}-\x{FF07}\x{FF08}\x{FF09}\x{FF0A}\x{FF0B}\x{FF0C}\x{FF0D}\x{FF0E}-\x{FF0F}\x{FF1A}\x{FF1B}\x{FF1C}-\x{FF1E}\x{FF1F}-\x{FF20}\x{FF3B}\x{FF3C}\x{FF3D}\x{FF3E}\x{FF3F}\x{FF40}\x{FF5B}\x{FF5C}\x{FF5D}\x{FF5E}\x{FF5F}\x{FF60}\x{FF61}\x{FF62}\x{FF63}\x{FF64}-\x{FF65}\x{FFE0}-\x{FFE1}\x{FFE2}\x{FFE3}\x{FFE4}\x{FFE5}-\x{FFE6}\x{FFE8}\x{FFE9}-\x{FFEC}\x{FFED}-\x{FFEE}\x{FFF0}-\x{FFF8}\x{FFF9}-\x{FFFB}\x{FFFC}-\x{FFFD}\x{FFFE}-\x{FFFF}\x{10101}\x{10140}-\x{10174}\x{10175}-\x{10178}\x{10179}-\x{10189}\x{1018A}-\x{1018B}\x{1018C}\x{10190}-\x{1019C}\x{101A0}\x{101FD}\x{102E0}\x{10376}-\x{1037A}\x{10800}-\x{10805}\x{10806}-\x{10807}\x{10808}\x{10809}\x{1080A}-\x{10835}\x{10836}\x{10837}-\x{10838}\x{10839}-\x{1083B}\x{1083C}\x{1083D}-\x{1083E}\x{1083F}-\x{10855}\x{10856}\x{10857}\x{10858}-\x{1085F}\x{10860}-\x{10876}\x{10877}-\x{10878}\x{10879}-\x{1087F}\x{10880}-\x{1089E}\x{1089F}-\x{108A6}\x{108A7}-\x{108AF}\x{108B0}-\x{108DF}\x{108E0}-\x{108F2}\x{108F3}\x{108F4}-\x{108F5}\x{108F6}-\x{108FA}\x{108FB}-\x{108FF}\x{10900}-\x{10915}\x{10916}-\x{1091B}\x{1091C}-\x{1091E}\x{1091F}\x{10920}-\x{10939}\x{1093A}-\x{1093E}\x{1093F}\x{10940}-\x{1097F}\x{10980}-\x{109B7}\x{109B8}-\x{109BB}\x{109BC}-\x{109BD}\x{109BE}-\x{109BF}\x{109C0}-\x{109CF}\x{109D0}-\x{109D1}\x{109D2}-\x{109FF}\x{10A00}\x{10A01}-\x{10A03}\x{10A04}\x{10A05}-\x{10A06}\x{10A07}-\x{10A0B}\x{10A0C}-\x{10A0F}\x{10A10}-\x{10A13}\x{10A14}\x{10A15}-\x{10A17}\x{10A18}\x{10A19}-\x{10A35}\x{10A36}-\x{10A37}\x{10A38}-\x{10A3A}\x{10A3B}-\x{10A3E}\x{10A3F}\x{10A40}-\x{10A48}\x{10A49}-\x{10A4F}\x{10A50}-\x{10A58}\x{10A59}-\x{10A5F}\x{10A60}-\x{10A7C}\x{10A7D}-\x{10A7E}\x{10A7F}\x{10A80}-\x{10A9C}\x{10A9D}-\x{10A9F}\x{10AA0}-\x{10ABF}\x{10AC0}-\x{10AC7}\x{10AC8}\x{10AC9}-\x{10AE4}\x{10AE5}-\x{10AE6}\x{10AE7}-\x{10AEA}\x{10AEB}-\x{10AEF}\x{10AF0}-\x{10AF6}\x{10AF7}-\x{10AFF}\x{10B00}-\x{10B35}\x{10B36}-\x{10B38}\x{10B39}-\x{10B3F}\x{10B40}-\x{10B55}\x{10B56}-\x{10B57}\x{10B58}-\x{10B5F}\x{10B60}-\x{10B72}\x{10B73}-\x{10B77}\x{10B78}-\x{10B7F}\x{10B80}-\x{10B91}\x{10B92}-\x{10B98}\x{10B99}-\x{10B9C}\x{10B9D}-\x{10BA8}\x{10BA9}-\x{10BAF}\x{10BB0}-\x{10BFF}\x{10C00}-\x{10C48}\x{10C49}-\x{10C7F}\x{10C80}-\x{10CB2}\x{10CB3}-\x{10CBF}\x{10CC0}-\x{10CF2}\x{10CF3}-\x{10CF9}\x{10CFA}-\x{10CFF}\x{10D00}-\x{10D23}\x{10D24}-\x{10D27}\x{10D28}-\x{10D2F}\x{10D30}-\x{10D39}\x{10D3A}-\x{10D3F}\x{10D40}-\x{10E5F}\x{10E60}-\x{10E7E}\x{10E7F}\x{10E80}-\x{10EA9}\x{10EAA}\x{10EAB}-\x{10EAC}\x{10EAD}\x{10EAE}-\x{10EAF}\x{10EB0}-\x{10EB1}\x{10EB2}-\x{10EFF}\x{10F00}-\x{10F1C}\x{10F1D}-\x{10F26}\x{10F27}\x{10F28}-\x{10F2F}\x{10F30}-\x{10F45}\x{10F46}-\x{10F50}\x{10F51}-\x{10F54}\x{10F55}-\x{10F59}\x{10F5A}-\x{10F6F}\x{10F70}-\x{10FAF}\x{10FB0}-\x{10FC4}\x{10FC5}-\x{10FCB}\x{10FCC}-\x{10FDF}\x{10FE0}-\x{10FF6}\x{10FF7}-\x{10FFF}\x{11001}\x{11038}-\x{11046}\x{11052}-\x{11065}\x{1107F}-\x{11081}\x{110B3}-\x{110B6}\x{110B9}-\x{110BA}\x{11100}-\x{11102}\x{11127}-\x{1112B}\x{1112D}-\x{11134}\x{11173}\x{11180}-\x{11181}\x{111B6}-\x{111BE}\x{111C9}-\x{111CC}\x{111CF}\x{1122F}-\x{11231}\x{11234}\x{11236}-\x{11237}\x{1123E}\x{112DF}\x{112E3}-\x{112EA}\x{11300}-\x{11301}\x{1133B}-\x{1133C}\x{11340}\x{11366}-\x{1136C}\x{11370}-\x{11374}\x{11438}-\x{1143F}\x{11442}-\x{11444}\x{11446}\x{1145E}\x{114B3}-\x{114B8}\x{114BA}\x{114BF}-\x{114C0}\x{114C2}-\x{114C3}\x{115B2}-\x{115B5}\x{115BC}-\x{115BD}\x{115BF}-\x{115C0}\x{115DC}-\x{115DD}\x{11633}-\x{1163A}\x{1163D}\x{1163F}-\x{11640}\x{11660}-\x{1166C}\x{116AB}\x{116AD}\x{116B0}-\x{116B5}\x{116B7}\x{1171D}-\x{1171F}\x{11722}-\x{11725}\x{11727}-\x{1172B}\x{1182F}-\x{11837}\x{11839}-\x{1183A}\x{1193B}-\x{1193C}\x{1193E}\x{11943}\x{119D4}-\x{119D7}\x{119DA}-\x{119DB}\x{119E0}\x{11A01}-\x{11A06}\x{11A09}-\x{11A0A}\x{11A33}-\x{11A38}\x{11A3B}-\x{11A3E}\x{11A47}\x{11A51}-\x{11A56}\x{11A59}-\x{11A5B}\x{11A8A}-\x{11A96}\x{11A98}-\x{11A99}\x{11C30}-\x{11C36}\x{11C38}-\x{11C3D}\x{11C92}-\x{11CA7}\x{11CAA}-\x{11CB0}\x{11CB2}-\x{11CB3}\x{11CB5}-\x{11CB6}\x{11D31}-\x{11D36}\x{11D3A}\x{11D3C}-\x{11D3D}\x{11D3F}-\x{11D45}\x{11D47}\x{11D90}-\x{11D91}\x{11D95}\x{11D97}\x{11EF3}-\x{11EF4}\x{11FD5}-\x{11FDC}\x{11FDD}-\x{11FE0}\x{11FE1}-\x{11FF1}\x{16AF0}-\x{16AF4}\x{16B30}-\x{16B36}\x{16F4F}\x{16F8F}-\x{16F92}\x{16FE2}\x{16FE4}\x{1BC9D}-\x{1BC9E}\x{1BCA0}-\x{1BCA3}\x{1D167}-\x{1D169}\x{1D173}-\x{1D17A}\x{1D17B}-\x{1D182}\x{1D185}-\x{1D18B}\x{1D1AA}-\x{1D1AD}\x{1D200}-\x{1D241}\x{1D242}-\x{1D244}\x{1D245}\x{1D300}-\x{1D356}\x{1D6DB}\x{1D715}\x{1D74F}\x{1D789}\x{1D7C3}\x{1DA00}-\x{1DA36}\x{1DA3B}-\x{1DA6C}\x{1DA75}\x{1DA84}\x{1DA9B}-\x{1DA9F}\x{1DAA1}-\x{1DAAF}\x{1E000}-\x{1E006}\x{1E008}-\x{1E018}\x{1E01B}-\x{1E021}\x{1E023}-\x{1E024}\x{1E026}-\x{1E02A}\x{1E130}-\x{1E136}\x{1E2EC}-\x{1E2EF}\x{1E2FF}\x{1E800}-\x{1E8C4}\x{1E8C5}-\x{1E8C6}\x{1E8C7}-\x{1E8CF}\x{1E8D0}-\x{1E8D6}\x{1E8D7}-\x{1E8FF}\x{1E900}-\x{1E943}\x{1E944}-\x{1E94A}\x{1E94B}\x{1E94C}-\x{1E94F}\x{1E950}-\x{1E959}\x{1E95A}-\x{1E95D}\x{1E95E}-\x{1E95F}\x{1E960}-\x{1EC6F}\x{1EC70}\x{1EC71}-\x{1ECAB}\x{1ECAC}\x{1ECAD}-\x{1ECAF}\x{1ECB0}\x{1ECB1}-\x{1ECB4}\x{1ECB5}-\x{1ECBF}\x{1ECC0}-\x{1ECFF}\x{1ED00}\x{1ED01}-\x{1ED2D}\x{1ED2E}\x{1ED2F}-\x{1ED3D}\x{1ED3E}-\x{1ED4F}\x{1ED50}-\x{1EDFF}\x{1EE00}-\x{1EE03}\x{1EE04}\x{1EE05}-\x{1EE1F}\x{1EE20}\x{1EE21}-\x{1EE22}\x{1EE23}\x{1EE24}\x{1EE25}-\x{1EE26}\x{1EE27}\x{1EE28}\x{1EE29}-\x{1EE32}\x{1EE33}\x{1EE34}-\x{1EE37}\x{1EE38}\x{1EE39}\x{1EE3A}\x{1EE3B}\x{1EE3C}-\x{1EE41}\x{1EE42}\x{1EE43}-\x{1EE46}\x{1EE47}\x{1EE48}\x{1EE49}\x{1EE4A}\x{1EE4B}\x{1EE4C}\x{1EE4D}-\x{1EE4F}\x{1EE50}\x{1EE51}-\x{1EE52}\x{1EE53}\x{1EE54}\x{1EE55}-\x{1EE56}\x{1EE57}\x{1EE58}\x{1EE59}\x{1EE5A}\x{1EE5B}\x{1EE5C}\x{1EE5D}\x{1EE5E}\x{1EE5F}\x{1EE60}\x{1EE61}-\x{1EE62}\x{1EE63}\x{1EE64}\x{1EE65}-\x{1EE66}\x{1EE67}-\x{1EE6A}\x{1EE6B}\x{1EE6C}-\x{1EE72}\x{1EE73}\x{1EE74}-\x{1EE77}\x{1EE78}\x{1EE79}-\x{1EE7C}\x{1EE7D}\x{1EE7E}\x{1EE7F}\x{1EE80}-\x{1EE89}\x{1EE8A}\x{1EE8B}-\x{1EE9B}\x{1EE9C}-\x{1EEA0}\x{1EEA1}-\x{1EEA3}\x{1EEA4}\x{1EEA5}-\x{1EEA9}\x{1EEAA}\x{1EEAB}-\x{1EEBB}\x{1EEBC}-\x{1EEEF}\x{1EEF0}-\x{1EEF1}\x{1EEF2}-\x{1EEFF}\x{1EF00}-\x{1EFFF}\x{1F000}-\x{1F02B}\x{1F030}-\x{1F093}\x{1F0A0}-\x{1F0AE}\x{1F0B1}-\x{1F0BF}\x{1F0C1}-\x{1F0CF}\x{1F0D1}-\x{1F0F5}\x{1F10B}-\x{1F10C}\x{1F10D}-\x{1F10F}\x{1F12F}\x{1F16A}-\x{1F16F}\x{1F1AD}\x{1F260}-\x{1F265}\x{1F300}-\x{1F3FA}\x{1F3FB}-\x{1F3FF}\x{1F400}-\x{1F6D7}\x{1F6E0}-\x{1F6EC}\x{1F6F0}-\x{1F6FC}\x{1F700}-\x{1F773}\x{1F780}-\x{1F7D8}\x{1F7E0}-\x{1F7EB}\x{1F800}-\x{1F80B}\x{1F810}-\x{1F847}\x{1F850}-\x{1F859}\x{1F860}-\x{1F887}\x{1F890}-\x{1F8AD}\x{1F8B0}-\x{1F8B1}\x{1F900}-\x{1F978}\x{1F97A}-\x{1F9CB}\x{1F9CD}-\x{1FA53}\x{1FA60}-\x{1FA6D}\x{1FA70}-\x{1FA74}\x{1FA78}-\x{1FA7A}\x{1FA80}-\x{1FA86}\x{1FA90}-\x{1FAA8}\x{1FAB0}-\x{1FAB6}\x{1FAC0}-\x{1FAC2}\x{1FAD0}-\x{1FAD6}\x{1FB00}-\x{1FB92}\x{1FB94}-\x{1FBCA}\x{1FFFE}-\x{1FFFF}\x{2FFFE}-\x{2FFFF}\x{3FFFE}-\x{3FFFF}\x{4FFFE}-\x{4FFFF}\x{5FFFE}-\x{5FFFF}\x{6FFFE}-\x{6FFFF}\x{7FFFE}-\x{7FFFF}\x{8FFFE}-\x{8FFFF}\x{9FFFE}-\x{9FFFF}\x{AFFFE}-\x{AFFFF}\x{BFFFE}-\x{BFFFF}\x{CFFFE}-\x{CFFFF}\x{DFFFE}-\x{E0000}\x{E0001}\x{E0002}-\x{E001F}\x{E0020}-\x{E007F}\x{E0080}-\x{E00FF}\x{E0100}-\x{E01EF}\x{E01F0}-\x{E0FFF}\x{EFFFE}-\x{EFFFF}\x{FFFFE}-\x{FFFFF}\x{10FFFE}-\x{10FFFF}][\x{0300}-\x{036F}\x{0483}-\x{0487}\x{0488}-\x{0489}\x{0591}-\x{05BD}\x{05BF}\x{05C1}-\x{05C2}\x{05C4}-\x{05C5}\x{05C7}\x{0610}-\x{061A}\x{064B}-\x{065F}\x{0670}\x{06D6}-\x{06DC}\x{06DF}-\x{06E4}\x{06E7}-\x{06E8}\x{06EA}-\x{06ED}\x{0711}\x{0730}-\x{074A}\x{07A6}-\x{07B0}\x{07EB}-\x{07F3}\x{07FD}\x{0816}-\x{0819}\x{081B}-\x{0823}\x{0825}-\x{0827}\x{0829}-\x{082D}\x{0859}-\x{085B}\x{08D3}-\x{08E1}\x{08E3}-\x{0902}\x{093A}\x{093C}\x{0941}-\x{0948}\x{094D}\x{0951}-\x{0957}\x{0962}-\x{0963}\x{0981}\x{09BC}\x{09C1}-\x{09C4}\x{09CD}\x{09E2}-\x{09E3}\x{09FE}\x{0A01}-\x{0A02}\x{0A3C}\x{0A41}-\x{0A42}\x{0A47}-\x{0A48}\x{0A4B}-\x{0A4D}\x{0A51}\x{0A70}-\x{0A71}\x{0A75}\x{0A81}-\x{0A82}\x{0ABC}\x{0AC1}-\x{0AC5}\x{0AC7}-\x{0AC8}\x{0ACD}\x{0AE2}-\x{0AE3}\x{0AFA}-\x{0AFF}\x{0B01}\x{0B3C}\x{0B3F}\x{0B41}-\x{0B44}\x{0B4D}\x{0B55}-\x{0B56}\x{0B62}-\x{0B63}\x{0B82}\x{0BC0}\x{0BCD}\x{0C00}\x{0C04}\x{0C3E}-\x{0C40}\x{0C46}-\x{0C48}\x{0C4A}-\x{0C4D}\x{0C55}-\x{0C56}\x{0C62}-\x{0C63}\x{0C81}\x{0CBC}\x{0CCC}-\x{0CCD}\x{0CE2}-\x{0CE3}\x{0D00}-\x{0D01}\x{0D3B}-\x{0D3C}\x{0D41}-\x{0D44}\x{0D4D}\x{0D62}-\x{0D63}\x{0D81}\x{0DCA}\x{0DD2}-\x{0DD4}\x{0DD6}\x{0E31}\x{0E34}-\x{0E3A}\x{0E47}-\x{0E4E}\x{0EB1}\x{0EB4}-\x{0EBC}\x{0EC8}-\x{0ECD}\x{0F18}-\x{0F19}\x{0F35}\x{0F37}\x{0F39}\x{0F71}-\x{0F7E}\x{0F80}-\x{0F84}\x{0F86}-\x{0F87}\x{0F8D}-\x{0F97}\x{0F99}-\x{0FBC}\x{0FC6}\x{102D}-\x{1030}\x{1032}-\x{1037}\x{1039}-\x{103A}\x{103D}-\x{103E}\x{1058}-\x{1059}\x{105E}-\x{1060}\x{1071}-\x{1074}\x{1082}\x{1085}-\x{1086}\x{108D}\x{109D}\x{135D}-\x{135F}\x{1712}-\x{1714}\x{1732}-\x{1734}\x{1752}-\x{1753}\x{1772}-\x{1773}\x{17B4}-\x{17B5}\x{17B7}-\x{17BD}\x{17C6}\x{17C9}-\x{17D3}\x{17DD}\x{180B}-\x{180D}\x{1885}-\x{1886}\x{18A9}\x{1920}-\x{1922}\x{1927}-\x{1928}\x{1932}\x{1939}-\x{193B}\x{1A17}-\x{1A18}\x{1A1B}\x{1A56}\x{1A58}-\x{1A5E}\x{1A60}\x{1A62}\x{1A65}-\x{1A6C}\x{1A73}-\x{1A7C}\x{1A7F}\x{1AB0}-\x{1ABD}\x{1ABE}\x{1ABF}-\x{1AC0}\x{1B00}-\x{1B03}\x{1B34}\x{1B36}-\x{1B3A}\x{1B3C}\x{1B42}\x{1B6B}-\x{1B73}\x{1B80}-\x{1B81}\x{1BA2}-\x{1BA5}\x{1BA8}-\x{1BA9}\x{1BAB}-\x{1BAD}\x{1BE6}\x{1BE8}-\x{1BE9}\x{1BED}\x{1BEF}-\x{1BF1}\x{1C2C}-\x{1C33}\x{1C36}-\x{1C37}\x{1CD0}-\x{1CD2}\x{1CD4}-\x{1CE0}\x{1CE2}-\x{1CE8}\x{1CED}\x{1CF4}\x{1CF8}-\x{1CF9}\x{1DC0}-\x{1DF9}\x{1DFB}-\x{1DFF}\x{20D0}-\x{20DC}\x{20DD}-\x{20E0}\x{20E1}\x{20E2}-\x{20E4}\x{20E5}-\x{20F0}\x{2CEF}-\x{2CF1}\x{2D7F}\x{2DE0}-\x{2DFF}\x{302A}-\x{302D}\x{3099}-\x{309A}\x{A66F}\x{A670}-\x{A672}\x{A674}-\x{A67D}\x{A69E}-\x{A69F}\x{A6F0}-\x{A6F1}\x{A802}\x{A806}\x{A80B}\x{A825}-\x{A826}\x{A82C}\x{A8C4}-\x{A8C5}\x{A8E0}-\x{A8F1}\x{A8FF}\x{A926}-\x{A92D}\x{A947}-\x{A951}\x{A980}-\x{A982}\x{A9B3}\x{A9B6}-\x{A9B9}\x{A9BC}-\x{A9BD}\x{A9E5}\x{AA29}-\x{AA2E}\x{AA31}-\x{AA32}\x{AA35}-\x{AA36}\x{AA43}\x{AA4C}\x{AA7C}\x{AAB0}\x{AAB2}-\x{AAB4}\x{AAB7}-\x{AAB8}\x{AABE}-\x{AABF}\x{AAC1}\x{AAEC}-\x{AAED}\x{AAF6}\x{ABE5}\x{ABE8}\x{ABED}\x{FB1E}\x{FE00}-\x{FE0F}\x{FE20}-\x{FE2F}\x{101FD}\x{102E0}\x{10376}-\x{1037A}\x{10A01}-\x{10A03}\x{10A05}-\x{10A06}\x{10A0C}-\x{10A0F}\x{10A38}-\x{10A3A}\x{10A3F}\x{10AE5}-\x{10AE6}\x{10D24}-\x{10D27}\x{10EAB}-\x{10EAC}\x{10F46}-\x{10F50}\x{11001}\x{11038}-\x{11046}\x{1107F}-\x{11081}\x{110B3}-\x{110B6}\x{110B9}-\x{110BA}\x{11100}-\x{11102}\x{11127}-\x{1112B}\x{1112D}-\x{11134}\x{11173}\x{11180}-\x{11181}\x{111B6}-\x{111BE}\x{111C9}-\x{111CC}\x{111CF}\x{1122F}-\x{11231}\x{11234}\x{11236}-\x{11237}\x{1123E}\x{112DF}\x{112E3}-\x{112EA}\x{11300}-\x{11301}\x{1133B}-\x{1133C}\x{11340}\x{11366}-\x{1136C}\x{11370}-\x{11374}\x{11438}-\x{1143F}\x{11442}-\x{11444}\x{11446}\x{1145E}\x{114B3}-\x{114B8}\x{114BA}\x{114BF}-\x{114C0}\x{114C2}-\x{114C3}\x{115B2}-\x{115B5}\x{115BC}-\x{115BD}\x{115BF}-\x{115C0}\x{115DC}-\x{115DD}\x{11633}-\x{1163A}\x{1163D}\x{1163F}-\x{11640}\x{116AB}\x{116AD}\x{116B0}-\x{116B5}\x{116B7}\x{1171D}-\x{1171F}\x{11722}-\x{11725}\x{11727}-\x{1172B}\x{1182F}-\x{11837}\x{11839}-\x{1183A}\x{1193B}-\x{1193C}\x{1193E}\x{11943}\x{119D4}-\x{119D7}\x{119DA}-\x{119DB}\x{119E0}\x{11A01}-\x{11A06}\x{11A09}-\x{11A0A}\x{11A33}-\x{11A38}\x{11A3B}-\x{11A3E}\x{11A47}\x{11A51}-\x{11A56}\x{11A59}-\x{11A5B}\x{11A8A}-\x{11A96}\x{11A98}-\x{11A99}\x{11C30}-\x{11C36}\x{11C38}-\x{11C3D}\x{11C92}-\x{11CA7}\x{11CAA}-\x{11CB0}\x{11CB2}-\x{11CB3}\x{11CB5}-\x{11CB6}\x{11D31}-\x{11D36}\x{11D3A}\x{11D3C}-\x{11D3D}\x{11D3F}-\x{11D45}\x{11D47}\x{11D90}-\x{11D91}\x{11D95}\x{11D97}\x{11EF3}-\x{11EF4}\x{16AF0}-\x{16AF4}\x{16B30}-\x{16B36}\x{16F4F}\x{16F8F}-\x{16F92}\x{16FE4}\x{1BC9D}-\x{1BC9E}\x{1D167}-\x{1D169}\x{1D17B}-\x{1D182}\x{1D185}-\x{1D18B}\x{1D1AA}-\x{1D1AD}\x{1D242}-\x{1D244}\x{1DA00}-\x{1DA36}\x{1DA3B}-\x{1DA6C}\x{1DA75}\x{1DA84}\x{1DA9B}-\x{1DA9F}\x{1DAA1}-\x{1DAAF}\x{1E000}-\x{1E006}\x{1E008}-\x{1E018}\x{1E01B}-\x{1E021}\x{1E023}-\x{1E024}\x{1E026}-\x{1E02A}\x{1E130}-\x{1E136}\x{1E2EC}-\x{1E2EF}\x{1E8D0}-\x{1E8D6}\x{1E944}-\x{1E94A}\x{E0100}-\x{E01EF}]*$/u';
22
+
23
+ const ZWNJ = '/([\x{A872}\x{10ACD}\x{10AD7}\x{10D00}\x{10FCB}\x{0620}\x{0626}\x{0628}\x{062A}-\x{062E}\x{0633}-\x{063F}\x{0641}-\x{0647}\x{0649}-\x{064A}\x{066E}-\x{066F}\x{0678}-\x{0687}\x{069A}-\x{06BF}\x{06C1}-\x{06C2}\x{06CC}\x{06CE}\x{06D0}-\x{06D1}\x{06FA}-\x{06FC}\x{06FF}\x{0712}-\x{0714}\x{071A}-\x{071D}\x{071F}-\x{0727}\x{0729}\x{072B}\x{072D}-\x{072E}\x{074E}-\x{0758}\x{075C}-\x{076A}\x{076D}-\x{0770}\x{0772}\x{0775}-\x{0777}\x{077A}-\x{077F}\x{07CA}-\x{07EA}\x{0841}-\x{0845}\x{0848}\x{084A}-\x{0853}\x{0855}\x{0860}\x{0862}-\x{0865}\x{0868}\x{08A0}-\x{08A9}\x{08AF}-\x{08B0}\x{08B3}-\x{08B4}\x{08B6}-\x{08B8}\x{08BA}-\x{08C7}\x{1807}\x{1820}-\x{1842}\x{1843}\x{1844}-\x{1878}\x{1887}-\x{18A8}\x{18AA}\x{A840}-\x{A871}\x{10AC0}-\x{10AC4}\x{10AD3}-\x{10AD6}\x{10AD8}-\x{10ADC}\x{10ADE}-\x{10AE0}\x{10AEB}-\x{10AEE}\x{10B80}\x{10B82}\x{10B86}-\x{10B88}\x{10B8A}-\x{10B8B}\x{10B8D}\x{10B90}\x{10BAD}-\x{10BAE}\x{10D01}-\x{10D21}\x{10D23}\x{10F30}-\x{10F32}\x{10F34}-\x{10F44}\x{10F51}-\x{10F53}\x{10FB0}\x{10FB2}-\x{10FB3}\x{10FB8}\x{10FBB}-\x{10FBC}\x{10FBE}-\x{10FBF}\x{10FC1}\x{10FC4}\x{10FCA}\x{1E900}-\x{1E943}][\x{00AD}\x{0300}-\x{036F}\x{0483}-\x{0487}\x{0488}-\x{0489}\x{0591}-\x{05BD}\x{05BF}\x{05C1}-\x{05C2}\x{05C4}-\x{05C5}\x{05C7}\x{0610}-\x{061A}\x{061C}\x{064B}-\x{065F}\x{0670}\x{06D6}-\x{06DC}\x{06DF}-\x{06E4}\x{06E7}-\x{06E8}\x{06EA}-\x{06ED}\x{070F}\x{0711}\x{0730}-\x{074A}\x{07A6}-\x{07B0}\x{07EB}-\x{07F3}\x{07FD}\x{0816}-\x{0819}\x{081B}-\x{0823}\x{0825}-\x{0827}\x{0829}-\x{082D}\x{0859}-\x{085B}\x{08D3}-\x{08E1}\x{08E3}-\x{0902}\x{093A}\x{093C}\x{0941}-\x{0948}\x{094D}\x{0951}-\x{0957}\x{0962}-\x{0963}\x{0981}\x{09BC}\x{09C1}-\x{09C4}\x{09CD}\x{09E2}-\x{09E3}\x{09FE}\x{0A01}-\x{0A02}\x{0A3C}\x{0A41}-\x{0A42}\x{0A47}-\x{0A48}\x{0A4B}-\x{0A4D}\x{0A51}\x{0A70}-\x{0A71}\x{0A75}\x{0A81}-\x{0A82}\x{0ABC}\x{0AC1}-\x{0AC5}\x{0AC7}-\x{0AC8}\x{0ACD}\x{0AE2}-\x{0AE3}\x{0AFA}-\x{0AFF}\x{0B01}\x{0B3C}\x{0B3F}\x{0B41}-\x{0B44}\x{0B4D}\x{0B55}-\x{0B56}\x{0B62}-\x{0B63}\x{0B82}\x{0BC0}\x{0BCD}\x{0C00}\x{0C04}\x{0C3E}-\x{0C40}\x{0C46}-\x{0C48}\x{0C4A}-\x{0C4D}\x{0C55}-\x{0C56}\x{0C62}-\x{0C63}\x{0C81}\x{0CBC}\x{0CBF}\x{0CC6}\x{0CCC}-\x{0CCD}\x{0CE2}-\x{0CE3}\x{0D00}-\x{0D01}\x{0D3B}-\x{0D3C}\x{0D41}-\x{0D44}\x{0D4D}\x{0D62}-\x{0D63}\x{0D81}\x{0DCA}\x{0DD2}-\x{0DD4}\x{0DD6}\x{0E31}\x{0E34}-\x{0E3A}\x{0E47}-\x{0E4E}\x{0EB1}\x{0EB4}-\x{0EBC}\x{0EC8}-\x{0ECD}\x{0F18}-\x{0F19}\x{0F35}\x{0F37}\x{0F39}\x{0F71}-\x{0F7E}\x{0F80}-\x{0F84}\x{0F86}-\x{0F87}\x{0F8D}-\x{0F97}\x{0F99}-\x{0FBC}\x{0FC6}\x{102D}-\x{1030}\x{1032}-\x{1037}\x{1039}-\x{103A}\x{103D}-\x{103E}\x{1058}-\x{1059}\x{105E}-\x{1060}\x{1071}-\x{1074}\x{1082}\x{1085}-\x{1086}\x{108D}\x{109D}\x{135D}-\x{135F}\x{1712}-\x{1714}\x{1732}-\x{1734}\x{1752}-\x{1753}\x{1772}-\x{1773}\x{17B4}-\x{17B5}\x{17B7}-\x{17BD}\x{17C6}\x{17C9}-\x{17D3}\x{17DD}\x{180B}-\x{180D}\x{1885}-\x{1886}\x{18A9}\x{1920}-\x{1922}\x{1927}-\x{1928}\x{1932}\x{1939}-\x{193B}\x{1A17}-\x{1A18}\x{1A1B}\x{1A56}\x{1A58}-\x{1A5E}\x{1A60}\x{1A62}\x{1A65}-\x{1A6C}\x{1A73}-\x{1A7C}\x{1A7F}\x{1AB0}-\x{1ABD}\x{1ABE}\x{1ABF}-\x{1AC0}\x{1B00}-\x{1B03}\x{1B34}\x{1B36}-\x{1B3A}\x{1B3C}\x{1B42}\x{1B6B}-\x{1B73}\x{1B80}-\x{1B81}\x{1BA2}-\x{1BA5}\x{1BA8}-\x{1BA9}\x{1BAB}-\x{1BAD}\x{1BE6}\x{1BE8}-\x{1BE9}\x{1BED}\x{1BEF}-\x{1BF1}\x{1C2C}-\x{1C33}\x{1C36}-\x{1C37}\x{1CD0}-\x{1CD2}\x{1CD4}-\x{1CE0}\x{1CE2}-\x{1CE8}\x{1CED}\x{1CF4}\x{1CF8}-\x{1CF9}\x{1DC0}-\x{1DF9}\x{1DFB}-\x{1DFF}\x{200B}\x{200E}-\x{200F}\x{202A}-\x{202E}\x{2060}-\x{2064}\x{206A}-\x{206F}\x{20D0}-\x{20DC}\x{20DD}-\x{20E0}\x{20E1}\x{20E2}-\x{20E4}\x{20E5}-\x{20F0}\x{2CEF}-\x{2CF1}\x{2D7F}\x{2DE0}-\x{2DFF}\x{302A}-\x{302D}\x{3099}-\x{309A}\x{A66F}\x{A670}-\x{A672}\x{A674}-\x{A67D}\x{A69E}-\x{A69F}\x{A6F0}-\x{A6F1}\x{A802}\x{A806}\x{A80B}\x{A825}-\x{A826}\x{A82C}\x{A8C4}-\x{A8C5}\x{A8E0}-\x{A8F1}\x{A8FF}\x{A926}-\x{A92D}\x{A947}-\x{A951}\x{A980}-\x{A982}\x{A9B3}\x{A9B6}-\x{A9B9}\x{A9BC}-\x{A9BD}\x{A9E5}\x{AA29}-\x{AA2E}\x{AA31}-\x{AA32}\x{AA35}-\x{AA36}\x{AA43}\x{AA4C}\x{AA7C}\x{AAB0}\x{AAB2}-\x{AAB4}\x{AAB7}-\x{AAB8}\x{AABE}-\x{AABF}\x{AAC1}\x{AAEC}-\x{AAED}\x{AAF6}\x{ABE5}\x{ABE8}\x{ABED}\x{FB1E}\x{FE00}-\x{FE0F}\x{FE20}-\x{FE2F}\x{FEFF}\x{FFF9}-\x{FFFB}\x{101FD}\x{102E0}\x{10376}-\x{1037A}\x{10A01}-\x{10A03}\x{10A05}-\x{10A06}\x{10A0C}-\x{10A0F}\x{10A38}-\x{10A3A}\x{10A3F}\x{10AE5}-\x{10AE6}\x{10D24}-\x{10D27}\x{10EAB}-\x{10EAC}\x{10F46}-\x{10F50}\x{11001}\x{11038}-\x{11046}\x{1107F}-\x{11081}\x{110B3}-\x{110B6}\x{110B9}-\x{110BA}\x{11100}-\x{11102}\x{11127}-\x{1112B}\x{1112D}-\x{11134}\x{11173}\x{11180}-\x{11181}\x{111B6}-\x{111BE}\x{111C9}-\x{111CC}\x{111CF}\x{1122F}-\x{11231}\x{11234}\x{11236}-\x{11237}\x{1123E}\x{112DF}\x{112E3}-\x{112EA}\x{11300}-\x{11301}\x{1133B}-\x{1133C}\x{11340}\x{11366}-\x{1136C}\x{11370}-\x{11374}\x{11438}-\x{1143F}\x{11442}-\x{11444}\x{11446}\x{1145E}\x{114B3}-\x{114B8}\x{114BA}\x{114BF}-\x{114C0}\x{114C2}-\x{114C3}\x{115B2}-\x{115B5}\x{115BC}-\x{115BD}\x{115BF}-\x{115C0}\x{115DC}-\x{115DD}\x{11633}-\x{1163A}\x{1163D}\x{1163F}-\x{11640}\x{116AB}\x{116AD}\x{116B0}-\x{116B5}\x{116B7}\x{1171D}-\x{1171F}\x{11722}-\x{11725}\x{11727}-\x{1172B}\x{1182F}-\x{11837}\x{11839}-\x{1183A}\x{1193B}-\x{1193C}\x{1193E}\x{11943}\x{119D4}-\x{119D7}\x{119DA}-\x{119DB}\x{119E0}\x{11A01}-\x{11A0A}\x{11A33}-\x{11A38}\x{11A3B}-\x{11A3E}\x{11A47}\x{11A51}-\x{11A56}\x{11A59}-\x{11A5B}\x{11A8A}-\x{11A96}\x{11A98}-\x{11A99}\x{11C30}-\x{11C36}\x{11C38}-\x{11C3D}\x{11C3F}\x{11C92}-\x{11CA7}\x{11CAA}-\x{11CB0}\x{11CB2}-\x{11CB3}\x{11CB5}-\x{11CB6}\x{11D31}-\x{11D36}\x{11D3A}\x{11D3C}-\x{11D3D}\x{11D3F}-\x{11D45}\x{11D47}\x{11D90}-\x{11D91}\x{11D95}\x{11D97}\x{11EF3}-\x{11EF4}\x{13430}-\x{13438}\x{16AF0}-\x{16AF4}\x{16B30}-\x{16B36}\x{16F4F}\x{16F8F}-\x{16F92}\x{16FE4}\x{1BC9D}-\x{1BC9E}\x{1BCA0}-\x{1BCA3}\x{1D167}-\x{1D169}\x{1D173}-\x{1D17A}\x{1D17B}-\x{1D182}\x{1D185}-\x{1D18B}\x{1D1AA}-\x{1D1AD}\x{1D242}-\x{1D244}\x{1DA00}-\x{1DA36}\x{1DA3B}-\x{1DA6C}\x{1DA75}\x{1DA84}\x{1DA9B}-\x{1DA9F}\x{1DAA1}-\x{1DAAF}\x{1E000}-\x{1E006}\x{1E008}-\x{1E018}\x{1E01B}-\x{1E021}\x{1E023}-\x{1E024}\x{1E026}-\x{1E02A}\x{1E130}-\x{1E136}\x{1E2EC}-\x{1E2EF}\x{1E8D0}-\x{1E8D6}\x{1E944}-\x{1E94A}\x{1E94B}\x{E0001}\x{E0020}-\x{E007F}\x{E0100}-\x{E01EF}]*\x{200C}[\x{00AD}\x{0300}-\x{036F}\x{0483}-\x{0487}\x{0488}-\x{0489}\x{0591}-\x{05BD}\x{05BF}\x{05C1}-\x{05C2}\x{05C4}-\x{05C5}\x{05C7}\x{0610}-\x{061A}\x{061C}\x{064B}-\x{065F}\x{0670}\x{06D6}-\x{06DC}\x{06DF}-\x{06E4}\x{06E7}-\x{06E8}\x{06EA}-\x{06ED}\x{070F}\x{0711}\x{0730}-\x{074A}\x{07A6}-\x{07B0}\x{07EB}-\x{07F3}\x{07FD}\x{0816}-\x{0819}\x{081B}-\x{0823}\x{0825}-\x{0827}\x{0829}-\x{082D}\x{0859}-\x{085B}\x{08D3}-\x{08E1}\x{08E3}-\x{0902}\x{093A}\x{093C}\x{0941}-\x{0948}\x{094D}\x{0951}-\x{0957}\x{0962}-\x{0963}\x{0981}\x{09BC}\x{09C1}-\x{09C4}\x{09CD}\x{09E2}-\x{09E3}\x{09FE}\x{0A01}-\x{0A02}\x{0A3C}\x{0A41}-\x{0A42}\x{0A47}-\x{0A48}\x{0A4B}-\x{0A4D}\x{0A51}\x{0A70}-\x{0A71}\x{0A75}\x{0A81}-\x{0A82}\x{0ABC}\x{0AC1}-\x{0AC5}\x{0AC7}-\x{0AC8}\x{0ACD}\x{0AE2}-\x{0AE3}\x{0AFA}-\x{0AFF}\x{0B01}\x{0B3C}\x{0B3F}\x{0B41}-\x{0B44}\x{0B4D}\x{0B55}-\x{0B56}\x{0B62}-\x{0B63}\x{0B82}\x{0BC0}\x{0BCD}\x{0C00}\x{0C04}\x{0C3E}-\x{0C40}\x{0C46}-\x{0C48}\x{0C4A}-\x{0C4D}\x{0C55}-\x{0C56}\x{0C62}-\x{0C63}\x{0C81}\x{0CBC}\x{0CBF}\x{0CC6}\x{0CCC}-\x{0CCD}\x{0CE2}-\x{0CE3}\x{0D00}-\x{0D01}\x{0D3B}-\x{0D3C}\x{0D41}-\x{0D44}\x{0D4D}\x{0D62}-\x{0D63}\x{0D81}\x{0DCA}\x{0DD2}-\x{0DD4}\x{0DD6}\x{0E31}\x{0E34}-\x{0E3A}\x{0E47}-\x{0E4E}\x{0EB1}\x{0EB4}-\x{0EBC}\x{0EC8}-\x{0ECD}\x{0F18}-\x{0F19}\x{0F35}\x{0F37}\x{0F39}\x{0F71}-\x{0F7E}\x{0F80}-\x{0F84}\x{0F86}-\x{0F87}\x{0F8D}-\x{0F97}\x{0F99}-\x{0FBC}\x{0FC6}\x{102D}-\x{1030}\x{1032}-\x{1037}\x{1039}-\x{103A}\x{103D}-\x{103E}\x{1058}-\x{1059}\x{105E}-\x{1060}\x{1071}-\x{1074}\x{1082}\x{1085}-\x{1086}\x{108D}\x{109D}\x{135D}-\x{135F}\x{1712}-\x{1714}\x{1732}-\x{1734}\x{1752}-\x{1753}\x{1772}-\x{1773}\x{17B4}-\x{17B5}\x{17B7}-\x{17BD}\x{17C6}\x{17C9}-\x{17D3}\x{17DD}\x{180B}-\x{180D}\x{1885}-\x{1886}\x{18A9}\x{1920}-\x{1922}\x{1927}-\x{1928}\x{1932}\x{1939}-\x{193B}\x{1A17}-\x{1A18}\x{1A1B}\x{1A56}\x{1A58}-\x{1A5E}\x{1A60}\x{1A62}\x{1A65}-\x{1A6C}\x{1A73}-\x{1A7C}\x{1A7F}\x{1AB0}-\x{1ABD}\x{1ABE}\x{1ABF}-\x{1AC0}\x{1B00}-\x{1B03}\x{1B34}\x{1B36}-\x{1B3A}\x{1B3C}\x{1B42}\x{1B6B}-\x{1B73}\x{1B80}-\x{1B81}\x{1BA2}-\x{1BA5}\x{1BA8}-\x{1BA9}\x{1BAB}-\x{1BAD}\x{1BE6}\x{1BE8}-\x{1BE9}\x{1BED}\x{1BEF}-\x{1BF1}\x{1C2C}-\x{1C33}\x{1C36}-\x{1C37}\x{1CD0}-\x{1CD2}\x{1CD4}-\x{1CE0}\x{1CE2}-\x{1CE8}\x{1CED}\x{1CF4}\x{1CF8}-\x{1CF9}\x{1DC0}-\x{1DF9}\x{1DFB}-\x{1DFF}\x{200B}\x{200E}-\x{200F}\x{202A}-\x{202E}\x{2060}-\x{2064}\x{206A}-\x{206F}\x{20D0}-\x{20DC}\x{20DD}-\x{20E0}\x{20E1}\x{20E2}-\x{20E4}\x{20E5}-\x{20F0}\x{2CEF}-\x{2CF1}\x{2D7F}\x{2DE0}-\x{2DFF}\x{302A}-\x{302D}\x{3099}-\x{309A}\x{A66F}\x{A670}-\x{A672}\x{A674}-\x{A67D}\x{A69E}-\x{A69F}\x{A6F0}-\x{A6F1}\x{A802}\x{A806}\x{A80B}\x{A825}-\x{A826}\x{A82C}\x{A8C4}-\x{A8C5}\x{A8E0}-\x{A8F1}\x{A8FF}\x{A926}-\x{A92D}\x{A947}-\x{A951}\x{A980}-\x{A982}\x{A9B3}\x{A9B6}-\x{A9B9}\x{A9BC}-\x{A9BD}\x{A9E5}\x{AA29}-\x{AA2E}\x{AA31}-\x{AA32}\x{AA35}-\x{AA36}\x{AA43}\x{AA4C}\x{AA7C}\x{AAB0}\x{AAB2}-\x{AAB4}\x{AAB7}-\x{AAB8}\x{AABE}-\x{AABF}\x{AAC1}\x{AAEC}-\x{AAED}\x{AAF6}\x{ABE5}\x{ABE8}\x{ABED}\x{FB1E}\x{FE00}-\x{FE0F}\x{FE20}-\x{FE2F}\x{FEFF}\x{FFF9}-\x{FFFB}\x{101FD}\x{102E0}\x{10376}-\x{1037A}\x{10A01}-\x{10A03}\x{10A05}-\x{10A06}\x{10A0C}-\x{10A0F}\x{10A38}-\x{10A3A}\x{10A3F}\x{10AE5}-\x{10AE6}\x{10D24}-\x{10D27}\x{10EAB}-\x{10EAC}\x{10F46}-\x{10F50}\x{11001}\x{11038}-\x{11046}\x{1107F}-\x{11081}\x{110B3}-\x{110B6}\x{110B9}-\x{110BA}\x{11100}-\x{11102}\x{11127}-\x{1112B}\x{1112D}-\x{11134}\x{11173}\x{11180}-\x{11181}\x{111B6}-\x{111BE}\x{111C9}-\x{111CC}\x{111CF}\x{1122F}-\x{11231}\x{11234}\x{11236}-\x{11237}\x{1123E}\x{112DF}\x{112E3}-\x{112EA}\x{11300}-\x{11301}\x{1133B}-\x{1133C}\x{11340}\x{11366}-\x{1136C}\x{11370}-\x{11374}\x{11438}-\x{1143F}\x{11442}-\x{11444}\x{11446}\x{1145E}\x{114B3}-\x{114B8}\x{114BA}\x{114BF}-\x{114C0}\x{114C2}-\x{114C3}\x{115B2}-\x{115B5}\x{115BC}-\x{115BD}\x{115BF}-\x{115C0}\x{115DC}-\x{115DD}\x{11633}-\x{1163A}\x{1163D}\x{1163F}-\x{11640}\x{116AB}\x{116AD}\x{116B0}-\x{116B5}\x{116B7}\x{1171D}-\x{1171F}\x{11722}-\x{11725}\x{11727}-\x{1172B}\x{1182F}-\x{11837}\x{11839}-\x{1183A}\x{1193B}-\x{1193C}\x{1193E}\x{11943}\x{119D4}-\x{119D7}\x{119DA}-\x{119DB}\x{119E0}\x{11A01}-\x{11A0A}\x{11A33}-\x{11A38}\x{11A3B}-\x{11A3E}\x{11A47}\x{11A51}-\x{11A56}\x{11A59}-\x{11A5B}\x{11A8A}-\x{11A96}\x{11A98}-\x{11A99}\x{11C30}-\x{11C36}\x{11C38}-\x{11C3D}\x{11C3F}\x{11C92}-\x{11CA7}\x{11CAA}-\x{11CB0}\x{11CB2}-\x{11CB3}\x{11CB5}-\x{11CB6}\x{11D31}-\x{11D36}\x{11D3A}\x{11D3C}-\x{11D3D}\x{11D3F}-\x{11D45}\x{11D47}\x{11D90}-\x{11D91}\x{11D95}\x{11D97}\x{11EF3}-\x{11EF4}\x{13430}-\x{13438}\x{16AF0}-\x{16AF4}\x{16B30}-\x{16B36}\x{16F4F}\x{16F8F}-\x{16F92}\x{16FE4}\x{1BC9D}-\x{1BC9E}\x{1BCA0}-\x{1BCA3}\x{1D167}-\x{1D169}\x{1D173}-\x{1D17A}\x{1D17B}-\x{1D182}\x{1D185}-\x{1D18B}\x{1D1AA}-\x{1D1AD}\x{1D242}-\x{1D244}\x{1DA00}-\x{1DA36}\x{1DA3B}-\x{1DA6C}\x{1DA75}\x{1DA84}\x{1DA9B}-\x{1DA9F}\x{1DAA1}-\x{1DAAF}\x{1E000}-\x{1E006}\x{1E008}-\x{1E018}\x{1E01B}-\x{1E021}\x{1E023}-\x{1E024}\x{1E026}-\x{1E02A}\x{1E130}-\x{1E136}\x{1E2EC}-\x{1E2EF}\x{1E8D0}-\x{1E8D6}\x{1E944}-\x{1E94A}\x{1E94B}\x{E0001}\x{E0020}-\x{E007F}\x{E0100}-\x{E01EF}]*)[\x{0622}-\x{0625}\x{0627}\x{0629}\x{062F}-\x{0632}\x{0648}\x{0671}-\x{0673}\x{0675}-\x{0677}\x{0688}-\x{0699}\x{06C0}\x{06C3}-\x{06CB}\x{06CD}\x{06CF}\x{06D2}-\x{06D3}\x{06D5}\x{06EE}-\x{06EF}\x{0710}\x{0715}-\x{0719}\x{071E}\x{0728}\x{072A}\x{072C}\x{072F}\x{074D}\x{0759}-\x{075B}\x{076B}-\x{076C}\x{0771}\x{0773}-\x{0774}\x{0778}-\x{0779}\x{0840}\x{0846}-\x{0847}\x{0849}\x{0854}\x{0856}-\x{0858}\x{0867}\x{0869}-\x{086A}\x{08AA}-\x{08AC}\x{08AE}\x{08B1}-\x{08B2}\x{08B9}\x{10AC5}\x{10AC7}\x{10AC9}-\x{10ACA}\x{10ACE}-\x{10AD2}\x{10ADD}\x{10AE1}\x{10AE4}\x{10AEF}\x{10B81}\x{10B83}-\x{10B85}\x{10B89}\x{10B8C}\x{10B8E}-\x{10B8F}\x{10B91}\x{10BA9}-\x{10BAC}\x{10D22}\x{10F33}\x{10F54}\x{10FB4}-\x{10FB6}\x{10FB9}-\x{10FBA}\x{10FBD}\x{10FC2}-\x{10FC3}\x{10FC9}\x{0620}\x{0626}\x{0628}\x{062A}-\x{062E}\x{0633}-\x{063F}\x{0641}-\x{0647}\x{0649}-\x{064A}\x{066E}-\x{066F}\x{0678}-\x{0687}\x{069A}-\x{06BF}\x{06C1}-\x{06C2}\x{06CC}\x{06CE}\x{06D0}-\x{06D1}\x{06FA}-\x{06FC}\x{06FF}\x{0712}-\x{0714}\x{071A}-\x{071D}\x{071F}-\x{0727}\x{0729}\x{072B}\x{072D}-\x{072E}\x{074E}-\x{0758}\x{075C}-\x{076A}\x{076D}-\x{0770}\x{0772}\x{0775}-\x{0777}\x{077A}-\x{077F}\x{07CA}-\x{07EA}\x{0841}-\x{0845}\x{0848}\x{084A}-\x{0853}\x{0855}\x{0860}\x{0862}-\x{0865}\x{0868}\x{08A0}-\x{08A9}\x{08AF}-\x{08B0}\x{08B3}-\x{08B4}\x{08B6}-\x{08B8}\x{08BA}-\x{08C7}\x{1807}\x{1820}-\x{1842}\x{1843}\x{1844}-\x{1878}\x{1887}-\x{18A8}\x{18AA}\x{A840}-\x{A871}\x{10AC0}-\x{10AC4}\x{10AD3}-\x{10AD6}\x{10AD8}-\x{10ADC}\x{10ADE}-\x{10AE0}\x{10AEB}-\x{10AEE}\x{10B80}\x{10B82}\x{10B86}-\x{10B88}\x{10B8A}-\x{10B8B}\x{10B8D}\x{10B90}\x{10BAD}-\x{10BAE}\x{10D01}-\x{10D21}\x{10D23}\x{10F30}-\x{10F32}\x{10F34}-\x{10F44}\x{10F51}-\x{10F53}\x{10FB0}\x{10FB2}-\x{10FB3}\x{10FB8}\x{10FBB}-\x{10FBC}\x{10FBE}-\x{10FBF}\x{10FC1}\x{10FC4}\x{10FCA}\x{1E900}-\x{1E943}]/u';
24
+ }
vendor/symfony/polyfill-intl-idn/Resources/unidata/deviation.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return array (
4
+ 223 => 'ss',
5
+ 962 => 'σ',
6
+ 8204 => '',
7
+ 8205 => '',
8
+ );
vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php ADDED
@@ -0,0 +1,2638 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return array (
4
+ 888 => true,
5
+ 889 => true,
6
+ 896 => true,
7
+ 897 => true,
8
+ 898 => true,
9
+ 899 => true,
10
+ 907 => true,
11
+ 909 => true,
12
+ 930 => true,
13
+ 1216 => true,
14
+ 1328 => true,
15
+ 1367 => true,
16
+ 1368 => true,
17
+ 1419 => true,
18
+ 1420 => true,
19
+ 1424 => true,
20
+ 1480 => true,
21
+ 1481 => true,
22
+ 1482 => true,
23
+ 1483 => true,
24
+ 1484 => true,
25
+ 1485 => true,
26
+ 1486 => true,
27
+ 1487 => true,
28
+ 1515 => true,
29
+ 1516 => true,
30
+ 1517 => true,
31
+ 1518 => true,
32
+ 1525 => true,
33
+ 1526 => true,
34
+ 1527 => true,
35
+ 1528 => true,
36
+ 1529 => true,
37
+ 1530 => true,
38
+ 1531 => true,
39
+ 1532 => true,
40
+ 1533 => true,
41
+ 1534 => true,
42
+ 1535 => true,
43
+ 1536 => true,
44
+ 1537 => true,
45
+ 1538 => true,
46
+ 1539 => true,
47
+ 1540 => true,
48
+ 1541 => true,
49
+ 1564 => true,
50
+ 1565 => true,
51
+ 1757 => true,
52
+ 1806 => true,
53
+ 1807 => true,
54
+ 1867 => true,
55
+ 1868 => true,
56
+ 1970 => true,
57
+ 1971 => true,
58
+ 1972 => true,
59
+ 1973 => true,
60
+ 1974 => true,
61
+ 1975 => true,
62
+ 1976 => true,
63
+ 1977 => true,
64
+ 1978 => true,
65
+ 1979 => true,
66
+ 1980 => true,
67
+ 1981 => true,
68
+ 1982 => true,
69
+ 1983 => true,
70
+ 2043 => true,
71
+ 2044 => true,
72
+ 2094 => true,
73
+ 2095 => true,
74
+ 2111 => true,
75
+ 2140 => true,
76
+ 2141 => true,
77
+ 2143 => true,
78
+ 2229 => true,
79
+ 2248 => true,
80
+ 2249 => true,
81
+ 2250 => true,
82
+ 2251 => true,
83
+ 2252 => true,
84
+ 2253 => true,
85
+ 2254 => true,
86
+ 2255 => true,
87
+ 2256 => true,
88
+ 2257 => true,
89
+ 2258 => true,
90
+ 2274 => true,
91
+ 2436 => true,
92
+ 2445 => true,
93
+ 2446 => true,
94
+ 2449 => true,
95
+ 2450 => true,
96
+ 2473 => true,
97
+ 2481 => true,
98
+ 2483 => true,
99
+ 2484 => true,
100
+ 2485 => true,
101
+ 2490 => true,
102
+ 2491 => true,
103
+ 2501 => true,
104
+ 2502 => true,
105
+ 2505 => true,
106
+ 2506 => true,
107
+ 2511 => true,
108
+ 2512 => true,
109
+ 2513 => true,
110
+ 2514 => true,
111
+ 2515 => true,
112
+ 2516 => true,
113
+ 2517 => true,
114
+ 2518 => true,
115
+ 2520 => true,
116
+ 2521 => true,
117
+ 2522 => true,
118
+ 2523 => true,
119
+ 2526 => true,
120
+ 2532 => true,
121
+ 2533 => true,
122
+ 2559 => true,
123
+ 2560 => true,
124
+ 2564 => true,
125
+ 2571 => true,
126
+ 2572 => true,
127
+ 2573 => true,
128
+ 2574 => true,
129
+ 2577 => true,
130
+ 2578 => true,
131
+ 2601 => true,
132
+ 2609 => true,
133
+ 2612 => true,
134
+ 2615 => true,
135
+ 2618 => true,
136
+ 2619 => true,
137
+ 2621 => true,
138
+ 2627 => true,
139
+ 2628 => true,
140
+ 2629 => true,
141
+ 2630 => true,
142
+ 2633 => true,
143
+ 2634 => true,
144
+ 2638 => true,
145
+ 2639 => true,
146
+ 2640 => true,
147
+ 2642 => true,
148
+ 2643 => true,
149
+ 2644 => true,
150
+ 2645 => true,
151
+ 2646 => true,
152
+ 2647 => true,
153
+ 2648 => true,
154
+ 2653 => true,
155
+ 2655 => true,
156
+ 2656 => true,
157
+ 2657 => true,
158
+ 2658 => true,
159
+ 2659 => true,
160
+ 2660 => true,
161
+ 2661 => true,
162
+ 2679 => true,
163
+ 2680 => true,
164
+ 2681 => true,
165
+ 2682 => true,
166
+ 2683 => true,
167
+ 2684 => true,
168
+ 2685 => true,
169
+ 2686 => true,
170
+ 2687 => true,
171
+ 2688 => true,
172
+ 2692 => true,
173
+ 2702 => true,
174
+ 2706 => true,
175
+ 2729 => true,
176
+ 2737 => true,
177
+ 2740 => true,
178
+ 2746 => true,
179
+ 2747 => true,
180
+ 2758 => true,
181
+ 2762 => true,
182
+ 2766 => true,
183
+ 2767 => true,
184
+ 2769 => true,
185
+ 2770 => true,
186
+ 2771 => true,
187
+ 2772 => true,
188
+ 2773 => true,
189
+ 2774 => true,
190
+ 2775 => true,
191
+ 2776 => true,
192
+ 2777 => true,
193
+ 2778 => true,
194
+ 2779 => true,
195
+ 2780 => true,
196
+ 2781 => true,
197
+ 2782 => true,
198
+ 2783 => true,
199
+ 2788 => true,
200
+ 2789 => true,
201
+ 2802 => true,
202
+ 2803 => true,
203
+ 2804 => true,
204
+ 2805 => true,
205
+ 2806 => true,
206
+ 2807 => true,
207
+ 2808 => true,
208
+ 2816 => true,
209
+ 2820 => true,
210
+ 2829 => true,
211
+ 2830 => true,
212
+ 2833 => true,
213
+ 2834 => true,
214
+ 2857 => true,
215
+ 2865 => true,
216
+ 2868 => true,
217
+ 2874 => true,
218
+ 2875 => true,
219
+ 2885 => true,
220
+ 2886 => true,
221
+ 2889 => true,
222
+ 2890 => true,
223
+ 2894 => true,
224
+ 2895 => true,
225
+ 2896 => true,
226
+ 2897 => true,
227
+ 2898 => true,
228
+ 2899 => true,
229
+ 2900 => true,
230
+ 2904 => true,
231
+ 2905 => true,
232
+ 2906 => true,
233
+ 2907 => true,
234
+ 2910 => true,
235
+ 2916 => true,
236
+ 2917 => true,
237
+ 2936 => true,
238
+ 2937 => true,
239
+ 2938 => true,
240
+ 2939 => true,
241
+ 2940 => true,
242
+ 2941 => true,
243
+ 2942 => true,
244
+ 2943 => true,
245
+ 2944 => true,
246
+ 2945 => true,
247
+ 2948 => true,
248
+ 2955 => true,
249
+ 2956 => true,
250
+ 2957 => true,
251
+ 2961 => true,
252
+ 2966 => true,
253
+ 2967 => true,
254
+ 2968 => true,
255
+ 2971 => true,
256
+ 2973 => true,
257
+ 2976 => true,
258
+ 2977 => true,
259
+ 2978 => true,
260
+ 2981 => true,
261
+ 2982 => true,
262
+ 2983 => true,
263
+ 2987 => true,
264
+ 2988 => true,
265
+ 2989 => true,
266
+ 3002 => true,
267
+ 3003 => true,
268
+ 3004 => true,
269
+ 3005 => true,
270
+ 3011 => true,
271
+ 3012 => true,
272
+ 3013 => true,
273
+ 3017 => true,
274
+ 3022 => true,
275
+ 3023 => true,
276
+ 3025 => true,
277
+ 3026 => true,
278
+ 3027 => true,
279
+ 3028 => true,
280
+ 3029 => true,
281
+ 3030 => true,
282
+ 3032 => true,
283
+ 3033 => true,
284
+ 3034 => true,
285
+ 3035 => true,
286
+ 3036 => true,
287
+ 3037 => true,
288
+ 3038 => true,
289
+ 3039 => true,
290
+ 3040 => true,
291
+ 3041 => true,
292
+ 3042 => true,
293
+ 3043 => true,
294
+ 3044 => true,
295
+ 3045 => true,
296
+ 3067 => true,
297
+ 3068 => true,
298
+ 3069 => true,
299
+ 3070 => true,
300
+ 3071 => true,
301
+ 3085 => true,
302
+ 3089 => true,
303
+ 3113 => true,
304
+ 3130 => true,
305
+ 3131 => true,
306
+ 3132 => true,
307
+ 3141 => true,
308
+ 3145 => true,
309
+ 3150 => true,
310
+ 3151 => true,
311
+ 3152 => true,
312
+ 3153 => true,
313
+ 3154 => true,
314
+ 3155 => true,
315
+ 3156 => true,
316
+ 3159 => true,
317
+ 3163 => true,
318
+ 3164 => true,
319
+ 3165 => true,
320
+ 3166 => true,
321
+ 3167 => true,
322
+ 3172 => true,
323
+ 3173 => true,
324
+ 3184 => true,
325
+ 3185 => true,
326
+ 3186 => true,
327
+ 3187 => true,
328
+ 3188 => true,
329
+ 3189 => true,
330
+ 3190 => true,
331
+ 3213 => true,
332
+ 3217 => true,
333
+ 3241 => true,
334
+ 3252 => true,
335
+ 3258 => true,
336
+ 3259 => true,
337
+ 3269 => true,
338
+ 3273 => true,
339
+ 3278 => true,
340
+ 3279 => true,
341
+ 3280 => true,
342
+ 3281 => true,
343
+ 3282 => true,
344
+ 3283 => true,
345
+ 3284 => true,
346
+ 3287 => true,
347
+ 3288 => true,
348
+ 3289 => true,
349
+ 3290 => true,
350
+ 3291 => true,
351
+ 3292 => true,
352
+ 3293 => true,
353
+ 3295 => true,
354
+ 3300 => true,
355
+ 3301 => true,
356
+ 3312 => true,
357
+ 3315 => true,
358
+ 3316 => true,
359
+ 3317 => true,
360
+ 3318 => true,
361
+ 3319 => true,
362
+ 3320 => true,
363
+ 3321 => true,
364
+ 3322 => true,
365
+ 3323 => true,
366
+ 3324 => true,
367
+ 3325 => true,
368
+ 3326 => true,
369
+ 3327 => true,
370
+ 3341 => true,
371
+ 3345 => true,
372
+ 3397 => true,
373
+ 3401 => true,
374
+ 3408 => true,
375
+ 3409 => true,
376
+ 3410 => true,
377
+ 3411 => true,
378
+ 3428 => true,
379
+ 3429 => true,
380
+ 3456 => true,
381
+ 3460 => true,
382
+ 3479 => true,
383
+ 3480 => true,
384
+ 3481 => true,
385
+ 3506 => true,
386
+ 3516 => true,
387
+ 3518 => true,
388
+ 3519 => true,
389
+ 3527 => true,
390
+ 3528 => true,
391
+ 3529 => true,
392
+ 3531 => true,
393
+ 3532 => true,
394
+ 3533 => true,
395
+ 3534 => true,
396
+ 3541 => true,
397
+ 3543 => true,
398
+ 3552 => true,
399
+ 3553 => true,
400
+ 3554 => true,
401
+ 3555 => true,
402
+ 3556 => true,
403
+ 3557 => true,
404
+ 3568 => true,
405
+ 3569 => true,
406
+ 3573 => true,
407
+ 3574 => true,
408
+ 3575 => true,
409
+ 3576 => true,
410
+ 3577 => true,
411
+ 3578 => true,
412
+ 3579 => true,
413
+ 3580 => true,
414
+ 3581 => true,
415
+ 3582 => true,
416
+ 3583 => true,
417
+ 3584 => true,
418
+ 3643 => true,
419
+ 3644 => true,
420
+ 3645 => true,
421
+ 3646 => true,
422
+ 3715 => true,
423
+ 3717 => true,
424
+ 3723 => true,
425
+ 3748 => true,
426
+ 3750 => true,
427
+ 3774 => true,
428
+ 3775 => true,
429
+ 3781 => true,
430
+ 3783 => true,
431
+ 3790 => true,
432
+ 3791 => true,
433
+ 3802 => true,
434
+ 3803 => true,
435
+ 3912 => true,
436
+ 3949 => true,
437
+ 3950 => true,
438
+ 3951 => true,
439
+ 3952 => true,
440
+ 3992 => true,
441
+ 4029 => true,
442
+ 4045 => true,
443
+ 4294 => true,
444
+ 4296 => true,
445
+ 4297 => true,
446
+ 4298 => true,
447
+ 4299 => true,
448
+ 4300 => true,
449
+ 4302 => true,
450
+ 4303 => true,
451
+ 4447 => true,
452
+ 4448 => true,
453
+ 4681 => true,
454
+ 4686 => true,
455
+ 4687 => true,
456
+ 4695 => true,
457
+ 4697 => true,
458
+ 4702 => true,
459
+ 4703 => true,
460
+ 4745 => true,
461
+ 4750 => true,
462
+ 4751 => true,
463
+ 4785 => true,
464
+ 4790 => true,
465
+ 4791 => true,
466
+ 4799 => true,
467
+ 4801 => true,
468
+ 4806 => true,
469
+ 4807 => true,
470
+ 4823 => true,
471
+ 4881 => true,
472
+ 4886 => true,
473
+ 4887 => true,
474
+ 4955 => true,
475
+ 4956 => true,
476
+ 4989 => true,
477
+ 4990 => true,
478
+ 4991 => true,
479
+ 5018 => true,
480
+ 5019 => true,
481
+ 5020 => true,
482
+ 5021 => true,
483
+ 5022 => true,
484
+ 5023 => true,
485
+ 5110 => true,
486
+ 5111 => true,
487
+ 5118 => true,
488
+ 5119 => true,
489
+ 5760 => true,
490
+ 5789 => true,
491
+ 5790 => true,
492
+ 5791 => true,
493
+ 5881 => true,
494
+ 5882 => true,
495
+ 5883 => true,
496
+ 5884 => true,
497
+ 5885 => true,
498
+ 5886 => true,
499
+ 5887 => true,
500
+ 5901 => true,
501
+ 5909 => true,
502
+ 5910 => true,
503
+ 5911 => true,
504
+ 5912 => true,
505
+ 5913 => true,
506
+ 5914 => true,
507
+ 5915 => true,
508
+ 5916 => true,
509
+ 5917 => true,
510
+ 5918 => true,
511
+ 5919 => true,
512
+ 5943 => true,
513
+ 5944 => true,
514
+ 5945 => true,
515
+ 5946 => true,
516
+ 5947 => true,
517
+ 5948 => true,
518
+ 5949 => true,
519
+ 5950 => true,
520
+ 5951 => true,
521
+ 5972 => true,
522
+ 5973 => true,
523
+ 5974 => true,
524
+ 5975 => true,
525
+ 5976 => true,
526
+ 5977 => true,
527
+ 5978 => true,
528
+ 5979 => true,
529
+ 5980 => true,
530
+ 5981 => true,
531
+ 5982 => true,
532
+ 5983 => true,
533
+ 5997 => true,
534
+ 6001 => true,
535
+ 6004 => true,
536
+ 6005 => true,
537
+ 6006 => true,
538
+ 6007 => true,
539
+ 6008 => true,
540
+ 6009 => true,
541
+ 6010 => true,
542
+ 6011 => true,
543
+ 6012 => true,
544
+ 6013 => true,
545
+ 6014 => true,
546
+ 6015 => true,
547
+ 6068 => true,
548
+ 6069 => true,
549
+ 6110 => true,
550
+ 6111 => true,
551
+ 6122 => true,
552
+ 6123 => true,
553
+ 6124 => true,
554
+ 6125 => true,
555
+ 6126 => true,
556
+ 6127 => true,
557
+ 6138 => true,
558
+ 6139 => true,
559
+ 6140 => true,
560
+ 6141 => true,
561
+ 6142 => true,
562
+ 6143 => true,
563
+ 6150 => true,
564
+ 6158 => true,
565
+ 6159 => true,
566
+ 6170 => true,
567
+ 6171 => true,
568
+ 6172 => true,
569
+ 6173 => true,
570
+ 6174 => true,
571
+ 6175 => true,
572
+ 6265 => true,
573
+ 6266 => true,
574
+ 6267 => true,
575
+ 6268 => true,
576
+ 6269 => true,
577
+ 6270 => true,
578
+ 6271 => true,
579
+ 6315 => true,
580
+ 6316 => true,
581
+ 6317 => true,
582
+ 6318 => true,
583
+ 6319 => true,
584
+ 6390 => true,
585
+ 6391 => true,
586
+ 6392 => true,
587
+ 6393 => true,
588
+ 6394 => true,
589
+ 6395 => true,
590
+ 6396 => true,
591
+ 6397 => true,
592
+ 6398 => true,
593
+ 6399 => true,
594
+ 6431 => true,
595
+ 6444 => true,
596
+ 6445 => true,
597
+ 6446 => true,
598
+ 6447 => true,
599
+ 6460 => true,
600
+ 6461 => true,
601
+ 6462 => true,
602
+ 6463 => true,
603
+ 6465 => true,
604
+ 6466 => true,
605
+ 6467 => true,
606
+ 6510 => true,
607
+ 6511 => true,
608
+ 6517 => true,
609
+ 6518 => true,
610
+ 6519 => true,
611
+ 6520 => true,
612
+ 6521 => true,
613
+ 6522 => true,
614
+ 6523 => true,
615
+ 6524 => true,
616
+ 6525 => true,
617
+ 6526 => true,
618
+ 6527 => true,
619
+ 6572 => true,
620
+ 6573 => true,
621
+ 6574 => true,
622
+ 6575 => true,
623
+ 6602 => true,
624
+ 6603 => true,
625
+ 6604 => true,
626
+ 6605 => true,
627
+ 6606 => true,
628
+ 6607 => true,
629
+ 6619 => true,
630
+ 6620 => true,
631
+ 6621 => true,
632
+ 6684 => true,
633
+ 6685 => true,
634
+ 6751 => true,
635
+ 6781 => true,
636
+ 6782 => true,
637
+ 6794 => true,
638
+ 6795 => true,
639
+ 6796 => true,
640
+ 6797 => true,
641
+ 6798 => true,
642
+ 6799 => true,
643
+ 6810 => true,
644
+ 6811 => true,
645
+ 6812 => true,
646
+ 6813 => true,
647
+ 6814 => true,
648
+ 6815 => true,
649
+ 6830 => true,
650
+ 6831 => true,
651
+ 6988 => true,
652
+ 6989 => true,
653
+ 6990 => true,
654
+ 6991 => true,
655
+ 7037 => true,
656
+ 7038 => true,
657
+ 7039 => true,
658
+ 7156 => true,
659
+ 7157 => true,
660
+ 7158 => true,
661
+ 7159 => true,
662
+ 7160 => true,
663
+ 7161 => true,
664
+ 7162 => true,
665
+ 7163 => true,
666
+ 7224 => true,
667
+ 7225 => true,
668
+ 7226 => true,
669
+ 7242 => true,
670
+ 7243 => true,
671
+ 7244 => true,
672
+ 7305 => true,
673
+ 7306 => true,
674
+ 7307 => true,
675
+ 7308 => true,
676
+ 7309 => true,
677
+ 7310 => true,
678
+ 7311 => true,
679
+ 7355 => true,
680
+ 7356 => true,
681
+ 7368 => true,
682
+ 7369 => true,
683
+ 7370 => true,
684
+ 7371 => true,
685
+ 7372 => true,
686
+ 7373 => true,
687
+ 7374 => true,
688
+ 7375 => true,
689
+ 7419 => true,
690
+ 7420 => true,
691
+ 7421 => true,
692
+ 7422 => true,
693
+ 7423 => true,
694
+ 7674 => true,
695
+ 7958 => true,
696
+ 7959 => true,
697
+ 7966 => true,
698
+ 7967 => true,
699
+ 8006 => true,
700
+ 8007 => true,
701
+ 8014 => true,
702
+ 8015 => true,
703
+ 8024 => true,
704
+ 8026 => true,
705
+ 8028 => true,
706
+ 8030 => true,
707
+ 8062 => true,
708
+ 8063 => true,
709
+ 8117 => true,
710
+ 8133 => true,
711
+ 8148 => true,
712
+ 8149 => true,
713
+ 8156 => true,
714
+ 8176 => true,
715
+ 8177 => true,
716
+ 8181 => true,
717
+ 8191 => true,
718
+ 8206 => true,
719
+ 8207 => true,
720
+ 8228 => true,
721
+ 8229 => true,
722
+ 8230 => true,
723
+ 8232 => true,
724
+ 8233 => true,
725
+ 8234 => true,
726
+ 8235 => true,
727
+ 8236 => true,
728
+ 8237 => true,
729
+ 8238 => true,
730
+ 8289 => true,
731
+ 8290 => true,
732
+ 8291 => true,
733
+ 8293 => true,
734
+ 8294 => true,
735
+ 8295 => true,
736
+ 8296 => true,
737
+ 8297 => true,
738
+ 8298 => true,
739
+ 8299 => true,
740
+ 8300 => true,
741
+ 8301 => true,
742
+ 8302 => true,
743
+ 8303 => true,
744
+ 8306 => true,
745
+ 8307 => true,
746
+ 8335 => true,
747
+ 8349 => true,
748
+ 8350 => true,
749
+ 8351 => true,
750
+ 8384 => true,
751
+ 8385 => true,
752
+ 8386 => true,
753
+ 8387 => true,
754
+ 8388 => true,
755
+ 8389 => true,
756
+ 8390 => true,
757
+ 8391 => true,
758
+ 8392 => true,
759
+ 8393 => true,
760
+ 8394 => true,
761
+ 8395 => true,
762
+ 8396 => true,
763
+ 8397 => true,
764
+ 8398 => true,
765
+ 8399 => true,
766
+ 8433 => true,
767
+ 8434 => true,
768
+ 8435 => true,
769
+ 8436 => true,
770
+ 8437 => true,
771
+ 8438 => true,
772
+ 8439 => true,
773
+ 8440 => true,
774
+ 8441 => true,
775
+ 8442 => true,
776
+ 8443 => true,
777
+ 8444 => true,
778
+ 8445 => true,
779
+ 8446 => true,
780
+ 8447 => true,
781
+ 8498 => true,
782
+ 8579 => true,
783
+ 8588 => true,
784
+ 8589 => true,
785
+ 8590 => true,
786
+ 8591 => true,
787
+ 9255 => true,
788
+ 9256 => true,
789
+ 9257 => true,
790
+ 9258 => true,
791
+ 9259 => true,
792
+ 9260 => true,
793
+ 9261 => true,
794
+ 9262 => true,
795
+ 9263 => true,
796
+ 9264 => true,
797
+ 9265 => true,
798
+ 9266 => true,
799
+ 9267 => true,
800
+ 9268 => true,
801
+ 9269 => true,
802
+ 9270 => true,
803
+ 9271 => true,
804
+ 9272 => true,
805
+ 9273 => true,
806
+ 9274 => true,
807
+ 9275 => true,
808
+ 9276 => true,
809
+ 9277 => true,
810
+ 9278 => true,
811
+ 9279 => true,
812
+ 9291 => true,
813
+ 9292 => true,
814
+ 9293 => true,
815
+ 9294 => true,
816
+ 9295 => true,
817
+ 9296 => true,
818
+ 9297 => true,
819
+ 9298 => true,
820
+ 9299 => true,
821
+ 9300 => true,
822
+ 9301 => true,
823
+ 9302 => true,
824
+ 9303 => true,
825
+ 9304 => true,
826
+ 9305 => true,
827
+ 9306 => true,
828
+ 9307 => true,
829
+ 9308 => true,
830
+ 9309 => true,
831
+ 9310 => true,
832
+ 9311 => true,
833
+ 9352 => true,
834
+ 9353 => true,
835
+ 9354 => true,
836
+ 9355 => true,
837
+ 9356 => true,
838
+ 9357 => true,
839
+ 9358 => true,
840
+ 9359 => true,
841
+ 9360 => true,
842
+ 9361 => true,
843
+ 9362 => true,
844
+ 9363 => true,
845
+ 9364 => true,
846
+ 9365 => true,
847
+ 9366 => true,
848
+ 9367 => true,
849
+ 9368 => true,
850
+ 9369 => true,
851
+ 9370 => true,
852
+ 9371 => true,
853
+ 11124 => true,
854
+ 11125 => true,
855
+ 11158 => true,
856
+ 11311 => true,
857
+ 11359 => true,
858
+ 11508 => true,
859
+ 11509 => true,
860
+ 11510 => true,
861
+ 11511 => true,
862
+ 11512 => true,
863
+ 11558 => true,
864
+ 11560 => true,
865
+ 11561 => true,
866
+ 11562 => true,
867
+ 11563 => true,
868
+ 11564 => true,
869
+ 11566 => true,
870
+ 11567 => true,
871
+ 11624 => true,
872
+ 11625 => true,
873
+ 11626 => true,
874
+ 11627 => true,
875
+ 11628 => true,
876
+ 11629 => true,
877
+ 11630 => true,
878
+ 11633 => true,
879
+ 11634 => true,
880
+ 11635 => true,
881
+ 11636 => true,
882
+ 11637 => true,
883
+ 11638 => true,
884
+ 11639 => true,
885
+ 11640 => true,
886
+ 11641 => true,
887
+ 11642 => true,
888
+ 11643 => true,
889
+ 11644 => true,
890
+ 11645 => true,
891
+ 11646 => true,
892
+ 11671 => true,
893
+ 11672 => true,
894
+ 11673 => true,
895
+ 11674 => true,
896
+ 11675 => true,
897
+ 11676 => true,
898
+ 11677 => true,
899
+ 11678 => true,
900
+ 11679 => true,
901
+ 11687 => true,
902
+ 11695 => true,
903
+ 11703 => true,
904
+ 11711 => true,
905
+ 11719 => true,
906
+ 11727 => true,
907
+ 11735 => true,
908
+ 11743 => true,
909
+ 11930 => true,
910
+ 12020 => true,
911
+ 12021 => true,
912
+ 12022 => true,
913
+ 12023 => true,
914
+ 12024 => true,
915
+ 12025 => true,
916
+ 12026 => true,
917
+ 12027 => true,
918
+ 12028 => true,
919
+ 12029 => true,
920
+ 12030 => true,
921
+ 12031 => true,
922
+ 12246 => true,
923
+ 12247 => true,
924
+ 12248 => true,
925
+ 12249 => true,
926
+ 12250 => true,
927
+ 12251 => true,
928
+ 12252 => true,
929
+ 12253 => true,
930
+ 12254 => true,
931
+ 12255 => true,
932
+ 12256 => true,
933
+ 12257 => true,
934
+ 12258 => true,
935
+ 12259 => true,
936
+ 12260 => true,
937
+ 12261 => true,
938
+ 12262 => true,
939
+ 12263 => true,
940
+ 12264 => true,
941
+ 12265 => true,
942
+ 12266 => true,
943
+ 12267 => true,
944
+ 12268 => true,
945
+ 12269 => true,
946
+ 12270 => true,
947
+ 12271 => true,
948
+ 12272 => true,
949
+ 12273 => true,
950
+ 12274 => true,
951
+ 12275 => true,
952
+ 12276 => true,
953
+ 12277 => true,
954
+ 12278 => true,
955
+ 12279 => true,
956
+ 12280 => true,
957
+ 12281 => true,
958
+ 12282 => true,
959
+ 12283 => true,
960
+ 12284 => true,
961
+ 12285 => true,
962
+ 12286 => true,
963
+ 12287 => true,
964
+ 12352 => true,
965
+ 12439 => true,
966
+ 12440 => true,
967
+ 12544 => true,
968
+ 12545 => true,
969
+ 12546 => true,
970
+ 12547 => true,
971
+ 12548 => true,
972
+ 12592 => true,
973
+ 12644 => true,
974
+ 12687 => true,
975
+ 12772 => true,
976
+ 12773 => true,
977
+ 12774 => true,
978
+ 12775 => true,
979
+ 12776 => true,
980
+ 12777 => true,
981
+ 12778 => true,
982
+ 12779 => true,
983
+ 12780 => true,
984
+ 12781 => true,
985
+ 12782 => true,
986
+ 12783 => true,
987
+ 12831 => true,
988
+ 13250 => true,
989
+ 13255 => true,
990
+ 13272 => true,
991
+ 40957 => true,
992
+ 40958 => true,
993
+ 40959 => true,
994
+ 42125 => true,
995
+ 42126 => true,
996
+ 42127 => true,
997
+ 42183 => true,
998
+ 42184 => true,
999
+ 42185 => true,
1000
+ 42186 => true,
1001
+ 42187 => true,
1002
+ 42188 => true,
1003
+ 42189 => true,
1004
+ 42190 => true,
1005
+ 42191 => true,
1006
+ 42540 => true,
1007
+ 42541 => true,
1008
+ 42542 => true,
1009
+ 42543 => true,
1010
+ 42544 => true,
1011
+ 42545 => true,
1012
+ 42546 => true,
1013
+ 42547 => true,
1014
+ 42548 => true,
1015
+ 42549 => true,
1016
+ 42550 => true,
1017
+ 42551 => true,
1018
+ 42552 => true,
1019
+ 42553 => true,
1020
+ 42554 => true,
1021
+ 42555 => true,
1022
+ 42556 => true,
1023
+ 42557 => true,
1024
+ 42558 => true,
1025
+ 42559 => true,
1026
+ 42744 => true,
1027
+ 42745 => true,
1028
+ 42746 => true,
1029
+ 42747 => true,
1030
+ 42748 => true,
1031
+ 42749 => true,
1032
+ 42750 => true,
1033
+ 42751 => true,
1034
+ 42944 => true,
1035
+ 42945 => true,
1036
+ 43053 => true,
1037
+ 43054 => true,
1038
+ 43055 => true,
1039
+ 43066 => true,
1040
+ 43067 => true,
1041
+ 43068 => true,
1042
+ 43069 => true,
1043
+ 43070 => true,
1044
+ 43071 => true,
1045
+ 43128 => true,
1046
+ 43129 => true,
1047
+ 43130 => true,
1048
+ 43131 => true,
1049
+ 43132 => true,
1050
+ 43133 => true,
1051
+ 43134 => true,
1052
+ 43135 => true,
1053
+ 43206 => true,
1054
+ 43207 => true,
1055
+ 43208 => true,
1056
+ 43209 => true,
1057
+ 43210 => true,
1058
+ 43211 => true,
1059
+ 43212 => true,
1060
+ 43213 => true,
1061
+ 43226 => true,
1062
+ 43227 => true,
1063
+ 43228 => true,
1064
+ 43229 => true,
1065
+ 43230 => true,
1066
+ 43231 => true,
1067
+ 43348 => true,
1068
+ 43349 => true,
1069
+ 43350 => true,
1070
+ 43351 => true,
1071
+ 43352 => true,
1072
+ 43353 => true,
1073
+ 43354 => true,
1074
+ 43355 => true,
1075
+ 43356 => true,
1076
+ 43357 => true,
1077
+ 43358 => true,
1078
+ 43389 => true,
1079
+ 43390 => true,
1080
+ 43391 => true,
1081
+ 43470 => true,
1082
+ 43482 => true,
1083
+ 43483 => true,
1084
+ 43484 => true,
1085
+ 43485 => true,
1086
+ 43519 => true,
1087
+ 43575 => true,
1088
+ 43576 => true,
1089
+ 43577 => true,
1090
+ 43578 => true,
1091
+ 43579 => true,
1092
+ 43580 => true,
1093
+ 43581 => true,
1094
+ 43582 => true,
1095
+ 43583 => true,
1096
+ 43598 => true,
1097
+ 43599 => true,
1098
+ 43610 => true,
1099
+ 43611 => true,
1100
+ 43715 => true,
1101
+ 43716 => true,
1102
+ 43717 => true,
1103
+ 43718 => true,
1104
+ 43719 => true,
1105
+ 43720 => true,
1106
+ 43721 => true,
1107
+ 43722 => true,
1108
+ 43723 => true,
1109
+ 43724 => true,
1110
+ 43725 => true,
1111
+ 43726 => true,
1112
+ 43727 => true,
1113
+ 43728 => true,
1114
+ 43729 => true,
1115
+ 43730 => true,
1116
+ 43731 => true,
1117
+ 43732 => true,
1118
+ 43733 => true,
1119
+ 43734 => true,
1120
+ 43735 => true,
1121
+ 43736 => true,
1122
+ 43737 => true,
1123
+ 43738 => true,
1124
+ 43767 => true,
1125
+ 43768 => true,
1126
+ 43769 => true,
1127
+ 43770 => true,
1128
+ 43771 => true,
1129
+ 43772 => true,
1130
+ 43773 => true,
1131
+ 43774 => true,
1132
+ 43775 => true,
1133
+ 43776 => true,
1134
+ 43783 => true,
1135
+ 43784 => true,
1136
+ 43791 => true,
1137
+ 43792 => true,
1138
+ 43799 => true,
1139
+ 43800 => true,
1140
+ 43801 => true,
1141
+ 43802 => true,
1142
+ 43803 => true,
1143
+ 43804 => true,
1144
+ 43805 => true,
1145
+ 43806 => true,
1146
+ 43807 => true,
1147
+ 43815 => true,
1148
+ 43823 => true,
1149
+ 43884 => true,
1150
+ 43885 => true,
1151
+ 43886 => true,
1152
+ 43887 => true,
1153
+ 44014 => true,
1154
+ 44015 => true,
1155
+ 44026 => true,
1156
+ 44027 => true,
1157
+ 44028 => true,
1158
+ 44029 => true,
1159
+ 44030 => true,
1160
+ 44031 => true,
1161
+ 55204 => true,
1162
+ 55205 => true,
1163
+ 55206 => true,
1164
+ 55207 => true,
1165
+ 55208 => true,
1166
+ 55209 => true,
1167
+ 55210 => true,
1168
+ 55211 => true,
1169
+ 55212 => true,
1170
+ 55213 => true,
1171
+ 55214 => true,
1172
+ 55215 => true,
1173
+ 55239 => true,
1174
+ 55240 => true,
1175
+ 55241 => true,
1176
+ 55242 => true,
1177
+ 55292 => true,
1178
+ 55293 => true,
1179
+ 55294 => true,
1180
+ 55295 => true,
1181
+ 64110 => true,
1182
+ 64111 => true,
1183
+ 64263 => true,
1184
+ 64264 => true,
1185
+ 64265 => true,
1186
+ 64266 => true,
1187
+ 64267 => true,
1188
+ 64268 => true,
1189
+ 64269 => true,
1190
+ 64270 => true,
1191
+ 64271 => true,
1192
+ 64272 => true,
1193
+ 64273 => true,
1194
+ 64274 => true,
1195
+ 64280 => true,
1196
+ 64281 => true,
1197
+ 64282 => true,
1198
+ 64283 => true,
1199
+ 64284 => true,
1200
+ 64311 => true,
1201
+ 64317 => true,
1202
+ 64319 => true,
1203
+ 64322 => true,
1204
+ 64325 => true,
1205
+ 64450 => true,
1206
+ 64451 => true,
1207
+ 64452 => true,
1208
+ 64453 => true,
1209
+ 64454 => true,
1210
+ 64455 => true,
1211
+ 64456 => true,
1212
+ 64457 => true,
1213
+ 64458 => true,
1214
+ 64459 => true,
1215
+ 64460 => true,
1216
+ 64461 => true,
1217
+ 64462 => true,
1218
+ 64463 => true,
1219
+ 64464 => true,
1220
+ 64465 => true,
1221
+ 64466 => true,
1222
+ 64832 => true,
1223
+ 64833 => true,
1224
+ 64834 => true,
1225
+ 64835 => true,
1226
+ 64836 => true,
1227
+ 64837 => true,
1228
+ 64838 => true,
1229
+ 64839 => true,
1230
+ 64840 => true,
1231
+ 64841 => true,
1232
+ 64842 => true,
1233
+ 64843 => true,
1234
+ 64844 => true,
1235
+ 64845 => true,
1236
+ 64846 => true,
1237
+ 64847 => true,
1238
+ 64912 => true,
1239
+ 64913 => true,
1240
+ 64968 => true,
1241
+ 64969 => true,
1242
+ 64970 => true,
1243
+ 64971 => true,
1244
+ 64972 => true,
1245
+ 64973 => true,
1246
+ 64974 => true,
1247
+ 64975 => true,
1248
+ 65022 => true,
1249
+ 65023 => true,
1250
+ 65042 => true,
1251
+ 65049 => true,
1252
+ 65050 => true,
1253
+ 65051 => true,
1254
+ 65052 => true,
1255
+ 65053 => true,
1256
+ 65054 => true,
1257
+ 65055 => true,
1258
+ 65072 => true,
1259
+ 65106 => true,
1260
+ 65107 => true,
1261
+ 65127 => true,
1262
+ 65132 => true,
1263
+ 65133 => true,
1264
+ 65134 => true,
1265
+ 65135 => true,
1266
+ 65141 => true,
1267
+ 65277 => true,
1268
+ 65278 => true,
1269
+ 65280 => true,
1270
+ 65440 => true,
1271
+ 65471 => true,
1272
+ 65472 => true,
1273
+ 65473 => true,
1274
+ 65480 => true,
1275
+ 65481 => true,
1276
+ 65488 => true,
1277
+ 65489 => true,
1278
+ 65496 => true,
1279
+ 65497 => true,
1280
+ 65501 => true,
1281
+ 65502 => true,
1282
+ 65503 => true,
1283
+ 65511 => true,
1284
+ 65519 => true,
1285
+ 65520 => true,
1286
+ 65521 => true,
1287
+ 65522 => true,
1288
+ 65523 => true,
1289
+ 65524 => true,
1290
+ 65525 => true,
1291
+ 65526 => true,
1292
+ 65527 => true,
1293
+ 65528 => true,
1294
+ 65529 => true,
1295
+ 65530 => true,
1296
+ 65531 => true,
1297
+ 65532 => true,
1298
+ 65533 => true,
1299
+ 65534 => true,
1300
+ 65535 => true,
1301
+ 65548 => true,
1302
+ 65575 => true,
1303
+ 65595 => true,
1304
+ 65598 => true,
1305
+ 65614 => true,
1306
+ 65615 => true,
1307
+ 65787 => true,
1308
+ 65788 => true,
1309
+ 65789 => true,
1310
+ 65790 => true,
1311
+ 65791 => true,
1312
+ 65795 => true,
1313
+ 65796 => true,
1314
+ 65797 => true,
1315
+ 65798 => true,
1316
+ 65844 => true,
1317
+ 65845 => true,
1318
+ 65846 => true,
1319
+ 65935 => true,
1320
+ 65949 => true,
1321
+ 65950 => true,
1322
+ 65951 => true,
1323
+ 66205 => true,
1324
+ 66206 => true,
1325
+ 66207 => true,
1326
+ 66257 => true,
1327
+ 66258 => true,
1328
+ 66259 => true,
1329
+ 66260 => true,
1330
+ 66261 => true,
1331
+ 66262 => true,
1332
+ 66263 => true,
1333
+ 66264 => true,
1334
+ 66265 => true,
1335
+ 66266 => true,
1336
+ 66267 => true,
1337
+ 66268 => true,
1338
+ 66269 => true,
1339
+ 66270 => true,
1340
+ 66271 => true,
1341
+ 66300 => true,
1342
+ 66301 => true,
1343
+ 66302 => true,
1344
+ 66303 => true,
1345
+ 66340 => true,
1346
+ 66341 => true,
1347
+ 66342 => true,
1348
+ 66343 => true,
1349
+ 66344 => true,
1350
+ 66345 => true,
1351
+ 66346 => true,
1352
+ 66347 => true,
1353
+ 66348 => true,
1354
+ 66379 => true,
1355
+ 66380 => true,
1356
+ 66381 => true,
1357
+ 66382 => true,
1358
+ 66383 => true,
1359
+ 66427 => true,
1360
+ 66428 => true,
1361
+ 66429 => true,
1362
+ 66430 => true,
1363
+ 66431 => true,
1364
+ 66462 => true,
1365
+ 66500 => true,
1366
+ 66501 => true,
1367
+ 66502 => true,
1368
+ 66503 => true,
1369
+ 66718 => true,
1370
+ 66719 => true,
1371
+ 66730 => true,
1372
+ 66731 => true,
1373
+ 66732 => true,
1374
+ 66733 => true,
1375
+ 66734 => true,
1376
+ 66735 => true,
1377
+ 66772 => true,
1378
+ 66773 => true,
1379
+ 66774 => true,
1380
+ 66775 => true,
1381
+ 66812 => true,
1382
+ 66813 => true,
1383
+ 66814 => true,
1384
+ 66815 => true,
1385
+ 66856 => true,
1386
+ 66857 => true,
1387
+ 66858 => true,
1388
+ 66859 => true,
1389
+ 66860 => true,
1390
+ 66861 => true,
1391
+ 66862 => true,
1392
+ 66863 => true,
1393
+ 66916 => true,
1394
+ 66917 => true,
1395
+ 66918 => true,
1396
+ 66919 => true,
1397
+ 66920 => true,
1398
+ 66921 => true,
1399
+ 66922 => true,
1400
+ 66923 => true,
1401
+ 66924 => true,
1402
+ 66925 => true,
1403
+ 66926 => true,
1404
+ 67383 => true,
1405
+ 67384 => true,
1406
+ 67385 => true,
1407
+ 67386 => true,
1408
+ 67387 => true,
1409
+ 67388 => true,
1410
+ 67389 => true,
1411
+ 67390 => true,
1412
+ 67391 => true,
1413
+ 67414 => true,
1414
+ 67415 => true,
1415
+ 67416 => true,
1416
+ 67417 => true,
1417
+ 67418 => true,
1418
+ 67419 => true,
1419
+ 67420 => true,
1420
+ 67421 => true,
1421
+ 67422 => true,
1422
+ 67423 => true,
1423
+ 67590 => true,
1424
+ 67591 => true,
1425
+ 67593 => true,
1426
+ 67638 => true,
1427
+ 67641 => true,
1428
+ 67642 => true,
1429
+ 67643 => true,
1430
+ 67645 => true,
1431
+ 67646 => true,
1432
+ 67670 => true,
1433
+ 67743 => true,
1434
+ 67744 => true,
1435
+ 67745 => true,
1436
+ 67746 => true,
1437
+ 67747 => true,
1438
+ 67748 => true,
1439
+ 67749 => true,
1440
+ 67750 => true,
1441
+ 67827 => true,
1442
+ 67830 => true,
1443
+ 67831 => true,
1444
+ 67832 => true,
1445
+ 67833 => true,
1446
+ 67834 => true,
1447
+ 67868 => true,
1448
+ 67869 => true,
1449
+ 67870 => true,
1450
+ 67898 => true,
1451
+ 67899 => true,
1452
+ 67900 => true,
1453
+ 67901 => true,
1454
+ 67902 => true,
1455
+ 68024 => true,
1456
+ 68025 => true,
1457
+ 68026 => true,
1458
+ 68027 => true,
1459
+ 68048 => true,
1460
+ 68049 => true,
1461
+ 68100 => true,
1462
+ 68103 => true,
1463
+ 68104 => true,
1464
+ 68105 => true,
1465
+ 68106 => true,
1466
+ 68107 => true,
1467
+ 68116 => true,
1468
+ 68120 => true,
1469
+ 68150 => true,
1470
+ 68151 => true,
1471
+ 68155 => true,
1472
+ 68156 => true,
1473
+ 68157 => true,
1474
+ 68158 => true,
1475
+ 68169 => true,
1476
+ 68170 => true,
1477
+ 68171 => true,
1478
+ 68172 => true,
1479
+ 68173 => true,
1480
+ 68174 => true,
1481
+ 68175 => true,
1482
+ 68185 => true,
1483
+ 68186 => true,
1484
+ 68187 => true,
1485
+ 68188 => true,
1486
+ 68189 => true,
1487
+ 68190 => true,
1488
+ 68191 => true,
1489
+ 68327 => true,
1490
+ 68328 => true,
1491
+ 68329 => true,
1492
+ 68330 => true,
1493
+ 68343 => true,
1494
+ 68344 => true,
1495
+ 68345 => true,
1496
+ 68346 => true,
1497
+ 68347 => true,
1498
+ 68348 => true,
1499
+ 68349 => true,
1500
+ 68350 => true,
1501
+ 68351 => true,
1502
+ 68406 => true,
1503
+ 68407 => true,
1504
+ 68408 => true,
1505
+ 68438 => true,
1506
+ 68439 => true,
1507
+ 68467 => true,
1508
+ 68468 => true,
1509
+ 68469 => true,
1510
+ 68470 => true,
1511
+ 68471 => true,
1512
+ 68498 => true,
1513
+ 68499 => true,
1514
+ 68500 => true,
1515
+ 68501 => true,
1516
+ 68502 => true,
1517
+ 68503 => true,
1518
+ 68504 => true,
1519
+ 68509 => true,
1520
+ 68510 => true,
1521
+ 68511 => true,
1522
+ 68512 => true,
1523
+ 68513 => true,
1524
+ 68514 => true,
1525
+ 68515 => true,
1526
+ 68516 => true,
1527
+ 68517 => true,
1528
+ 68518 => true,
1529
+ 68519 => true,
1530
+ 68520 => true,
1531
+ 68787 => true,
1532
+ 68788 => true,
1533
+ 68789 => true,
1534
+ 68790 => true,
1535
+ 68791 => true,
1536
+ 68792 => true,
1537
+ 68793 => true,
1538
+ 68794 => true,
1539
+ 68795 => true,
1540
+ 68796 => true,
1541
+ 68797 => true,
1542
+ 68798 => true,
1543
+ 68799 => true,
1544
+ 68851 => true,
1545
+ 68852 => true,
1546
+ 68853 => true,
1547
+ 68854 => true,
1548
+ 68855 => true,
1549
+ 68856 => true,
1550
+ 68857 => true,
1551
+ 68904 => true,
1552
+ 68905 => true,
1553
+ 68906 => true,
1554
+ 68907 => true,
1555
+ 68908 => true,
1556
+ 68909 => true,
1557
+ 68910 => true,
1558
+ 68911 => true,
1559
+ 69247 => true,
1560
+ 69290 => true,
1561
+ 69294 => true,
1562
+ 69295 => true,
1563
+ 69416 => true,
1564
+ 69417 => true,
1565
+ 69418 => true,
1566
+ 69419 => true,
1567
+ 69420 => true,
1568
+ 69421 => true,
1569
+ 69422 => true,
1570
+ 69423 => true,
1571
+ 69580 => true,
1572
+ 69581 => true,
1573
+ 69582 => true,
1574
+ 69583 => true,
1575
+ 69584 => true,
1576
+ 69585 => true,
1577
+ 69586 => true,
1578
+ 69587 => true,
1579
+ 69588 => true,
1580
+ 69589 => true,
1581
+ 69590 => true,
1582
+ 69591 => true,
1583
+ 69592 => true,
1584
+ 69593 => true,
1585
+ 69594 => true,
1586
+ 69595 => true,
1587
+ 69596 => true,
1588
+ 69597 => true,
1589
+ 69598 => true,
1590
+ 69599 => true,
1591
+ 69623 => true,
1592
+ 69624 => true,
1593
+ 69625 => true,
1594
+ 69626 => true,
1595
+ 69627 => true,
1596
+ 69628 => true,
1597
+ 69629 => true,
1598
+ 69630 => true,
1599
+ 69631 => true,
1600
+ 69710 => true,
1601
+ 69711 => true,
1602
+ 69712 => true,
1603
+ 69713 => true,
1604
+ 69744 => true,
1605
+ 69745 => true,
1606
+ 69746 => true,
1607
+ 69747 => true,
1608
+ 69748 => true,
1609
+ 69749 => true,
1610
+ 69750 => true,
1611
+ 69751 => true,
1612
+ 69752 => true,
1613
+ 69753 => true,
1614
+ 69754 => true,
1615
+ 69755 => true,
1616
+ 69756 => true,
1617
+ 69757 => true,
1618
+ 69758 => true,
1619
+ 69821 => true,
1620
+ 69826 => true,
1621
+ 69827 => true,
1622
+ 69828 => true,
1623
+ 69829 => true,
1624
+ 69830 => true,
1625
+ 69831 => true,
1626
+ 69832 => true,
1627
+ 69833 => true,
1628
+ 69834 => true,
1629
+ 69835 => true,
1630
+ 69836 => true,
1631
+ 69837 => true,
1632
+ 69838 => true,
1633
+ 69839 => true,
1634
+ 69865 => true,
1635
+ 69866 => true,
1636
+ 69867 => true,
1637
+ 69868 => true,
1638
+ 69869 => true,
1639
+ 69870 => true,
1640
+ 69871 => true,
1641
+ 69882 => true,
1642
+ 69883 => true,
1643
+ 69884 => true,
1644
+ 69885 => true,
1645
+ 69886 => true,
1646
+ 69887 => true,
1647
+ 69941 => true,
1648
+ 69960 => true,
1649
+ 69961 => true,
1650
+ 69962 => true,
1651
+ 69963 => true,
1652
+ 69964 => true,
1653
+ 69965 => true,
1654
+ 69966 => true,
1655
+ 69967 => true,
1656
+ 70007 => true,
1657
+ 70008 => true,
1658
+ 70009 => true,
1659
+ 70010 => true,
1660
+ 70011 => true,
1661
+ 70012 => true,
1662
+ 70013 => true,
1663
+ 70014 => true,
1664
+ 70015 => true,
1665
+ 70112 => true,
1666
+ 70133 => true,
1667
+ 70134 => true,
1668
+ 70135 => true,
1669
+ 70136 => true,
1670
+ 70137 => true,
1671
+ 70138 => true,
1672
+ 70139 => true,
1673
+ 70140 => true,
1674
+ 70141 => true,
1675
+ 70142 => true,
1676
+ 70143 => true,
1677
+ 70162 => true,
1678
+ 70279 => true,
1679
+ 70281 => true,
1680
+ 70286 => true,
1681
+ 70302 => true,
1682
+ 70314 => true,
1683
+ 70315 => true,
1684
+ 70316 => true,
1685
+ 70317 => true,
1686
+ 70318 => true,
1687
+ 70319 => true,
1688
+ 70379 => true,
1689
+ 70380 => true,
1690
+ 70381 => true,
1691
+ 70382 => true,
1692
+ 70383 => true,
1693
+ 70394 => true,
1694
+ 70395 => true,
1695
+ 70396 => true,
1696
+ 70397 => true,
1697
+ 70398 => true,
1698
+ 70399 => true,
1699
+ 70404 => true,
1700
+ 70413 => true,
1701
+ 70414 => true,
1702
+ 70417 => true,
1703
+ 70418 => true,
1704
+ 70441 => true,
1705
+ 70449 => true,
1706
+ 70452 => true,
1707
+ 70458 => true,
1708
+ 70469 => true,
1709
+ 70470 => true,
1710
+ 70473 => true,
1711
+ 70474 => true,
1712
+ 70478 => true,
1713
+ 70479 => true,
1714
+ 70481 => true,
1715
+ 70482 => true,
1716
+ 70483 => true,
1717
+ 70484 => true,
1718
+ 70485 => true,
1719
+ 70486 => true,
1720
+ 70488 => true,
1721
+ 70489 => true,
1722
+ 70490 => true,
1723
+ 70491 => true,
1724
+ 70492 => true,
1725
+ 70500 => true,
1726
+ 70501 => true,
1727
+ 70509 => true,
1728
+ 70510 => true,
1729
+ 70511 => true,
1730
+ 70748 => true,
1731
+ 70754 => true,
1732
+ 70755 => true,
1733
+ 70756 => true,
1734
+ 70757 => true,
1735
+ 70758 => true,
1736
+ 70759 => true,
1737
+ 70760 => true,
1738
+ 70761 => true,
1739
+ 70762 => true,
1740
+ 70763 => true,
1741
+ 70764 => true,
1742
+ 70765 => true,
1743
+ 70766 => true,
1744
+ 70767 => true,
1745
+ 70768 => true,
1746
+ 70769 => true,
1747
+ 70770 => true,
1748
+ 70771 => true,
1749
+ 70772 => true,
1750
+ 70773 => true,
1751
+ 70774 => true,
1752
+ 70775 => true,
1753
+ 70776 => true,
1754
+ 70777 => true,
1755
+ 70778 => true,
1756
+ 70779 => true,
1757
+ 70780 => true,
1758
+ 70781 => true,
1759
+ 70782 => true,
1760
+ 70783 => true,
1761
+ 70856 => true,
1762
+ 70857 => true,
1763
+ 70858 => true,
1764
+ 70859 => true,
1765
+ 70860 => true,
1766
+ 70861 => true,
1767
+ 70862 => true,
1768
+ 70863 => true,
1769
+ 71094 => true,
1770
+ 71095 => true,
1771
+ 71237 => true,
1772
+ 71238 => true,
1773
+ 71239 => true,
1774
+ 71240 => true,
1775
+ 71241 => true,
1776
+ 71242 => true,
1777
+ 71243 => true,
1778
+ 71244 => true,
1779
+ 71245 => true,
1780
+ 71246 => true,
1781
+ 71247 => true,
1782
+ 71258 => true,
1783
+ 71259 => true,
1784
+ 71260 => true,
1785
+ 71261 => true,
1786
+ 71262 => true,
1787
+ 71263 => true,
1788
+ 71277 => true,
1789
+ 71278 => true,
1790
+ 71279 => true,
1791
+ 71280 => true,
1792
+ 71281 => true,
1793
+ 71282 => true,
1794
+ 71283 => true,
1795
+ 71284 => true,
1796
+ 71285 => true,
1797
+ 71286 => true,
1798
+ 71287 => true,
1799
+ 71288 => true,
1800
+ 71289 => true,
1801
+ 71290 => true,
1802
+ 71291 => true,
1803
+ 71292 => true,
1804
+ 71293 => true,
1805
+ 71294 => true,
1806
+ 71295 => true,
1807
+ 71353 => true,
1808
+ 71354 => true,
1809
+ 71355 => true,
1810
+ 71356 => true,
1811
+ 71357 => true,
1812
+ 71358 => true,
1813
+ 71359 => true,
1814
+ 71451 => true,
1815
+ 71452 => true,
1816
+ 71468 => true,
1817
+ 71469 => true,
1818
+ 71470 => true,
1819
+ 71471 => true,
1820
+ 71923 => true,
1821
+ 71924 => true,
1822
+ 71925 => true,
1823
+ 71926 => true,
1824
+ 71927 => true,
1825
+ 71928 => true,
1826
+ 71929 => true,
1827
+ 71930 => true,
1828
+ 71931 => true,
1829
+ 71932 => true,
1830
+ 71933 => true,
1831
+ 71934 => true,
1832
+ 71943 => true,
1833
+ 71944 => true,
1834
+ 71946 => true,
1835
+ 71947 => true,
1836
+ 71956 => true,
1837
+ 71959 => true,
1838
+ 71990 => true,
1839
+ 71993 => true,
1840
+ 71994 => true,
1841
+ 72007 => true,
1842
+ 72008 => true,
1843
+ 72009 => true,
1844
+ 72010 => true,
1845
+ 72011 => true,
1846
+ 72012 => true,
1847
+ 72013 => true,
1848
+ 72014 => true,
1849
+ 72015 => true,
1850
+ 72104 => true,
1851
+ 72105 => true,
1852
+ 72152 => true,
1853
+ 72153 => true,
1854
+ 72165 => true,
1855
+ 72166 => true,
1856
+ 72167 => true,
1857
+ 72168 => true,
1858
+ 72169 => true,
1859
+ 72170 => true,
1860
+ 72171 => true,
1861
+ 72172 => true,
1862
+ 72173 => true,
1863
+ 72174 => true,
1864
+ 72175 => true,
1865
+ 72176 => true,
1866
+ 72177 => true,
1867
+ 72178 => true,
1868
+ 72179 => true,
1869
+ 72180 => true,
1870
+ 72181 => true,
1871
+ 72182 => true,
1872
+ 72183 => true,
1873
+ 72184 => true,
1874
+ 72185 => true,
1875
+ 72186 => true,
1876
+ 72187 => true,
1877
+ 72188 => true,
1878
+ 72189 => true,
1879
+ 72190 => true,
1880
+ 72191 => true,
1881
+ 72264 => true,
1882
+ 72265 => true,
1883
+ 72266 => true,
1884
+ 72267 => true,
1885
+ 72268 => true,
1886
+ 72269 => true,
1887
+ 72270 => true,
1888
+ 72271 => true,
1889
+ 72355 => true,
1890
+ 72356 => true,
1891
+ 72357 => true,
1892
+ 72358 => true,
1893
+ 72359 => true,
1894
+ 72360 => true,
1895
+ 72361 => true,
1896
+ 72362 => true,
1897
+ 72363 => true,
1898
+ 72364 => true,
1899
+ 72365 => true,
1900
+ 72366 => true,
1901
+ 72367 => true,
1902
+ 72368 => true,
1903
+ 72369 => true,
1904
+ 72370 => true,
1905
+ 72371 => true,
1906
+ 72372 => true,
1907
+ 72373 => true,
1908
+ 72374 => true,
1909
+ 72375 => true,
1910
+ 72376 => true,
1911
+ 72377 => true,
1912
+ 72378 => true,
1913
+ 72379 => true,
1914
+ 72380 => true,
1915
+ 72381 => true,
1916
+ 72382 => true,
1917
+ 72383 => true,
1918
+ 72713 => true,
1919
+ 72759 => true,
1920
+ 72774 => true,
1921
+ 72775 => true,
1922
+ 72776 => true,
1923
+ 72777 => true,
1924
+ 72778 => true,
1925
+ 72779 => true,
1926
+ 72780 => true,
1927
+ 72781 => true,
1928
+ 72782 => true,
1929
+ 72783 => true,
1930
+ 72813 => true,
1931
+ 72814 => true,
1932
+ 72815 => true,
1933
+ 72848 => true,
1934
+ 72849 => true,
1935
+ 72872 => true,
1936
+ 72967 => true,
1937
+ 72970 => true,
1938
+ 73015 => true,
1939
+ 73016 => true,
1940
+ 73017 => true,
1941
+ 73019 => true,
1942
+ 73022 => true,
1943
+ 73032 => true,
1944
+ 73033 => true,
1945
+ 73034 => true,
1946
+ 73035 => true,
1947
+ 73036 => true,
1948
+ 73037 => true,
1949
+ 73038 => true,
1950
+ 73039 => true,
1951
+ 73050 => true,
1952
+ 73051 => true,
1953
+ 73052 => true,
1954
+ 73053 => true,
1955
+ 73054 => true,
1956
+ 73055 => true,
1957
+ 73062 => true,
1958
+ 73065 => true,
1959
+ 73103 => true,
1960
+ 73106 => true,
1961
+ 73113 => true,
1962
+ 73114 => true,
1963
+ 73115 => true,
1964
+ 73116 => true,
1965
+ 73117 => true,
1966
+ 73118 => true,
1967
+ 73119 => true,
1968
+ 73649 => true,
1969
+ 73650 => true,
1970
+ 73651 => true,
1971
+ 73652 => true,
1972
+ 73653 => true,
1973
+ 73654 => true,
1974
+ 73655 => true,
1975
+ 73656 => true,
1976
+ 73657 => true,
1977
+ 73658 => true,
1978
+ 73659 => true,
1979
+ 73660 => true,
1980
+ 73661 => true,
1981
+ 73662 => true,
1982
+ 73663 => true,
1983
+ 73714 => true,
1984
+ 73715 => true,
1985
+ 73716 => true,
1986
+ 73717 => true,
1987
+ 73718 => true,
1988
+ 73719 => true,
1989
+ 73720 => true,
1990
+ 73721 => true,
1991
+ 73722 => true,
1992
+ 73723 => true,
1993
+ 73724 => true,
1994
+ 73725 => true,
1995
+ 73726 => true,
1996
+ 74863 => true,
1997
+ 74869 => true,
1998
+ 74870 => true,
1999
+ 74871 => true,
2000
+ 74872 => true,
2001
+ 74873 => true,
2002
+ 74874 => true,
2003
+ 74875 => true,
2004
+ 74876 => true,
2005
+ 74877 => true,
2006
+ 74878 => true,
2007
+ 74879 => true,
2008
+ 78895 => true,
2009
+ 78896 => true,
2010
+ 78897 => true,
2011
+ 78898 => true,
2012
+ 78899 => true,
2013
+ 78900 => true,
2014
+ 78901 => true,
2015
+ 78902 => true,
2016
+ 78903 => true,
2017
+ 78904 => true,
2018
+ 92729 => true,
2019
+ 92730 => true,
2020
+ 92731 => true,
2021
+ 92732 => true,
2022
+ 92733 => true,
2023
+ 92734 => true,
2024
+ 92735 => true,
2025
+ 92767 => true,
2026
+ 92778 => true,
2027
+ 92779 => true,
2028
+ 92780 => true,
2029
+ 92781 => true,
2030
+ 92910 => true,
2031
+ 92911 => true,
2032
+ 92918 => true,
2033
+ 92919 => true,
2034
+ 92920 => true,
2035
+ 92921 => true,
2036
+ 92922 => true,
2037
+ 92923 => true,
2038
+ 92924 => true,
2039
+ 92925 => true,
2040
+ 92926 => true,
2041
+ 92927 => true,
2042
+ 92998 => true,
2043
+ 92999 => true,
2044
+ 93000 => true,
2045
+ 93001 => true,
2046
+ 93002 => true,
2047
+ 93003 => true,
2048
+ 93004 => true,
2049
+ 93005 => true,
2050
+ 93006 => true,
2051
+ 93007 => true,
2052
+ 93018 => true,
2053
+ 93026 => true,
2054
+ 93048 => true,
2055
+ 93049 => true,
2056
+ 93050 => true,
2057
+ 93051 => true,
2058
+ 93052 => true,
2059
+ 94027 => true,
2060
+ 94028 => true,
2061
+ 94029 => true,
2062
+ 94030 => true,
2063
+ 94088 => true,
2064
+ 94089 => true,
2065
+ 94090 => true,
2066
+ 94091 => true,
2067
+ 94092 => true,
2068
+ 94093 => true,
2069
+ 94094 => true,
2070
+ 94181 => true,
2071
+ 94182 => true,
2072
+ 94183 => true,
2073
+ 94184 => true,
2074
+ 94185 => true,
2075
+ 94186 => true,
2076
+ 94187 => true,
2077
+ 94188 => true,
2078
+ 94189 => true,
2079
+ 94190 => true,
2080
+ 94191 => true,
2081
+ 94194 => true,
2082
+ 94195 => true,
2083
+ 94196 => true,
2084
+ 94197 => true,
2085
+ 94198 => true,
2086
+ 94199 => true,
2087
+ 94200 => true,
2088
+ 94201 => true,
2089
+ 94202 => true,
2090
+ 94203 => true,
2091
+ 94204 => true,
2092
+ 94205 => true,
2093
+ 94206 => true,
2094
+ 94207 => true,
2095
+ 100344 => true,
2096
+ 100345 => true,
2097
+ 100346 => true,
2098
+ 100347 => true,
2099
+ 100348 => true,
2100
+ 100349 => true,
2101
+ 100350 => true,
2102
+ 100351 => true,
2103
+ 110931 => true,
2104
+ 110932 => true,
2105
+ 110933 => true,
2106
+ 110934 => true,
2107
+ 110935 => true,
2108
+ 110936 => true,
2109
+ 110937 => true,
2110
+ 110938 => true,
2111
+ 110939 => true,
2112
+ 110940 => true,
2113
+ 110941 => true,
2114
+ 110942 => true,
2115
+ 110943 => true,
2116
+ 110944 => true,
2117
+ 110945 => true,
2118
+ 110946 => true,
2119
+ 110947 => true,
2120
+ 110952 => true,
2121
+ 110953 => true,
2122
+ 110954 => true,
2123
+ 110955 => true,
2124
+ 110956 => true,
2125
+ 110957 => true,
2126
+ 110958 => true,
2127
+ 110959 => true,
2128
+ 113771 => true,
2129
+ 113772 => true,
2130
+ 113773 => true,
2131
+ 113774 => true,
2132
+ 113775 => true,
2133
+ 113789 => true,
2134
+ 113790 => true,
2135
+ 113791 => true,
2136
+ 113801 => true,
2137
+ 113802 => true,
2138
+ 113803 => true,
2139
+ 113804 => true,
2140
+ 113805 => true,
2141
+ 113806 => true,
2142
+ 113807 => true,
2143
+ 113818 => true,
2144
+ 113819 => true,
2145
+ 119030 => true,
2146
+ 119031 => true,
2147
+ 119032 => true,
2148
+ 119033 => true,
2149
+ 119034 => true,
2150
+ 119035 => true,
2151
+ 119036 => true,
2152
+ 119037 => true,
2153
+ 119038 => true,
2154
+ 119039 => true,
2155
+ 119079 => true,
2156
+ 119080 => true,
2157
+ 119155 => true,
2158
+ 119156 => true,
2159
+ 119157 => true,
2160
+ 119158 => true,
2161
+ 119159 => true,
2162
+ 119160 => true,
2163
+ 119161 => true,
2164
+ 119162 => true,
2165
+ 119273 => true,
2166
+ 119274 => true,
2167
+ 119275 => true,
2168
+ 119276 => true,
2169
+ 119277 => true,
2170
+ 119278 => true,
2171
+ 119279 => true,
2172
+ 119280 => true,
2173
+ 119281 => true,
2174
+ 119282 => true,
2175
+ 119283 => true,
2176
+ 119284 => true,
2177
+ 119285 => true,
2178
+ 119286 => true,
2179
+ 119287 => true,
2180
+ 119288 => true,
2181
+ 119289 => true,
2182
+ 119290 => true,
2183
+ 119291 => true,
2184
+ 119292 => true,
2185
+ 119293 => true,
2186
+ 119294 => true,
2187
+ 119295 => true,
2188
+ 119540 => true,
2189
+ 119541 => true,
2190
+ 119542 => true,
2191
+ 119543 => true,
2192
+ 119544 => true,
2193
+ 119545 => true,
2194
+ 119546 => true,
2195
+ 119547 => true,
2196
+ 119548 => true,
2197
+ 119549 => true,
2198
+ 119550 => true,
2199
+ 119551 => true,
2200
+ 119639 => true,
2201
+ 119640 => true,
2202
+ 119641 => true,
2203
+ 119642 => true,
2204
+ 119643 => true,
2205
+ 119644 => true,
2206
+ 119645 => true,
2207
+ 119646 => true,
2208
+ 119647 => true,
2209
+ 119893 => true,
2210
+ 119965 => true,
2211
+ 119968 => true,
2212
+ 119969 => true,
2213
+ 119971 => true,
2214
+ 119972 => true,
2215
+ 119975 => true,
2216
+ 119976 => true,
2217
+ 119981 => true,
2218
+ 119994 => true,
2219
+ 119996 => true,
2220
+ 120004 => true,
2221
+ 120070 => true,
2222
+ 120075 => true,
2223
+ 120076 => true,
2224
+ 120085 => true,
2225
+ 120093 => true,
2226
+ 120122 => true,
2227
+ 120127 => true,
2228
+ 120133 => true,
2229
+ 120135 => true,
2230
+ 120136 => true,
2231
+ 120137 => true,
2232
+ 120145 => true,
2233
+ 120486 => true,
2234
+ 120487 => true,
2235
+ 120780 => true,
2236
+ 120781 => true,
2237
+ 121484 => true,
2238
+ 121485 => true,
2239
+ 121486 => true,
2240
+ 121487 => true,
2241
+ 121488 => true,
2242
+ 121489 => true,
2243
+ 121490 => true,
2244
+ 121491 => true,
2245
+ 121492 => true,
2246
+ 121493 => true,
2247
+ 121494 => true,
2248
+ 121495 => true,
2249
+ 121496 => true,
2250
+ 121497 => true,
2251
+ 121498 => true,
2252
+ 121504 => true,
2253
+ 122887 => true,
2254
+ 122905 => true,
2255
+ 122906 => true,
2256
+ 122914 => true,
2257
+ 122917 => true,
2258
+ 123181 => true,
2259
+ 123182 => true,
2260
+ 123183 => true,
2261
+ 123198 => true,
2262
+ 123199 => true,
2263
+ 123210 => true,
2264
+ 123211 => true,
2265
+ 123212 => true,
2266
+ 123213 => true,
2267
+ 123642 => true,
2268
+ 123643 => true,
2269
+ 123644 => true,
2270
+ 123645 => true,
2271
+ 123646 => true,
2272
+ 125125 => true,
2273
+ 125126 => true,
2274
+ 125260 => true,
2275
+ 125261 => true,
2276
+ 125262 => true,
2277
+ 125263 => true,
2278
+ 125274 => true,
2279
+ 125275 => true,
2280
+ 125276 => true,
2281
+ 125277 => true,
2282
+ 126468 => true,
2283
+ 126496 => true,
2284
+ 126499 => true,
2285
+ 126501 => true,
2286
+ 126502 => true,
2287
+ 126504 => true,
2288
+ 126515 => true,
2289
+ 126520 => true,
2290
+ 126522 => true,
2291
+ 126524 => true,
2292
+ 126525 => true,
2293
+ 126526 => true,
2294
+ 126527 => true,
2295
+ 126528 => true,
2296
+ 126529 => true,
2297
+ 126531 => true,
2298
+ 126532 => true,
2299
+ 126533 => true,
2300
+ 126534 => true,
2301
+ 126536 => true,
2302
+ 126538 => true,
2303
+ 126540 => true,
2304
+ 126544 => true,
2305
+ 126547 => true,
2306
+ 126549 => true,
2307
+ 126550 => true,
2308
+ 126552 => true,
2309
+ 126554 => true,
2310
+ 126556 => true,
2311
+ 126558 => true,
2312
+ 126560 => true,
2313
+ 126563 => true,
2314
+ 126565 => true,
2315
+ 126566 => true,
2316
+ 126571 => true,
2317
+ 126579 => true,
2318
+ 126584 => true,
2319
+ 126589 => true,
2320
+ 126591 => true,
2321
+ 126602 => true,
2322
+ 126620 => true,
2323
+ 126621 => true,
2324
+ 126622 => true,
2325
+ 126623 => true,
2326
+ 126624 => true,
2327
+ 126628 => true,
2328
+ 126634 => true,
2329
+ 127020 => true,
2330
+ 127021 => true,
2331
+ 127022 => true,
2332
+ 127023 => true,
2333
+ 127124 => true,
2334
+ 127125 => true,
2335
+ 127126 => true,
2336
+ 127127 => true,
2337
+ 127128 => true,
2338
+ 127129 => true,
2339
+ 127130 => true,
2340
+ 127131 => true,
2341
+ 127132 => true,
2342
+ 127133 => true,
2343
+ 127134 => true,
2344
+ 127135 => true,
2345
+ 127151 => true,
2346
+ 127152 => true,
2347
+ 127168 => true,
2348
+ 127184 => true,
2349
+ 127222 => true,
2350
+ 127223 => true,
2351
+ 127224 => true,
2352
+ 127225 => true,
2353
+ 127226 => true,
2354
+ 127227 => true,
2355
+ 127228 => true,
2356
+ 127229 => true,
2357
+ 127230 => true,
2358
+ 127231 => true,
2359
+ 127232 => true,
2360
+ 127491 => true,
2361
+ 127492 => true,
2362
+ 127493 => true,
2363
+ 127494 => true,
2364
+ 127495 => true,
2365
+ 127496 => true,
2366
+ 127497 => true,
2367
+ 127498 => true,
2368
+ 127499 => true,
2369
+ 127500 => true,
2370
+ 127501 => true,
2371
+ 127502 => true,
2372
+ 127503 => true,
2373
+ 127548 => true,
2374
+ 127549 => true,
2375
+ 127550 => true,
2376
+ 127551 => true,
2377
+ 127561 => true,
2378
+ 127562 => true,
2379
+ 127563 => true,
2380
+ 127564 => true,
2381
+ 127565 => true,
2382
+ 127566 => true,
2383
+ 127567 => true,
2384
+ 127570 => true,
2385
+ 127571 => true,
2386
+ 127572 => true,
2387
+ 127573 => true,
2388
+ 127574 => true,
2389
+ 127575 => true,
2390
+ 127576 => true,
2391
+ 127577 => true,
2392
+ 127578 => true,
2393
+ 127579 => true,
2394
+ 127580 => true,
2395
+ 127581 => true,
2396
+ 127582 => true,
2397
+ 127583 => true,
2398
+ 128728 => true,
2399
+ 128729 => true,
2400
+ 128730 => true,
2401
+ 128731 => true,
2402
+ 128732 => true,
2403
+ 128733 => true,
2404
+ 128734 => true,
2405
+ 128735 => true,
2406
+ 128749 => true,
2407
+ 128750 => true,
2408
+ 128751 => true,
2409
+ 128765 => true,
2410
+ 128766 => true,
2411
+ 128767 => true,
2412
+ 128884 => true,
2413
+ 128885 => true,
2414
+ 128886 => true,
2415
+ 128887 => true,
2416
+ 128888 => true,
2417
+ 128889 => true,
2418
+ 128890 => true,
2419
+ 128891 => true,
2420
+ 128892 => true,
2421
+ 128893 => true,
2422
+ 128894 => true,
2423
+ 128895 => true,
2424
+ 128985 => true,
2425
+ 128986 => true,
2426
+ 128987 => true,
2427
+ 128988 => true,
2428
+ 128989 => true,
2429
+ 128990 => true,
2430
+ 128991 => true,
2431
+ 129004 => true,
2432
+ 129005 => true,
2433
+ 129006 => true,
2434
+ 129007 => true,
2435
+ 129008 => true,
2436
+ 129009 => true,
2437
+ 129010 => true,
2438
+ 129011 => true,
2439
+ 129012 => true,
2440
+ 129013 => true,
2441
+ 129014 => true,
2442
+ 129015 => true,
2443
+ 129016 => true,
2444
+ 129017 => true,
2445
+ 129018 => true,
2446
+ 129019 => true,
2447
+ 129020 => true,
2448
+ 129021 => true,
2449
+ 129022 => true,
2450
+ 129023 => true,
2451
+ 129036 => true,
2452
+ 129037 => true,
2453
+ 129038 => true,
2454
+ 129039 => true,
2455
+ 129096 => true,
2456
+ 129097 => true,
2457
+ 129098 => true,
2458
+ 129099 => true,
2459
+ 129100 => true,
2460
+ 129101 => true,
2461
+ 129102 => true,
2462
+ 129103 => true,
2463
+ 129114 => true,
2464
+ 129115 => true,
2465
+ 129116 => true,
2466
+ 129117 => true,
2467
+ 129118 => true,
2468
+ 129119 => true,
2469
+ 129160 => true,
2470
+ 129161 => true,
2471
+ 129162 => true,
2472
+ 129163 => true,
2473
+ 129164 => true,
2474
+ 129165 => true,
2475
+ 129166 => true,
2476
+ 129167 => true,
2477
+ 129198 => true,
2478
+ 129199 => true,
2479
+ 129401 => true,
2480
+ 129484 => true,
2481
+ 129620 => true,
2482
+ 129621 => true,
2483
+ 129622 => true,
2484
+ 129623 => true,
2485
+ 129624 => true,
2486
+ 129625 => true,
2487
+ 129626 => true,
2488
+ 129627 => true,
2489
+ 129628 => true,
2490
+ 129629 => true,
2491
+ 129630 => true,
2492
+ 129631 => true,
2493
+ 129646 => true,
2494
+ 129647 => true,
2495
+ 129653 => true,
2496
+ 129654 => true,
2497
+ 129655 => true,
2498
+ 129659 => true,
2499
+ 129660 => true,
2500
+ 129661 => true,
2501
+ 129662 => true,
2502
+ 129663 => true,
2503
+ 129671 => true,
2504
+ 129672 => true,
2505
+ 129673 => true,
2506
+ 129674 => true,
2507
+ 129675 => true,
2508
+ 129676 => true,
2509
+ 129677 => true,
2510
+ 129678 => true,
2511
+ 129679 => true,
2512
+ 129705 => true,
2513
+ 129706 => true,
2514
+ 129707 => true,
2515
+ 129708 => true,
2516
+ 129709 => true,
2517
+ 129710 => true,
2518
+ 129711 => true,
2519
+ 129719 => true,
2520
+ 129720 => true,
2521
+ 129721 => true,
2522
+ 129722 => true,
2523
+ 129723 => true,
2524
+ 129724 => true,
2525
+ 129725 => true,
2526
+ 129726 => true,
2527
+ 129727 => true,
2528
+ 129731 => true,
2529
+ 129732 => true,
2530
+ 129733 => true,
2531
+ 129734 => true,
2532
+ 129735 => true,
2533
+ 129736 => true,
2534
+ 129737 => true,
2535
+ 129738 => true,
2536
+ 129739 => true,
2537
+ 129740 => true,
2538
+ 129741 => true,
2539
+ 129742 => true,
2540
+ 129743 => true,
2541
+ 129939 => true,
2542
+ 131070 => true,
2543
+ 131071 => true,
2544
+ 177973 => true,
2545
+ 177974 => true,
2546
+ 177975 => true,
2547
+ 177976 => true,
2548
+ 177977 => true,
2549
+ 177978 => true,
2550
+ 177979 => true,
2551
+ 177980 => true,
2552
+ 177981 => true,
2553
+ 177982 => true,
2554
+ 177983 => true,
2555
+ 178206 => true,
2556
+ 178207 => true,
2557
+ 183970 => true,
2558
+ 183971 => true,
2559
+ 183972 => true,
2560
+ 183973 => true,
2561
+ 183974 => true,
2562
+ 183975 => true,
2563
+ 183976 => true,
2564
+ 183977 => true,
2565
+ 183978 => true,
2566
+ 183979 => true,
2567
+ 183980 => true,
2568
+ 183981 => true,
2569
+ 183982 => true,
2570
+ 183983 => true,
2571
+ 194664 => true,
2572
+ 194676 => true,
2573
+ 194847 => true,
2574
+ 194911 => true,
2575
+ 195007 => true,
2576
+ 196606 => true,
2577
+ 196607 => true,
2578
+ 262142 => true,
2579
+ 262143 => true,
2580
+ 327678 => true,
2581
+ 327679 => true,
2582
+ 393214 => true,
2583
+ 393215 => true,
2584
+ 458750 => true,
2585
+ 458751 => true,
2586
+ 524286 => true,
2587
+ 524287 => true,
2588
+ 589822 => true,
2589
+ 589823 => true,
2590
+ 655358 => true,
2591
+ 655359 => true,
2592
+ 720894 => true,
2593
+ 720895 => true,
2594
+ 786430 => true,
2595
+ 786431 => true,
2596
+ 851966 => true,
2597
+ 851967 => true,
2598
+ 917502 => true,
2599
+ 917503 => true,
2600
+ 917504 => true,
2601
+ 917505 => true,
2602
+ 917506 => true,
2603
+ 917507 => true,
2604
+ 917508 => true,
2605
+ 917509 => true,
2606
+ 917510 => true,
2607
+ 917511 => true,
2608
+ 917512 => true,
2609
+ 917513 => true,
2610
+ 917514 => true,
2611
+ 917515 => true,
2612
+ 917516 => true,
2613
+ 917517 => true,
2614
+ 917518 => true,
2615
+ 917519 => true,
2616
+ 917520 => true,
2617
+ 917521 => true,
2618
+ 917522 => true,
2619
+ 917523 => true,
2620
+ 917524 => true,
2621
+ 917525 => true,
2622
+ 917526 => true,
2623
+ 917527 => true,
2624
+ 917528 => true,
2625
+ 917529 => true,
2626
+ 917530 => true,
2627
+ 917531 => true,
2628
+ 917532 => true,
2629
+ 917533 => true,
2630
+ 917534 => true,
2631
+ 917535 => true,
2632
+ 983038 => true,
2633
+ 983039 => true,
2634
+ 1048574 => true,
2635
+ 1048575 => true,
2636
+ 1114110 => true,
2637
+ 1114111 => true,
2638
+ );
vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php ADDED
@@ -0,0 +1,308 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return array (
4
+ 160 => ' ',
5
+ 168 => ' ̈',
6
+ 175 => ' ̄',
7
+ 180 => ' ́',
8
+ 184 => ' ̧',
9
+ 728 => ' ̆',
10
+ 729 => ' ̇',
11
+ 730 => ' ̊',
12
+ 731 => ' ̨',
13
+ 732 => ' ̃',
14
+ 733 => ' ̋',
15
+ 890 => ' ι',
16
+ 894 => ';',
17
+ 900 => ' ́',
18
+ 901 => ' ̈́',
19
+ 8125 => ' ̓',
20
+ 8127 => ' ̓',
21
+ 8128 => ' ͂',
22
+ 8129 => ' ̈͂',
23
+ 8141 => ' ̓̀',
24
+ 8142 => ' ̓́',
25
+ 8143 => ' ̓͂',
26
+ 8157 => ' ̔̀',
27
+ 8158 => ' ̔́',
28
+ 8159 => ' ̔͂',
29
+ 8173 => ' ̈̀',
30
+ 8174 => ' ̈́',
31
+ 8175 => '`',
32
+ 8189 => ' ́',
33
+ 8190 => ' ̔',
34
+ 8192 => ' ',
35
+ 8193 => ' ',
36
+ 8194 => ' ',
37
+ 8195 => ' ',
38
+ 8196 => ' ',
39
+ 8197 => ' ',
40
+ 8198 => ' ',
41
+ 8199 => ' ',
42
+ 8200 => ' ',
43
+ 8201 => ' ',
44
+ 8202 => ' ',
45
+ 8215 => ' ̳',
46
+ 8239 => ' ',
47
+ 8252 => '!!',
48
+ 8254 => ' ̅',
49
+ 8263 => '??',
50
+ 8264 => '?!',
51
+ 8265 => '!?',
52
+ 8287 => ' ',
53
+ 8314 => '+',
54
+ 8316 => '=',
55
+ 8317 => '(',
56
+ 8318 => ')',
57
+ 8330 => '+',
58
+ 8332 => '=',
59
+ 8333 => '(',
60
+ 8334 => ')',
61
+ 8448 => 'a/c',
62
+ 8449 => 'a/s',
63
+ 8453 => 'c/o',
64
+ 8454 => 'c/u',
65
+ 9332 => '(1)',
66
+ 9333 => '(2)',
67
+ 9334 => '(3)',
68
+ 9335 => '(4)',
69
+ 9336 => '(5)',
70
+ 9337 => '(6)',
71
+ 9338 => '(7)',
72
+ 9339 => '(8)',
73
+ 9340 => '(9)',
74
+ 9341 => '(10)',
75
+ 9342 => '(11)',
76
+ 9343 => '(12)',
77
+ 9344 => '(13)',
78
+ 9345 => '(14)',
79
+ 9346 => '(15)',
80
+ 9347 => '(16)',
81
+ 9348 => '(17)',
82
+ 9349 => '(18)',
83
+ 9350 => '(19)',
84
+ 9351 => '(20)',
85
+ 9372 => '(a)',
86
+ 9373 => '(b)',
87
+ 9374 => '(c)',
88
+ 9375 => '(d)',
89
+ 9376 => '(e)',
90
+ 9377 => '(f)',
91
+ 9378 => '(g)',
92
+ 9379 => '(h)',
93
+ 9380 => '(i)',
94
+ 9381 => '(j)',
95
+ 9382 => '(k)',
96
+ 9383 => '(l)',
97
+ 9384 => '(m)',
98
+ 9385 => '(n)',
99
+ 9386 => '(o)',
100
+ 9387 => '(p)',
101
+ 9388 => '(q)',
102
+ 9389 => '(r)',
103
+ 9390 => '(s)',
104
+ 9391 => '(t)',
105
+ 9392 => '(u)',
106
+ 9393 => '(v)',
107
+ 9394 => '(w)',
108
+ 9395 => '(x)',
109
+ 9396 => '(y)',
110
+ 9397 => '(z)',
111
+ 10868 => '::=',
112
+ 10869 => '==',
113
+ 10870 => '===',
114
+ 12288 => ' ',
115
+ 12443 => ' ゙',
116
+ 12444 => ' ゚',
117
+ 12800 => '(ᄀ)',
118
+ 12801 => '(ᄂ)',
119
+ 12802 => '(ᄃ)',
120
+ 12803 => '(ᄅ)',
121
+ 12804 => '(ᄆ)',
122
+ 12805 => '(ᄇ)',
123
+ 12806 => '(ᄉ)',
124
+ 12807 => '(ᄋ)',
125
+ 12808 => '(ᄌ)',
126
+ 12809 => '(ᄎ)',
127
+ 12810 => '(ᄏ)',
128
+ 12811 => '(ᄐ)',
129
+ 12812 => '(ᄑ)',
130
+ 12813 => '(ᄒ)',
131
+ 12814 => '(가)',
132
+ 12815 => '(나)',
133
+ 12816 => '(다)',
134
+ 12817 => '(라)',
135
+ 12818 => '(마)',
136
+ 12819 => '(바)',
137
+ 12820 => '(사)',
138
+ 12821 => '(아)',
139
+ 12822 => '(자)',
140
+ 12823 => '(차)',
141
+ 12824 => '(카)',
142
+ 12825 => '(타)',
143
+ 12826 => '(파)',
144
+ 12827 => '(하)',
145
+ 12828 => '(주)',
146
+ 12829 => '(오전)',
147
+ 12830 => '(오후)',
148
+ 12832 => '(一)',
149
+ 12833 => '(二)',
150
+ 12834 => '(三)',
151
+ 12835 => '(四)',
152
+ 12836 => '(五)',
153
+ 12837 => '(六)',
154
+ 12838 => '(七)',
155
+ 12839 => '(八)',
156
+ 12840 => '(九)',
157
+ 12841 => '(十)',
158
+ 12842 => '(月)',
159
+ 12843 => '(火)',
160
+ 12844 => '(水)',
161
+ 12845 => '(木)',
162
+ 12846 => '(金)',
163
+ 12847 => '(土)',
164
+ 12848 => '(日)',
165
+ 12849 => '(株)',
166
+ 12850 => '(有)',
167
+ 12851 => '(社)',
168
+ 12852 => '(名)',
169
+ 12853 => '(特)',
170
+ 12854 => '(財)',
171
+ 12855 => '(祝)',
172
+ 12856 => '(労)',
173
+ 12857 => '(代)',
174
+ 12858 => '(呼)',
175
+ 12859 => '(学)',
176
+ 12860 => '(監)',
177
+ 12861 => '(企)',
178
+ 12862 => '(資)',
179
+ 12863 => '(協)',
180
+ 12864 => '(祭)',
181
+ 12865 => '(休)',
182
+ 12866 => '(自)',
183
+ 12867 => '(至)',
184
+ 64297 => '+',
185
+ 64606 => ' ٌّ',
186
+ 64607 => ' ٍّ',
187
+ 64608 => ' َّ',
188
+ 64609 => ' ُّ',
189
+ 64610 => ' ِّ',
190
+ 64611 => ' ّٰ',
191
+ 65018 => 'صلى الله عليه وسلم',
192
+ 65019 => 'جل جلاله',
193
+ 65040 => ',',
194
+ 65043 => ':',
195
+ 65044 => ';',
196
+ 65045 => '!',
197
+ 65046 => '?',
198
+ 65075 => '_',
199
+ 65076 => '_',
200
+ 65077 => '(',
201
+ 65078 => ')',
202
+ 65079 => '{',
203
+ 65080 => '}',
204
+ 65095 => '[',
205
+ 65096 => ']',
206
+ 65097 => ' ̅',
207
+ 65098 => ' ̅',
208
+ 65099 => ' ̅',
209
+ 65100 => ' ̅',
210
+ 65101 => '_',
211
+ 65102 => '_',
212
+ 65103 => '_',
213
+ 65104 => ',',
214
+ 65108 => ';',
215
+ 65109 => ':',
216
+ 65110 => '?',
217
+ 65111 => '!',
218
+ 65113 => '(',
219
+ 65114 => ')',
220
+ 65115 => '{',
221
+ 65116 => '}',
222
+ 65119 => '#',
223
+ 65120 => '&',
224
+ 65121 => '*',
225
+ 65122 => '+',
226
+ 65124 => '<',
227
+ 65125 => '>',
228
+ 65126 => '=',
229
+ 65128 => '\\',
230
+ 65129 => '$',
231
+ 65130 => '%',
232
+ 65131 => '@',
233
+ 65136 => ' ً',
234
+ 65138 => ' ٌ',
235
+ 65140 => ' ٍ',
236
+ 65142 => ' َ',
237
+ 65144 => ' ُ',
238
+ 65146 => ' ِ',
239
+ 65148 => ' ّ',
240
+ 65150 => ' ْ',
241
+ 65281 => '!',
242
+ 65282 => '"',
243
+ 65283 => '#',
244
+ 65284 => '$',
245
+ 65285 => '%',
246
+ 65286 => '&',
247
+ 65287 => '\'',
248
+ 65288 => '(',
249
+ 65289 => ')',
250
+ 65290 => '*',
251
+ 65291 => '+',
252
+ 65292 => ',',
253
+ 65295 => '/',
254
+ 65306 => ':',
255
+ 65307 => ';',
256
+ 65308 => '<',
257
+ 65309 => '=',
258
+ 65310 => '>',
259
+ 65311 => '?',
260
+ 65312 => '@',
261
+ 65339 => '[',
262
+ 65340 => '\\',
263
+ 65341 => ']',
264
+ 65342 => '^',
265
+ 65343 => '_',
266
+ 65344 => '`',
267
+ 65371 => '{',
268
+ 65372 => '|',
269
+ 65373 => '}',
270
+ 65374 => '~',
271
+ 65507 => ' ̄',
272
+ 127233 => '0,',
273
+ 127234 => '1,',
274
+ 127235 => '2,',
275
+ 127236 => '3,',
276
+ 127237 => '4,',
277
+ 127238 => '5,',
278
+ 127239 => '6,',
279
+ 127240 => '7,',
280
+ 127241 => '8,',
281
+ 127242 => '9,',
282
+ 127248 => '(a)',
283
+ 127249 => '(b)',
284
+ 127250 => '(c)',
285
+ 127251 => '(d)',
286
+ 127252 => '(e)',
287
+ 127253 => '(f)',
288
+ 127254 => '(g)',
289
+ 127255 => '(h)',
290
+ 127256 => '(i)',
291
+ 127257 => '(j)',
292
+ 127258 => '(k)',
293
+ 127259 => '(l)',
294
+ 127260 => '(m)',
295
+ 127261 => '(n)',
296
+ 127262 => '(o)',
297
+ 127263 => '(p)',
298
+ 127264 => '(q)',
299
+ 127265 => '(r)',
300
+ 127266 => '(s)',
301
+ 127267 => '(t)',
302
+ 127268 => '(u)',
303
+ 127269 => '(v)',
304
+ 127270 => '(w)',
305
+ 127271 => '(x)',
306
+ 127272 => '(y)',
307
+ 127273 => '(z)',
308
+ );
vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return array (
4
+ 0 => true,
5
+ 1 => true,
6
+ 2 => true,
7
+ 3 => true,
8
+ 4 => true,
9
+ 5 => true,
10
+ 6 => true,
11
+ 7 => true,
12
+ 8 => true,
13
+ 9 => true,
14
+ 10 => true,
15
+ 11 => true,
16
+ 12 => true,
17
+ 13 => true,
18
+ 14 => true,
19
+ 15 => true,
20
+ 16 => true,
21
+ 17 => true,
22
+ 18 => true,
23
+ 19 => true,
24
+ 20 => true,
25
+ 21 => true,
26
+ 22 => true,
27
+ 23 => true,
28
+ 24 => true,
29
+ 25 => true,
30
+ 26 => true,
31
+ 27 => true,
32
+ 28 => true,
33
+ 29 => true,
34
+ 30 => true,
35
+ 31 => true,
36
+ 32 => true,
37
+ 33 => true,
38
+ 34 => true,
39
+ 35 => true,
40
+ 36 => true,
41
+ 37 => true,
42
+ 38 => true,
43
+ 39 => true,
44
+ 40 => true,
45
+ 41 => true,
46
+ 42 => true,
47
+ 43 => true,
48
+ 44 => true,
49
+ 47 => true,
50
+ 58 => true,
51
+ 59 => true,
52
+ 60 => true,
53
+ 61 => true,
54
+ 62 => true,
55
+ 63 => true,
56
+ 64 => true,
57
+ 91 => true,
58
+ 92 => true,
59
+ 93 => true,
60
+ 94 => true,
61
+ 95 => true,
62
+ 96 => true,
63
+ 123 => true,
64
+ 124 => true,
65
+ 125 => true,
66
+ 126 => true,
67
+ 127 => true,
68
+ 8800 => true,
69
+ 8814 => true,
70
+ 8815 => true,
71
+ );
vendor/symfony/polyfill-intl-idn/Resources/unidata/ignored.php ADDED
@@ -0,0 +1,273 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return array (
4
+ 173 => true,
5
+ 847 => true,
6
+ 6155 => true,
7
+ 6156 => true,
8
+ 6157 => true,
9
+ 8203 => true,
10
+ 8288 => true,
11
+ 8292 => true,
12
+ 65024 => true,
13
+ 65025 => true,
14
+ 65026 => true,
15
+ 65027 => true,
16
+ 65028 => true,
17
+ 65029 => true,
18
+ 65030 => true,
19
+ 65031 => true,
20
+ 65032 => true,
21
+ 65033 => true,
22
+ 65034 => true,
23
+ 65035 => true,
24
+ 65036 => true,
25
+ 65037 => true,
26
+ 65038 => true,
27
+ 65039 => true,
28
+ 65279 => true,
29
+ 113824 => true,
30
+ 113825 => true,
31
+ 113826 => true,
32
+ 113827 => true,
33
+ 917760 => true,
34
+ 917761 => true,
35
+ 917762 => true,
36
+ 917763 => true,
37
+ 917764 => true,
38
+ 917765 => true,
39
+ 917766 => true,
40
+ 917767 => true,
41
+ 917768 => true,
42
+ 917769 => true,
43
+ 917770 => true,
44
+ 917771 => true,
45
+ 917772 => true,
46
+ 917773 => true,
47
+ 917774 => true,
48
+ 917775 => true,
49
+ 917776 => true,
50
+ 917777 => true,
51
+ 917778 => true,
52
+ 917779 => true,
53
+ 917780 => true,
54
+ 917781 => true,
55
+ 917782 => true,
56
+ 917783 => true,
57
+ 917784 => true,
58
+ 917785 => true,
59
+ 917786 => true,
60
+ 917787 => true,
61
+ 917788 => true,
62
+ 917789 => true,
63
+ 917790 => true,
64
+ 917791 => true,
65
+ 917792 => true,
66
+ 917793 => true,
67
+ 917794 => true,
68
+ 917795 => true,
69
+ 917796 => true,
70
+ 917797 => true,
71
+ 917798 => true,
72
+ 917799 => true,
73
+ 917800 => true,
74
+ 917801 => true,
75
+ 917802 => true,
76
+ 917803 => true,
77
+ 917804 => true,
78
+ 917805 => true,
79
+ 917806 => true,
80
+ 917807 => true,
81
+ 917808 => true,
82
+ 917809 => true,
83
+ 917810 => true,
84
+ 917811 => true,
85
+ 917812 => true,
86
+ 917813 => true,
87
+ 917814 => true,
88
+ 917815 => true,
89
+ 917816 => true,
90
+ 917817 => true,
91
+ 917818 => true,
92
+ 917819 => true,
93
+ 917820 => true,
94
+ 917821 => true,
95
+ 917822 => true,
96
+ 917823 => true,
97
+ 917824 => true,
98
+ 917825 => true,
99
+ 917826 => true,
100
+ 917827 => true,
101
+ 917828 => true,
102
+ 917829 => true,
103
+ 917830 => true,
104
+ 917831 => true,
105
+ 917832 => true,
106
+ 917833 => true,
107
+ 917834 => true,
108
+ 917835 => true,
109
+ 917836 => true,
110
+ 917837 => true,
111
+ 917838 => true,
112
+ 917839 => true,
113
+ 917840 => true,
114
+ 917841 => true,
115
+ 917842 => true,
116
+ 917843 => true,
117
+ 917844 => true,
118
+ 917845 => true,
119
+ 917846 => true,
120
+ 917847 => true,
121
+ 917848 => true,
122
+ 917849 => true,
123
+ 917850 => true,
124
+ 917851 => true,
125
+ 917852 => true,
126
+ 917853 => true,
127
+ 917854 => true,
128
+ 917855 => true,
129
+ 917856 => true,
130
+ 917857 => true,
131
+ 917858 => true,
132
+ 917859 => true,
133
+ 917860 => true,
134
+ 917861 => true,
135
+ 917862 => true,
136
+ 917863 => true,
137
+ 917864 => true,
138
+ 917865 => true,
139
+ 917866 => true,
140
+ 917867 => true,
141
+ 917868 => true,
142
+ 917869 => true,
143
+ 917870 => true,
144
+ 917871 => true,
145
+ 917872 => true,
146
+ 917873 => true,
147
+ 917874 => true,
148
+ 917875 => true,
149
+ 917876 => true,
150
+ 917877 => true,
151
+ 917878 => true,
152
+ 917879 => true,
153
+ 917880 => true,
154
+ 917881 => true,
155
+ 917882 => true,
156
+ 917883 => true,
157
+ 917884 => true,
158
+ 917885 => true,
159
+ 917886 => true,
160
+ 917887 => true,
161
+ 917888 => true,
162
+ 917889 => true,
163
+ 917890 => true,
164
+ 917891 => true,
165
+ 917892 => true,
166
+ 917893 => true,
167
+ 917894 => true,
168
+ 917895 => true,
169
+ 917896 => true,
170
+ 917897 => true,
171
+ 917898 => true,
172
+ 917899 => true,
173
+ 917900 => true,
174
+ 917901 => true,
175
+ 917902 => true,
176
+ 917903 => true,
177
+ 917904 => true,
178
+ 917905 => true,
179
+ 917906 => true,
180
+ 917907 => true,
181
+ 917908 => true,
182
+ 917909 => true,
183
+ 917910 => true,
184
+ 917911 => true,
185
+ 917912 => true,
186
+ 917913 => true,
187
+ 917914 => true,
188
+ 917915 => true,
189
+ 917916 => true,
190
+ 917917 => true,
191
+ 917918 => true,
192
+ 917919 => true,
193
+ 917920 => true,
194
+ 917921 => true,
195
+ 917922 => true,
196
+ 917923 => true,
197
+ 917924 => true,
198
+ 917925 => true,
199
+ 917926 => true,
200
+ 917927 => true,
201
+ 917928 => true,
202
+ 917929 => true,
203
+ 917930 => true,
204
+ 917931 => true,
205
+ 917932 => true,
206
+ 917933 => true,
207
+ 917934 => true,
208
+ 917935 => true,
209
+ 917936 => true,
210
+ 917937 => true,
211
+ 917938 => true,
212
+ 917939 => true,
213
+ 917940 => true,
214
+ 917941 => true,
215
+ 917942 => true,
216
+ 917943 => true,
217
+ 917944 => true,
218
+ 917945 => true,
219
+ 917946 => true,
220
+ 917947 => true,
221
+ 917948 => true,
222
+ 917949 => true,
223
+ 917950 => true,
224
+ 917951 => true,
225
+ 917952 => true,
226
+ 917953 => true,
227
+ 917954 => true,
228
+ 917955 => true,
229
+ 917956 => true,
230
+ 917957 => true,
231
+ 917958 => true,
232
+ 917959 => true,
233
+ 917960 => true,
234
+ 917961 => true,
235
+ 917962 => true,
236
+ 917963 => true,
237
+ 917964 => true,
238
+ 917965 => true,
239
+ 917966 => true,
240
+ 917967 => true,
241
+ 917968 => true,
242
+ 917969 => true,
243
+ 917970 => true,
244
+ 917971 => true,
245
+ 917972 => true,
246
+ 917973 => true,
247
+ 917974 => true,
248
+ 917975 => true,
249
+ 917976 => true,
250
+ 917977 => true,
251
+ 917978 => true,
252
+ 917979 => true,
253
+ 917980 => true,
254
+ 917981 => true,
255
+ 917982 => true,
256
+ 917983 => true,
257
+ 917984 => true,
258
+ 917985 => true,
259
+ 917986 => true,
260
+ 917987 => true,
261
+ 917988 => true,
262
+ 917989 => true,
263
+ 917990 => true,
264
+ 917991 => true,
265
+ 917992 => true,
266
+ 917993 => true,
267
+ 917994 => true,
268
+ 917995 => true,
269
+ 917996 => true,
270
+ 917997 => true,
271
+ 917998 => true,
272
+ 917999 => true,
273
+ );
vendor/symfony/polyfill-intl-idn/Resources/unidata/mapped.php ADDED
@@ -0,0 +1,5778 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return array (
4
+ 65 => 'a',
5
+ 66 => 'b',
6
+ 67 => 'c',
7
+ 68 => 'd',
8
+ 69 => 'e',
9
+ 70 => 'f',
10
+ 71 => 'g',
11
+ 72 => 'h',
12
+ 73 => 'i',
13
+ 74 => 'j',
14
+ 75 => 'k',
15
+ 76 => 'l',
16
+ 77 => 'm',
17
+ 78 => 'n',
18
+ 79 => 'o',
19
+ 80 => 'p',
20
+ 81 => 'q',
21
+ 82 => 'r',
22
+ 83 => 's',
23
+ 84 => 't',
24
+ 85 => 'u',
25
+ 86 => 'v',
26
+ 87 => 'w',
27
+ 88 => 'x',
28
+ 89 => 'y',
29
+ 90 => 'z',
30
+ 170 => 'a',
31
+ 178 => '2',
32
+ 179 => '3',
33
+ 181 => 'μ',
34
+ 185 => '1',
35
+ 186 => 'o',
36
+ 188 => '1⁄4',
37
+ 189 => '1⁄2',
38
+ 190 => '3⁄4',
39
+ 192 => 'à',
40
+ 193 => 'á',
41
+ 194 => 'â',
42
+ 195 => 'ã',
43
+ 196 => 'ä',
44
+ 197 => 'å',
45
+ 198 => 'æ',
46
+ 199 => 'ç',
47
+ 200 => 'è',
48
+ 201 => 'é',
49
+ 202 => 'ê',
50
+ 203 => 'ë',
51
+ 204 => 'ì',
52
+ 205 => 'í',
53
+ 206 => 'î',
54
+ 207 => 'ï',
55
+ 208 => 'ð',
56
+ 209 => 'ñ',
57
+ 210 => 'ò',
58
+ 211 => 'ó',
59
+ 212 => 'ô',
60
+ 213 => 'õ',
61
+ 214 => 'ö',
62
+ 216 => 'ø',
63
+ 217 => 'ù',
64
+ 218 => 'ú',
65
+ 219 => 'û',
66
+ 220 => 'ü',
67
+ 221 => 'ý',
68
+ 222 => 'þ',
69
+ 256 => 'ā',
70
+ 258 => 'ă',
71
+ 260 => 'ą',
72
+ 262 => 'ć',
73
+ 264 => 'ĉ',
74
+ 266 => 'ċ',
75
+ 268 => 'č',
76
+ 270 => 'ď',
77
+ 272 => 'đ',
78
+ 274 => 'ē',
79
+ 276 => 'ĕ',
80
+ 278 => 'ė',
81
+ 280 => 'ę',
82
+ 282 => 'ě',
83
+ 284 => 'ĝ',
84
+ 286 => 'ğ',
85
+ 288 => 'ġ',
86
+ 290 => 'ģ',
87
+ 292 => 'ĥ',
88
+ 294 => 'ħ',
89
+ 296 => 'ĩ',
90
+ 298 => 'ī',
91
+ 300 => 'ĭ',
92
+ 302 => 'į',
93
+ 304 => 'i̇',
94
+ 306 => 'ij',
95
+ 307 => 'ij',
96
+ 308 => 'ĵ',
97
+ 310 => 'ķ',
98
+ 313 => 'ĺ',
99
+ 315 => 'ļ',
100
+ 317 => 'ľ',
101
+ 319 => 'l·',
102
+ 320 => 'l·',
103
+ 321 => 'ł',
104
+ 323 => 'ń',
105
+ 325 => 'ņ',
106
+ 327 => 'ň',
107
+ 329 => 'ʼn',
108
+ 330 => 'ŋ',
109
+ 332 => 'ō',
110
+ 334 => 'ŏ',
111
+ 336 => 'ő',
112
+ 338 => 'œ',
113
+ 340 => 'ŕ',
114
+ 342 => 'ŗ',
115
+ 344 => 'ř',
116
+ 346 => 'ś',
117
+ 348 => 'ŝ',
118
+ 350 => 'ş',
119
+ 352 => 'š',
120
+ 354 => 'ţ',
121
+ 356 => 'ť',
122
+ 358 => 'ŧ',
123
+ 360 => 'ũ',
124
+ 362 => 'ū',
125
+ 364 => 'ŭ',
126
+ 366 => 'ů',
127
+ 368 => 'ű',
128
+ 370 => 'ų',
129
+ 372 => 'ŵ',
130
+ 374 => 'ŷ',
131
+ 376 => 'ÿ',
132
+ 377 => 'ź',
133
+ 379 => 'ż',
134
+ 381 => 'ž',
135
+ 383 => 's',
136
+ 385 => 'ɓ',
137
+ 386 => 'ƃ',
138
+ 388 => 'ƅ',
139
+ 390 => 'ɔ',
140
+ 391 => 'ƈ',
141
+ 393 => 'ɖ',
142
+ 394 => 'ɗ',
143
+ 395 => 'ƌ',
144
+ 398 => 'ǝ',
145
+ 399 => 'ə',
146
+ 400 => 'ɛ',
147
+ 401 => 'ƒ',
148
+ 403 => 'ɠ',
149
+ 404 => 'ɣ',
150
+ 406 => 'ɩ',
151
+ 407 => 'ɨ',
152
+ 408 => 'ƙ',
153
+ 412 => 'ɯ',
154
+ 413 => 'ɲ',
155
+ 415 => 'ɵ',
156
+ 416 => 'ơ',
157
+ 418 => 'ƣ',
158
+ 420 => 'ƥ',
159
+ 422 => 'ʀ',
160
+ 423 => 'ƨ',
161
+ 425 => 'ʃ',
162
+ 428 => 'ƭ',
163
+ 430 => 'ʈ',
164
+ 431 => 'ư',
165
+ 433 => 'ʊ',
166
+ 434 => 'ʋ',
167
+ 435 => 'ƴ',
168
+ 437 => 'ƶ',
169
+ 439 => 'ʒ',
170
+ 440 => 'ƹ',
171
+ 444 => 'ƽ',
172
+ 452 => 'dž',
173
+ 453 => 'dž',
174
+ 454 => 'dž',
175
+ 455 => 'lj',
176
+ 456 => 'lj',
177
+ 457 => 'lj',
178
+ 458 => 'nj',
179
+ 459 => 'nj',
180
+ 460 => 'nj',
181
+ 461 => 'ǎ',
182
+ 463 => 'ǐ',
183
+ 465 => 'ǒ',
184
+ 467 => 'ǔ',
185
+ 469 => 'ǖ',
186
+ 471 => 'ǘ',
187
+ 473 => 'ǚ',
188
+ 475 => 'ǜ',
189
+ 478 => 'ǟ',
190
+ 480 => 'ǡ',
191
+ 482 => 'ǣ',
192
+ 484 => 'ǥ',
193
+ 486 => 'ǧ',
194
+ 488 => 'ǩ',
195
+ 490 => 'ǫ',
196
+ 492 => 'ǭ',
197
+ 494 => 'ǯ',
198
+ 497 => 'dz',
199
+ 498 => 'dz',
200
+ 499 => 'dz',
201
+ 500 => 'ǵ',
202
+ 502 => 'ƕ',
203
+ 503 => 'ƿ',
204
+ 504 => 'ǹ',
205
+ 506 => 'ǻ',
206
+ 508 => 'ǽ',
207
+ 510 => 'ǿ',
208
+ 512 => 'ȁ',
209
+ 514 => 'ȃ',
210
+ 516 => 'ȅ',
211
+ 518 => 'ȇ',
212
+ 520 => 'ȉ',
213
+ 522 => 'ȋ',
214
+ 524 => 'ȍ',
215
+ 526 => 'ȏ',
216
+ 528 => 'ȑ',
217
+ 530 => 'ȓ',
218
+ 532 => 'ȕ',
219
+ 534 => 'ȗ',
220
+ 536 => 'ș',
221
+ 538 => 'ț',
222
+ 540 => 'ȝ',
223
+ 542 => 'ȟ',
224
+ 544 => 'ƞ',
225
+ 546 => 'ȣ',
226
+ 548 => 'ȥ',
227
+ 550 => 'ȧ',
228
+ 552 => 'ȩ',
229
+ 554 => 'ȫ',
230
+ 556 => 'ȭ',
231
+ 558 => 'ȯ',
232
+ 560 => 'ȱ',
233
+ 562 => 'ȳ',
234
+ 570 => 'ⱥ',
235
+ 571 => 'ȼ',
236
+ 573 => 'ƚ',
237
+ 574 => 'ⱦ',
238
+ 577 => 'ɂ',
239
+ 579 => 'ƀ',
240
+ 580 => 'ʉ',
241
+ 581 => 'ʌ',
242
+ 582 => 'ɇ',
243
+ 584 => 'ɉ',
244
+ 586 => 'ɋ',
245
+ 588 => 'ɍ',
246
+ 590 => 'ɏ',
247
+ 688 => 'h',
248
+ 689 => 'ɦ',
249
+ 690 => 'j',
250
+ 691 => 'r',
251
+ 692 => 'ɹ',
252
+ 693 => 'ɻ',
253
+ 694 => 'ʁ',
254
+ 695 => 'w',
255
+ 696 => 'y',
256
+ 736 => 'ɣ',
257
+ 737 => 'l',
258
+ 738 => 's',
259
+ 739 => 'x',
260
+ 740 => 'ʕ',
261
+ 832 => '̀',
262
+ 833 => '́',
263
+ 835 => '̓',
264
+ 836 => '̈́',
265
+ 837 => 'ι',
266
+ 880 => 'ͱ',
267
+ 882 => 'ͳ',
268
+ 884 => 'ʹ',
269
+ 886 => 'ͷ',
270
+ 895 => 'ϳ',
271
+ 902 => 'ά',
272
+ 903 => '·',
273
+ 904 => 'έ',
274
+ 905 => 'ή',
275
+ 906 => 'ί',
276
+ 908 => 'ό',
277
+ 910 => 'ύ',
278
+ 911 => 'ώ',
279
+ 913 => 'α',
280
+ 914 => 'β',
281
+ 915 => 'γ',
282
+ 916 => 'δ',
283
+ 917 => 'ε',
284
+ 918 => 'ζ',
285
+ 919 => 'η',
286
+ 920 => 'θ',
287
+ 921 => 'ι',
288
+ 922 => 'κ',
289
+ 923 => 'λ',
290
+ 924 => 'μ',
291
+ 925 => 'ν',
292
+ 926 => 'ξ',
293
+ 927 => 'ο',
294
+ 928 => 'π',
295
+ 929 => 'ρ',
296
+ 931 => 'σ',
297
+ 932 => 'τ',
298
+ 933 => 'υ',
299
+ 934 => 'φ',
300
+ 935 => 'χ',
301
+ 936 => 'ψ',
302
+ 937 => 'ω',
303
+ 938 => 'ϊ',
304
+ 939 => 'ϋ',
305
+ 975 => 'ϗ',
306
+ 976 => 'β',
307
+ 977 => 'θ',
308
+ 978 => 'υ',
309
+ 979 => 'ύ',
310
+ 980 => 'ϋ',
311
+ 981 => 'φ',
312
+ 982 => 'π',
313
+ 984 => 'ϙ',
314
+ 986 => 'ϛ',
315
+ 988 => 'ϝ',
316
+ 990 => 'ϟ',
317
+ 992 => 'ϡ',
318
+ 994 => 'ϣ',
319
+ 996 => 'ϥ',
320
+ 998 => 'ϧ',
321
+ 1000 => 'ϩ',
322
+ 1002 => 'ϫ',
323
+ 1004 => 'ϭ',
324
+ 1006 => 'ϯ',
325
+ 1008 => 'κ',
326
+ 1009 => 'ρ',
327
+ 1010 => 'σ',
328
+ 1012 => 'θ',
329
+ 1013 => 'ε',
330
+ 1015 => 'ϸ',
331
+ 1017 => 'σ',
332
+ 1018 => 'ϻ',
333
+ 1021 => 'ͻ',
334
+ 1022 => 'ͼ',
335
+ 1023 => 'ͽ',
336
+ 1024 => 'ѐ',
337
+ 1025 => 'ё',
338
+ 1026 => 'ђ',
339
+ 1027 => 'ѓ',
340
+ 1028 => 'є',
341
+ 1029 => 'ѕ',
342
+ 1030 => 'і',
343
+ 1031 => 'ї',
344
+ 1032 => 'ј',
345
+ 1033 => 'љ',
346
+ 1034 => 'њ',
347
+ 1035 => 'ћ',
348
+ 1036 => 'ќ',
349
+ 1037 => 'ѝ',
350
+ 1038 => 'ў',
351
+ 1039 => 'џ',
352
+ 1040 => 'а',
353
+ 1041 => 'б',
354
+ 1042 => 'в',
355
+ 1043 => 'г',
356
+ 1044 => 'д',
357
+ 1045 => 'е',
358
+ 1046 => 'ж',
359
+ 1047 => 'з',
360
+ 1048 => 'и',
361
+ 1049 => 'й',
362
+ 1050 => 'к',
363
+ 1051 => 'л',
364
+ 1052 => 'м',
365
+ 1053 => 'н',
366
+ 1054 => 'о',
367
+ 1055 => 'п',
368
+ 1056 => 'р',
369
+ 1057 => 'с',
370
+ 1058 => 'т',
371
+ 1059 => 'у',
372
+ 1060 => 'ф',
373
+ 1061 => 'х',
374
+ 1062 => 'ц',
375
+ 1063 => 'ч',
376
+ 1064 => 'ш',
377
+ 1065 => 'щ',
378
+ 1066 => 'ъ',
379
+ 1067 => 'ы',
380
+ 1068 => 'ь',
381
+ 1069 => 'э',
382
+ 1070 => 'ю',
383
+ 1071 => 'я',
384
+ 1120 => 'ѡ',
385
+ 1122 => 'ѣ',
386
+ 1124 => 'ѥ',
387
+ 1126 => 'ѧ',
388
+ 1128 => 'ѩ',
389
+ 1130 => 'ѫ',
390
+ 1132 => 'ѭ',
391
+ 1134 => 'ѯ',
392
+ 1136 => 'ѱ',
393
+ 1138 => 'ѳ',
394
+ 1140 => 'ѵ',
395
+ 1142 => 'ѷ',
396
+ 1144 => 'ѹ',
397
+ 1146 => 'ѻ',
398
+ 1148 => 'ѽ',
399
+ 1150 => 'ѿ',
400
+ 1152 => 'ҁ',
401
+ 1162 => 'ҋ',
402
+ 1164 => 'ҍ',
403
+ 1166 => 'ҏ',
404
+ 1168 => 'ґ',
405
+ 1170 => 'ғ',
406
+ 1172 => 'ҕ',
407
+ 1174 => 'җ',
408
+ 1176 => 'ҙ',
409
+ 1178 => 'қ',
410
+ 1180 => 'ҝ',
411
+ 1182 => 'ҟ',
412
+ 1184 => 'ҡ',
413
+ 1186 => 'ң',
414
+ 1188 => 'ҥ',
415
+ 1190 => 'ҧ',
416
+ 1192 => 'ҩ',
417
+ 1194 => 'ҫ',
418
+ 1196 => 'ҭ',
419
+ 1198 => 'ү',
420
+ 1200 => 'ұ',
421
+ 1202 => 'ҳ',
422
+ 1204 => 'ҵ',
423
+ 1206 => 'ҷ',
424
+ 1208 => 'ҹ',
425
+ 1210 => 'һ',
426
+ 1212 => 'ҽ',
427
+ 1214 => 'ҿ',
428
+ 1217 => 'ӂ',
429
+ 1219 => 'ӄ',
430
+ 1221 => 'ӆ',
431
+ 1223 => 'ӈ',
432
+ 1225 => 'ӊ',
433
+ 1227 => 'ӌ',
434
+ 1229 => 'ӎ',
435
+ 1232 => 'ӑ',
436
+ 1234 => 'ӓ',
437
+ 1236 => 'ӕ',
438
+ 1238 => 'ӗ',
439
+ 1240 => 'ә',
440
+ 1242 => 'ӛ',
441
+ 1244 => 'ӝ',
442
+ 1246 => 'ӟ',
443
+ 1248 => 'ӡ',
444
+ 1250 => 'ӣ',
445
+ 1252 => 'ӥ',
446
+ 1254 => 'ӧ',
447
+ 1256 => 'ө',
448
+ 1258 => 'ӫ',
449
+ 1260 => 'ӭ',
450
+ 1262 => 'ӯ',
451
+ 1264 => 'ӱ',
452
+ 1266 => 'ӳ',
453
+ 1268 => 'ӵ',
454
+ 1270 => 'ӷ',
455
+ 1272 => 'ӹ',
456
+ 1274 => 'ӻ',
457
+ 1276 => 'ӽ',
458
+ 1278 => 'ӿ',
459
+ 1280 => 'ԁ',
460
+ 1282 => 'ԃ',
461
+ 1284 => 'ԅ',
462
+ 1286 => 'ԇ',
463
+ 1288 => 'ԉ',
464
+ 1290 => 'ԋ',
465
+ 1292 => 'ԍ',
466
+ 1294 => 'ԏ',
467
+ 1296 => 'ԑ',
468
+ 1298 => 'ԓ',
469
+ 1300 => 'ԕ',
470
+ 1302 => 'ԗ',
471
+ 1304 => 'ԙ',
472
+ 1306 => 'ԛ',
473
+ 1308 => 'ԝ',
474
+ 1310 => 'ԟ',
475
+ 1312 => 'ԡ',
476
+ 1314 => 'ԣ',
477
+ 1316 => 'ԥ',
478
+ 1318 => 'ԧ',
479
+ 1320 => 'ԩ',
480
+ 1322 => 'ԫ',
481
+ 1324 => 'ԭ',
482
+ 1326 => 'ԯ',
483
+ 1329 => 'ա',
484
+ 1330 => 'բ',
485
+ 1331 => 'գ',
486
+ 1332 => 'դ',
487
+ 1333 => 'ե',
488
+ 1334 => 'զ',
489
+ 1335 => 'է',
490
+ 1336 => 'ը',
491
+ 1337 => 'թ',
492
+ 1338 => 'ժ',
493
+ 1339 => 'ի',
494
+ 1340 => 'լ',
495
+ 1341 => 'խ',
496
+ 1342 => 'ծ',
497
+ 1343 => 'կ',
498
+ 1344 => 'հ',
499
+ 1345 => 'ձ',
500
+ 1346 => 'ղ',
501
+ 1347 => 'ճ',
502
+ 1348 => 'մ',
503
+ 1349 => 'յ',
504
+ 1350 => 'ն',
505
+ 1351 => 'շ',
506
+ 1352 => 'ո',
507
+ 1353 => 'չ',
508
+ 1354 => 'պ',
509
+ 1355 => 'ջ',
510
+ 1356 => 'ռ',
511
+ 1357 => 'ս',
512
+ 1358 => 'վ',
513
+ 1359 => 'տ',
514
+ 1360 => 'ր',
515
+ 1361 => 'ց',
516
+ 1362 => 'ւ',
517
+ 1363 => 'փ',
518
+ 1364 => 'ք',
519
+ 1365 => 'օ',
520
+ 1366 => 'ֆ',
521
+ 1415 => 'եւ',
522
+ 1653 => 'اٴ',
523
+ 1654 => 'وٴ',
524
+ 1655 => 'ۇٴ',
525
+ 1656 => 'يٴ',
526
+ 2392 => 'क़',
527
+ 2393 => 'ख़',
528
+ 2394 => 'ग़',
529
+ 2395 => 'ज़',
530
+ 2396 => 'ड़',
531
+ 2397 => 'ढ़',
532
+ 2398 => 'फ़',
533
+ 2399 => 'य़',
534
+ 2524 => 'ড়',
535
+ 2525 => 'ঢ়',
536
+ 2527 => 'য়',
537
+ 2611 => 'ਲ਼',
538
+ 2614 => 'ਸ਼',
539
+ 2649 => 'ਖ਼',
540
+ 2650 => 'ਗ਼',
541
+ 2651 => 'ਜ਼',
542
+ 2654 => 'ਫ਼',
543
+ 2908 => 'ଡ଼',
544
+ 2909 => 'ଢ଼',
545
+ 3635 => 'ํา',
546
+ 3763 => 'ໍາ',
547
+ 3804 => 'ຫນ',
548
+ 3805 => 'ຫມ',
549
+ 3852 => '་',
550
+ 3907 => 'གྷ',
551
+ 3917 => 'ཌྷ',
552
+ 3922 => 'དྷ',
553
+ 3927 => 'བྷ',
554
+ 3932 => 'ཛྷ',
555
+ 3945 => 'ཀྵ',
556
+ 3955 => 'ཱི',
557
+ 3957 => 'ཱུ',
558
+ 3958 => 'ྲྀ',
559
+ 3959 => 'ྲཱྀ',
560
+ 3960 => 'ླྀ',
561
+ 3961 => 'ླཱྀ',
562
+ 3969 => 'ཱྀ',
563
+ 3987 => 'ྒྷ',
564
+ 3997 => 'ྜྷ',
565
+ 4002 => 'ྡྷ',
566
+ 4007 => 'ྦྷ',
567
+ 4012 => 'ྫྷ',
568
+ 4025 => 'ྐྵ',
569
+ 4295 => 'ⴧ',
570
+ 4301 => 'ⴭ',
571
+ 4348 => 'ნ',
572
+ 5112 => 'Ᏸ',
573
+ 5113 => 'Ᏹ',
574
+ 5114 => 'Ᏺ',
575
+ 5115 => 'Ᏻ',
576
+ 5116 => 'Ᏼ',
577
+ 5117 => 'Ᏽ',
578
+ 7296 => 'в',
579
+ 7297 => 'д',
580
+ 7298 => 'о',
581
+ 7299 => 'с',
582
+ 7300 => 'т',
583
+ 7301 => 'т',
584
+ 7302 => 'ъ',
585
+ 7303 => 'ѣ',
586
+ 7304 => 'ꙋ',
587
+ 7312 => 'ა',
588
+ 7313 => 'ბ',
589
+ 7314 => 'გ',
590
+ 7315 => 'დ',
591
+ 7316 => 'ე',
592
+ 7317 => 'ვ',
593
+ 7318 => 'ზ',
594
+ 7319 => 'თ',
595
+ 7320 => 'ი',
596
+ 7321 => 'კ',
597
+ 7322 => 'ლ',
598
+ 7323 => 'მ',
599
+ 7324 => 'ნ',
600
+ 7325 => 'ო',
601
+ 7326 => 'პ',
602
+ 7327 => 'ჟ',
603
+ 7328 => 'რ',
604
+ 7329 => 'ს',
605
+ 7330 => 'ტ',
606
+ 7331 => 'უ',
607
+ 7332 => 'ფ',
608
+ 7333 => 'ქ',
609
+ 7334 => 'ღ',
610
+ 7335 => 'ყ',
611
+ 7336 => 'შ',
612
+ 7337 => 'ჩ',
613
+ 7338 => 'ც',
614
+ 7339 => 'ძ',
615
+ 7340 => 'წ',
616
+ 7341 => 'ჭ',
617
+ 7342 => 'ხ',
618
+ 7343 => 'ჯ',
619
+ 7344 => 'ჰ',
620
+ 7345 => 'ჱ',
621
+ 7346 => 'ჲ',
622
+ 7347 => 'ჳ',
623
+ 7348 => 'ჴ',
624
+ 7349 => 'ჵ',
625
+ 7350 => 'ჶ',
626
+ 7351 => 'ჷ',
627
+ 7352 => 'ჸ',
628
+ 7353 => 'ჹ',
629
+ 7354 => 'ჺ',
630
+ 7357 => 'ჽ',
631
+ 7358 => 'ჾ',
632
+ 7359 => 'ჿ',
633
+ 7468 => 'a',
634
+ 7469 => 'æ',
635
+ 7470 => 'b',
636
+ 7472 => 'd',
637
+ 7473 => 'e',
638
+ 7474 => 'ǝ',
639
+ 7475 => 'g',
640
+ 7476 => 'h',
641
+ 7477 => 'i',
642
+ 7478 => 'j',
643
+ 7479 => 'k',
644
+ 7480 => 'l',
645
+ 7481 => 'm',
646
+ 7482 => 'n',
647
+ 7484 => 'o',
648
+ 7485 => 'ȣ',
649
+ 7486 => 'p',
650
+ 7487 => 'r',
651
+ 7488 => 't',
652
+ 7489 => 'u',
653
+ 7490 => 'w',
654
+ 7491 => 'a',
655
+ 7492 => 'ɐ',
656
+ 7493 => 'ɑ',
657
+ 7494 => 'ᴂ',
658
+ 7495 => 'b',
659
+ 7496 => 'd',
660
+ 7497 => 'e',
661
+ 7498 => 'ə',
662
+ 7499 => 'ɛ',
663
+ 7500 => 'ɜ',
664
+ 7501 => 'g',
665
+ 7503 => 'k',
666
+ 7504 => 'm',
667
+ 7505 => 'ŋ',
668
+ 7506 => 'o',
669
+ 7507 => 'ɔ',
670
+ 7508 => 'ᴖ',
671
+ 7509 => 'ᴗ',
672
+ 7510 => 'p',
673
+ 7511 => 't',
674
+ 7512 => 'u',
675
+ 7513 => 'ᴝ',
676
+ 7514 => 'ɯ',
677
+ 7515 => 'v',
678
+ 7516 => 'ᴥ',
679
+ 7517 => 'β',
680
+ 7518 => 'γ',
681
+ 7519 => 'δ',
682
+ 7520 => 'φ',
683
+ 7521 => 'χ',
684
+ 7522 => 'i',
685
+ 7523 => 'r',
686
+ 7524 => 'u',
687
+ 7525 => 'v',
688
+ 7526 => 'β',
689
+ 7527 => 'γ',
690
+ 7528 => 'ρ',
691
+ 7529 => 'φ',
692
+ 7530 => 'χ',
693
+ 7544 => 'н',
694
+ 7579 => 'ɒ',
695
+ 7580 => 'c',
696
+ 7581 => 'ɕ',
697
+ 7582 => 'ð',
698
+ 7583 => 'ɜ',
699
+ 7584 => 'f',
700
+ 7585 => 'ɟ',
701
+ 7586 => 'ɡ',
702
+ 7587 => 'ɥ',
703
+ 7588 => 'ɨ',
704
+ 7589 => 'ɩ',
705
+ 7590 => 'ɪ',
706
+ 7591 => 'ᵻ',
707
+ 7592 => 'ʝ',
708
+ 7593 => 'ɭ',
709
+ 7594 => 'ᶅ',
710
+ 7595 => 'ʟ',
711
+ 7596 => 'ɱ',
712
+ 7597 => 'ɰ',
713
+ 7598 => 'ɲ',
714
+ 7599 => 'ɳ',
715
+ 7600 => 'ɴ',
716
+ 7601 => 'ɵ',
717
+ 7602 => 'ɸ',
718
+ 7603 => 'ʂ',
719
+ 7604 => 'ʃ',
720
+ 7605 => 'ƫ',
721
+ 7606 => 'ʉ',
722
+ 7607 => 'ʊ',
723
+ 7608 => 'ᴜ',
724
+ 7609 => 'ʋ',
725
+ 7610 => 'ʌ',
726
+ 7611 => 'z',
727
+ 7612 => 'ʐ',
728
+ 7613 => 'ʑ',
729
+ 7614 => 'ʒ',
730
+ 7615 => 'θ',
731
+ 7680 => 'ḁ',
732
+ 7682 => 'ḃ',
733
+ 7684 => 'ḅ',
734
+ 7686 => 'ḇ',
735
+ 7688 => 'ḉ',
736
+ 7690 => 'ḋ',
737
+ 7692 => 'ḍ',
738
+ 7694 => 'ḏ',
739
+ 7696 => 'ḑ',
740
+ 7698 => 'ḓ',
741
+ 7700 => 'ḕ',
742
+ 7702 => 'ḗ',
743
+ 7704 => 'ḙ',
744
+ 7706 => 'ḛ',
745
+ 7708 => 'ḝ',
746
+ 7710 => 'ḟ',
747
+ 7712 => 'ḡ',
748
+ 7714 => 'ḣ',
749
+ 7716 => 'ḥ',
750
+ 7718 => 'ḧ',
751
+ 7720 => 'ḩ',
752
+ 7722 => 'ḫ',
753
+ 7724 => 'ḭ',
754
+ 7726 => 'ḯ',
755
+ 7728 => 'ḱ',
756
+ 7730 => 'ḳ',
757
+ 7732 => 'ḵ',
758
+ 7734 => 'ḷ',
759
+ 7736 => 'ḹ',
760
+ 7738 => 'ḻ',
761
+ 7740 => 'ḽ',
762
+ 7742 => 'ḿ',
763
+ 7744 => 'ṁ',
764
+ 7746 => 'ṃ',
765
+ 7748 => 'ṅ',
766
+ 7750 => 'ṇ',
767
+ 7752 => 'ṉ',
768
+ 7754 => 'ṋ',
769
+ 7756 => 'ṍ',
770
+ 7758 => 'ṏ',
771
+ 7760 => 'ṑ',
772
+ 7762 => 'ṓ',
773
+ 7764 => 'ṕ',
774
+ 7766 => 'ṗ',
775
+ 7768 => 'ṙ',
776
+ 7770 => 'ṛ',
777
+ 7772 => 'ṝ',
778
+ 7774 => 'ṟ',
779
+ 7776 => 'ṡ',
780
+ 7778 => 'ṣ',
781
+ 7780 => 'ṥ',
782
+ 7782 => 'ṧ',
783
+ 7784 => 'ṩ',
784
+ 7786 => 'ṫ',
785
+ 7788 => 'ṭ',
786
+ 7790 => 'ṯ',
787
+ 7792 => 'ṱ',
788
+ 7794 => 'ṳ',
789
+ 7796 => 'ṵ',
790
+ 7798 => 'ṷ',
791
+ 7800 => 'ṹ',
792
+ 7802 => 'ṻ',
793
+ 7804 => 'ṽ',
794
+ 7806 => 'ṿ',
795
+ 7808 => 'ẁ',
796
+ 7810 => 'ẃ',
797
+ 7812 => 'ẅ',
798
+ 7814 => 'ẇ',
799
+ 7816 => 'ẉ',
800
+ 7818 => 'ẋ',
801
+ 7820 => 'ẍ',
802
+ 7822 => 'ẏ',
803
+ 7824 => 'ẑ',
804
+ 7826 => 'ẓ',
805
+ 7828 => 'ẕ',
806
+ 7834 => 'aʾ',
807
+ 7835 => 'ṡ',
808
+ 7838 => 'ss',
809
+ 7840 => 'ạ',
810
+ 7842 => 'ả',
811
+ 7844 => 'ấ',
812
+ 7846 => 'ầ',
813
+ 7848 => 'ẩ',
814
+ 7850 => 'ẫ',
815
+ 7852 => 'ậ',
816
+ 7854 => 'ắ',
817
+ 7856 => 'ằ',
818
+ 7858 => 'ẳ',
819
+ 7860 => 'ẵ',
820
+ 7862 => 'ặ',
821
+ 7864 => 'ẹ',
822
+ 7866 => 'ẻ',
823
+ 7868 => 'ẽ',
824
+ 7870 => 'ế',
825
+ 7872 => 'ề',
826
+ 7874 => 'ể',
827
+ 7876 => 'ễ',
828
+ 7878 => 'ệ',
829
+ 7880 => 'ỉ',
830
+ 7882 => 'ị',
831
+ 7884 => 'ọ',
832
+ 7886 => 'ỏ',
833
+ 7888 => 'ố',
834
+ 7890 => 'ồ',
835
+ 7892 => 'ổ',
836
+ 7894 => 'ỗ',
837
+ 7896 => 'ộ',
838
+ 7898 => 'ớ',
839
+ 7900 => 'ờ',
840
+ 7902 => 'ở',
841
+ 7904 => 'ỡ',
842
+ 7906 => 'ợ',
843
+ 7908 => 'ụ',
844
+ 7910 => 'ủ',
845
+ 7912 => 'ứ',
846
+ 7914 => 'ừ',
847
+ 7916 => 'ử',
848
+ 7918 => 'ữ',
849
+ 7920 => 'ự',
850
+ 7922 => 'ỳ',
851
+ 7924 => 'ỵ',
852
+ 7926 => 'ỷ',
853
+ 7928 => 'ỹ',
854
+ 7930 => 'ỻ',
855
+ 7932 => 'ỽ',
856
+ 7934 => 'ỿ',
857
+ 7944 => 'ἀ',
858
+ 7945 => 'ἁ',
859
+ 7946 => 'ἂ',
860
+ 7947 => 'ἃ',
861
+ 7948 => 'ἄ',
862
+ 7949 => 'ἅ',
863
+ 7950 => 'ἆ',
864
+ 7951 => 'ἇ',
865
+ 7960 => 'ἐ',
866
+ 7961 => 'ἑ',
867
+ 7962 => 'ἒ',
868
+ 7963 => 'ἓ',
869
+ 7964 => 'ἔ',
870
+ 7965 => 'ἕ',
871
+ 7976 => 'ἠ',
872
+ 7977 => 'ἡ',
873
+ 7978 => 'ἢ',
874
+ 7979 => 'ἣ',
875
+ 7980 => 'ἤ',
876
+ 7981 => 'ἥ',
877
+ 7982 => 'ἦ',
878
+ 7983 => 'ἧ',
879
+ 7992 => 'ἰ',
880
+ 7993 => 'ἱ',
881
+ 7994 => 'ἲ',
882
+ 7995 => 'ἳ',
883
+ 7996 => 'ἴ',
884
+ 7997 => 'ἵ',
885
+ 7998 => 'ἶ',
886
+ 7999 => 'ἷ',
887
+ 8008 => 'ὀ',
888
+ 8009 => 'ὁ',
889
+ 8010 => 'ὂ',
890
+ 8011 => 'ὃ',
891
+ 8012 => 'ὄ',
892
+ 8013 => 'ὅ',
893
+ 8025 => 'ὑ',
894
+ 8027 => 'ὓ',
895
+ 8029 => 'ὕ',
896
+ 8031 => 'ὗ',
897
+ 8040 => 'ὠ',
898
+ 8041 => 'ὡ',
899
+ 8042 => 'ὢ',
900
+ 8043 => 'ὣ',
901
+ 8044 => 'ὤ',
902
+ 8045 => 'ὥ',
903
+ 8046 => 'ὦ',
904
+ 8047 => 'ὧ',
905
+ 8049 => 'ά',
906
+ 8051 => 'έ',
907
+ 8053 => 'ή',
908
+ 8055 => 'ί',
909
+ 8057 => 'ό',
910
+ 8059 => 'ύ',
911
+ 8061 => 'ώ',
912
+ 8064 => 'ἀι',
913
+ 8065 => 'ἁι',
914
+ 8066 => 'ἂι',
915
+ 8067 => 'ἃι',
916
+ 8068 => 'ἄι',
917
+ 8069 => 'ἅι',
918
+ 8070 => 'ἆι',
919
+ 8071 => 'ἇι',
920
+ 8072 => 'ἀι',
921
+ 8073 => 'ἁι',
922
+ 8074 => 'ἂι',
923
+ 8075 => 'ἃι',
924
+ 8076 => 'ἄι',
925
+ 8077 => 'ἅι',
926
+ 8078 => 'ἆι',
927
+ 8079 => 'ἇι',
928
+ 8080 => 'ἠι',
929
+ 8081 => 'ἡι',
930
+ 8082 => 'ἢι',
931
+ 8083 => 'ἣι',
932
+ 8084 => 'ἤι',
933
+ 8085 => 'ἥι',
934
+ 8086 => 'ἦι',
935
+ 8087 => 'ἧι',
936
+ 8088 => 'ἠι',
937
+ 8089 => 'ἡι',
938
+ 8090 => 'ἢι',
939
+ 8091 => 'ἣι',
940
+ 8092 => 'ἤι',
941
+ 8093 => 'ἥι',
942
+ 8094 => 'ἦι',
943
+ 8095 => 'ἧι',
944
+ 8096 => 'ὠι',
945
+ 8097 => 'ὡι',
946
+ 8098 => 'ὢι',
947
+ 8099 => 'ὣι',
948
+ 8100 => 'ὤι',
949
+ 8101 => 'ὥι',
950
+ 8102 => 'ὦι',
951
+ 8103 => 'ὧι',
952
+ 8104 => 'ὠι',
953
+ 8105 => 'ὡι',
954
+ 8106 => 'ὢι',
955
+ 8107 => 'ὣι',
956
+ 8108 => 'ὤι',
957
+ 8109 => 'ὥι',
958
+ 8110 => 'ὦι',
959
+ 8111 => 'ὧι',
960
+ 8114 => 'ὰι',
961
+ 8115 => 'αι',
962
+ 8116 => 'άι',
963
+ 8119 => 'ᾶι',
964
+ 8120 => 'ᾰ',
965
+ 8121 => 'ᾱ',
966
+ 8122 => 'ὰ',
967
+ 8123 => 'ά',
968
+ 8124 => 'αι',
969
+ 8126 => 'ι',
970
+ 8130 => 'ὴι',
971
+ 8131 => 'ηι',
972
+ 8132 => 'ήι',
973
+ 8135 => 'ῆι',
974
+ 8136 => 'ὲ',
975
+ 8137 => 'έ',
976
+ 8138 => 'ὴ',
977
+ 8139 => 'ή',
978
+ 8140 => 'ηι',
979
+ 8147 => 'ΐ',
980
+ 8152 => 'ῐ',
981
+ 8153 => 'ῑ',
982
+ 8154 => 'ὶ',
983
+ 8155 => 'ί',
984
+ 8163 => 'ΰ',
985
+ 8168 => 'ῠ',
986
+ 8169 => 'ῡ',
987
+ 8170 => 'ὺ',
988
+ 8171 => 'ύ',
989
+ 8172 => 'ῥ',
990
+ 8178 => 'ὼι',
991
+ 8179 => 'ωι',
992
+ 8180 => 'ώι',
993
+ 8183 => 'ῶι',
994
+ 8184 => 'ὸ',
995
+ 8185 => 'ό',
996
+ 8186 => 'ὼ',
997
+ 8187 => 'ώ',
998
+ 8188 => 'ωι',
999
+ 8209 => '‐',
1000
+ 8243 => '′′',
1001
+ 8244 => '′′′',
1002
+ 8246 => '‵‵',
1003
+ 8247 => '‵‵‵',
1004
+ 8279 => '′′′′',
1005
+ 8304 => '0',
1006
+ 8305 => 'i',
1007
+ 8308 => '4',
1008
+ 8309 => '5',
1009
+ 8310 => '6',
1010
+ 8311 => '7',
1011
+ 8312 => '8',
1012
+ 8313 => '9',
1013
+ 8315 => '−',
1014
+ 8319 => 'n',
1015
+ 8320 => '0',
1016
+ 8321 => '1',
1017
+ 8322 => '2',
1018
+ 8323 => '3',
1019
+ 8324 => '4',
1020
+ 8325 => '5',
1021
+ 8326 => '6',
1022
+ 8327 => '7',
1023
+ 8328 => '8',
1024
+ 8329 => '9',
1025
+ 8331 => '−',
1026
+ 8336 => 'a',
1027
+ 8337 => 'e',
1028
+ 8338 => 'o',
1029
+ 8339 => 'x',
1030
+ 8340 => 'ə',
1031
+ 8341 => 'h',
1032
+ 8342 => 'k',
1033
+ 8343 => 'l',
1034
+ 8344 => 'm',
1035
+ 8345 => 'n',
1036
+ 8346 => 'p',
1037
+ 8347 => 's',
1038
+ 8348 => 't',
1039
+ 8360 => 'rs',
1040
+ 8450 => 'c',
1041
+ 8451 => '°c',
1042
+ 8455 => 'ɛ',
1043
+ 8457 => '°f',
1044
+ 8458 => 'g',
1045
+ 8459 => 'h',
1046
+ 8460 => 'h',
1047
+ 8461 => 'h',
1048
+ 8462 => 'h',
1049
+ 8463 => 'ħ',
1050
+ 8464 => 'i',
1051
+ 8465 => 'i',
1052
+ 8466 => 'l',
1053
+ 8467 => 'l',
1054
+ 8469 => 'n',
1055
+ 8470 => 'no',
1056
+ 8473 => 'p',
1057
+ 8474 => 'q',
1058
+ 8475 => 'r',
1059
+ 8476 => 'r',
1060
+ 8477 => 'r',
1061
+ 8480 => 'sm',
1062
+ 8481 => 'tel',
1063
+ 8482 => 'tm',
1064
+ 8484 => 'z',
1065
+ 8486 => 'ω',
1066
+ 8488 => 'z',
1067
+ 8490 => 'k',
1068
+ 8491 => 'å',
1069
+ 8492 => 'b',
1070
+ 8493 => 'c',
1071
+ 8495 => 'e',
1072
+ 8496 => 'e',
1073
+ 8497 => 'f',
1074
+ 8499 => 'm',
1075
+ 8500 => 'o',
1076
+ 8501 => 'א',
1077
+ 8502 => 'ב',
1078
+ 8503 => 'ג',
1079
+ 8504 => 'ד',
1080
+ 8505 => 'i',
1081
+ 8507 => 'fax',
1082
+ 8508 => 'π',
1083
+ 8509 => 'γ',
1084
+ 8510 => 'γ',
1085
+ 8511 => 'π',
1086
+ 8512 => '∑',
1087
+ 8517 => 'd',
1088
+ 8518 => 'd',
1089
+ 8519 => 'e',
1090
+ 8520 => 'i',
1091
+ 8521 => 'j',
1092
+ 8528 => '1⁄7',
1093
+ 8529 => '1⁄9',
1094
+ 8530 => '1⁄10',
1095
+ 8531 => '1⁄3',
1096
+ 8532 => '2⁄3',
1097
+ 8533 => '1⁄5',
1098
+ 8534 => '2⁄5',
1099
+ 8535 => '3⁄5',
1100
+ 8536 => '4⁄5',
1101
+ 8537 => '1⁄6',
1102
+ 8538 => '5⁄6',
1103
+ 8539 => '1⁄8',
1104
+ 8540 => '3⁄8',
1105
+ 8541 => '5⁄8',
1106
+ 8542 => '7⁄8',
1107
+ 8543 => '1⁄',
1108
+ 8544 => 'i',
1109
+ 8545 => 'ii',
1110
+ 8546 => 'iii',
1111
+ 8547 => 'iv',
1112
+ 8548 => 'v',
1113
+ 8549 => 'vi',
1114
+ 8550 => 'vii',
1115
+ 8551 => 'viii',
1116
+ 8552 => 'ix',
1117
+ 8553 => 'x',
1118
+ 8554 => 'xi',
1119
+ 8555 => 'xii',
1120
+ 8556 => 'l',
1121
+ 8557 => 'c',
1122
+ 8558 => 'd',
1123
+ 8559 => 'm',
1124
+ 8560 => 'i',
1125
+ 8561 => 'ii',
1126
+ 8562 => 'iii',
1127
+ 8563 => 'iv',
1128
+ 8564 => 'v',
1129
+ 8565 => 'vi',
1130
+ 8566 => 'vii',
1131
+ 8567 => 'viii',
1132
+ 8568 => 'ix',
1133
+ 8569 => 'x',
1134
+ 8570 => 'xi',
1135
+ 8571 => 'xii',
1136
+ 8572 => 'l',
1137
+ 8573 => 'c',
1138
+ 8574 => 'd',
1139
+ 8575 => 'm',
1140
+ 8585 => '0⁄3',
1141
+ 8748 => '∫∫',
1142
+ 8749 => '∫∫∫',
1143
+ 8751 => '∮∮',
1144
+ 8752 => '∮∮∮',
1145
+ 9001 => '〈',
1146
+ 9002 => '〉',
1147
+ 9312 => '1',
1148
+ 9313 => '2',
1149
+ 9314 => '3',
1150
+ 9315 => '4',
1151
+ 9316 => '5',
1152
+ 9317 => '6',
1153
+ 9318 => '7',
1154
+ 9319 => '8',
1155
+ 9320 => '9',
1156
+ 9321 => '10',
1157
+ 9322 => '11',
1158
+ 9323 => '12',
1159
+ 9324 => '13',
1160
+ 9325 => '14',
1161
+ 9326 => '15',
1162
+ 9327 => '16',
1163
+ 9328 => '17',
1164
+ 9329 => '18',
1165
+ 9330 => '19',
1166
+ 9331 => '20',
1167
+ 9398 => 'a',
1168
+ 9399 => 'b',
1169
+ 9400 => 'c',
1170
+ 9401 => 'd',
1171
+ 9402 => 'e',
1172
+ 9403 => 'f',
1173
+ 9404 => 'g',
1174
+ 9405 => 'h',
1175
+ 9406 => 'i',
1176
+ 9407 => 'j',
1177
+ 9408 => 'k',
1178
+ 9409 => 'l',
1179
+ 9410 => 'm',
1180
+ 9411 => 'n',
1181
+ 9412 => 'o',
1182
+ 9413 => 'p',
1183
+ 9414 => 'q',
1184
+ 9415 => 'r',
1185
+ 9416 => 's',
1186
+ 9417 => 't',
1187
+ 9418 => 'u',
1188
+ 9419 => 'v',
1189
+ 9420 => 'w',
1190
+ 9421 => 'x',
1191
+ 9422 => 'y',
1192
+ 9423 => 'z',
1193
+ 9424 => 'a',
1194
+ 9425 => 'b',
1195
+ 9426 => 'c',
1196
+ 9427 => 'd',
1197
+ 9428 => 'e',
1198
+ 9429 => 'f',
1199
+ 9430 => 'g',
1200
+ 9431 => 'h',
1201
+ 9432 => 'i',
1202
+ 9433 => 'j',
1203
+ 9434 => 'k',
1204
+ 9435 => 'l',
1205
+ 9436 => 'm',
1206
+ 9437 => 'n',
1207
+ 9438 => 'o',
1208
+ 9439 => 'p',
1209
+ 9440 => 'q',
1210
+ 9441 => 'r',
1211
+ 9442 => 's',
1212
+ 9443 => 't',
1213
+ 9444 => 'u',
1214
+ 9445 => 'v',
1215
+ 9446 => 'w',
1216
+ 9447 => 'x',
1217
+ 9448 => 'y',
1218
+ 9449 => 'z',
1219
+ 9450 => '0',
1220
+ 10764 => '∫∫∫∫',
1221
+ 10972 => '⫝̸',
1222
+ 11264 => 'ⰰ',
1223
+ 11265 => 'ⰱ',
1224
+ 11266 => 'ⰲ',
1225
+ 11267 => 'ⰳ',
1226
+ 11268 => 'ⰴ',
1227
+ 11269 => 'ⰵ',
1228
+ 11270 => 'ⰶ',
1229
+ 11271 => 'ⰷ',
1230
+ 11272 => 'ⰸ',
1231
+ 11273 => 'ⰹ',
1232
+ 11274 => 'ⰺ',
1233
+ 11275 => 'ⰻ',
1234
+ 11276 => 'ⰼ',
1235
+ 11277 => 'ⰽ',
1236
+ 11278 => 'ⰾ',
1237
+ 11279 => 'ⰿ',
1238
+ 11280 => 'ⱀ',
1239
+ 11281 => 'ⱁ',
1240
+ 11282 => 'ⱂ',
1241
+ 11283 => 'ⱃ',
1242
+ 11284 => 'ⱄ',
1243
+ 11285 => 'ⱅ',
1244
+ 11286 => 'ⱆ',
1245
+ 11287 => 'ⱇ',
1246
+ 11288 => 'ⱈ',
1247
+ 11289 => 'ⱉ',
1248
+ 11290 => 'ⱊ',
1249
+ 11291 => 'ⱋ',
1250
+ 11292 => 'ⱌ',
1251
+ 11293 => 'ⱍ',
1252
+ 11294 => 'ⱎ',
1253
+ 11295 => 'ⱏ',
1254
+ 11296 => 'ⱐ',
1255
+ 11297 => 'ⱑ',
1256
+ 11298 => 'ⱒ',
1257
+ 11299 => 'ⱓ',
1258
+ 11300 => 'ⱔ',
1259
+ 11301 => 'ⱕ',
1260
+ 11302 => 'ⱖ',
1261
+ 11303 => 'ⱗ',
1262
+ 11304 => 'ⱘ',
1263
+ 11305 => 'ⱙ',
1264
+ 11306 => 'ⱚ',
1265
+ 11307 => 'ⱛ',
1266
+ 11308 => 'ⱜ',
1267
+ 11309 => 'ⱝ',
1268
+ 11310 => 'ⱞ',
1269
+ 11360 => 'ⱡ',
1270
+ 11362 => 'ɫ',
1271
+ 11363 => 'ᵽ',
1272
+ 11364 => 'ɽ',
1273
+ 11367 => 'ⱨ',
1274
+ 11369 => 'ⱪ',
1275
+ 11371 => 'ⱬ',
1276
+ 11373 => 'ɑ',
1277
+ 11374 => 'ɱ',
1278
+ 11375 => 'ɐ',
1279
+ 11376 => 'ɒ',
1280
+ 11378 => 'ⱳ',
1281
+ 11381 => 'ⱶ',
1282
+ 11388 => 'j',
1283
+ 11389 => 'v',
1284
+ 11390 => 'ȿ',
1285
+ 11391 => 'ɀ',
1286
+ 11392 => 'ⲁ',
1287
+ 11394 => 'ⲃ',
1288
+ 11396 => 'ⲅ',
1289
+ 11398 => 'ⲇ',
1290
+ 11400 => 'ⲉ',
1291
+ 11402 => 'ⲋ',
1292
+ 11404 => 'ⲍ',
1293
+ 11406 => 'ⲏ',
1294
+ 11408 => 'ⲑ',
1295
+ 11410 => 'ⲓ',
1296
+ 11412 => 'ⲕ',
1297
+ 11414 => 'ⲗ',
1298
+ 11416 => 'ⲙ',
1299
+ 11418 => 'ⲛ',
1300
+ 11420 => 'ⲝ',
1301
+ 11422 => 'ⲟ',
1302
+ 11424 => 'ⲡ',
1303
+ 11426 => 'ⲣ',
1304
+ 11428 => 'ⲥ',
1305
+ 11430 => 'ⲧ',
1306
+ 11432 => 'ⲩ',
1307
+ 11434 => 'ⲫ',
1308
+ 11436 => 'ⲭ',
1309
+ 11438 => 'ⲯ',
1310
+ 11440 => 'ⲱ',
1311
+ 11442 => 'ⲳ',
1312
+ 11444 => 'ⲵ',
1313
+ 11446 => 'ⲷ',
1314
+ 11448 => 'ⲹ',
1315
+ 11450 => 'ⲻ',
1316
+ 11452 => 'ⲽ',
1317
+ 11454 => 'ⲿ',
1318
+ 11456 => 'ⳁ',
1319
+ 11458 => 'ⳃ',
1320
+ 11460 => 'ⳅ',
1321
+ 11462 => 'ⳇ',
1322
+ 11464 => 'ⳉ',
1323
+ 11466 => 'ⳋ',
1324
+ 11468 => 'ⳍ',
1325
+ 11470 => 'ⳏ',
1326
+ 11472 => 'ⳑ',
1327
+ 11474 => 'ⳓ',
1328
+ 11476 => 'ⳕ',
1329
+ 11478 => 'ⳗ',
1330
+ 11480 => 'ⳙ',
1331
+ 11482 => 'ⳛ',
1332
+ 11484 => 'ⳝ',
1333
+ 11486 => 'ⳟ',
1334
+ 11488 => 'ⳡ',
1335
+ 11490 => 'ⳣ',
1336
+ 11499 => 'ⳬ',
1337
+ 11501 => 'ⳮ',
1338
+ 11506 => 'ⳳ',
1339
+ 11631 => 'ⵡ',
1340
+ 11935 => '母',
1341
+ 12019 => '龟',
1342
+ 12032 => '一',
1343
+ 12033 => '丨',
1344
+ 12034 => '丶',
1345
+ 12035 => '丿',
1346
+ 12036 => '乙',
1347
+ 12037 => '亅',
1348
+ 12038 => '二',
1349
+ 12039 => '亠',
1350
+ 12040 => '人',
1351
+ 12041 => '儿',
1352
+ 12042 => '入',
1353
+ 12043 => '八',
1354
+ 12044 => '冂',
1355
+ 12045 => '冖',
1356
+ 12046 => '冫',
1357
+ 12047 => '几',
1358
+ 12048 => '凵',
1359
+ 12049 => '刀',
1360
+ 12050 => '力',
1361
+ 12051 => '勹',
1362
+ 12052 => '匕',
1363
+ 12053 => '匚',
1364
+ 12054 => '匸',
1365
+ 12055 => '十',
1366
+ 12056 => '卜',
1367
+ 12057 => '卩',
1368
+ 12058 => '厂',
1369
+ 12059 => '厶',
1370
+ 12060 => '又',
1371
+ 12061 => '口',
1372
+ 12062 => '囗',
1373
+ 12063 => '土',
1374
+ 12064 => '士',
1375
+ 12065 => '夂',
1376
+ 12066 => '夊',
1377
+ 12067 => '夕',
1378
+ 12068 => '大',
1379
+ 12069 => '女',
1380
+ 12070 => '子',
1381
+ 12071 => '宀',
1382
+ 12072 => '寸',
1383
+ 12073 => '小',
1384
+ 12074 => '尢',
1385
+ 12075 => '尸',
1386
+ 12076 => '屮',
1387
+ 12077 => '山',
1388
+ 12078 => '巛',
1389
+ 12079 => '工',
1390
+ 12080 => '己',
1391
+ 12081 => '巾',
1392
+ 12082 => '干',
1393
+ 12083 => '幺',
1394
+ 12084 => '广',
1395
+ 12085 => '廴',
1396
+ 12086 => '廾',
1397
+ 12087 => '弋',
1398
+ 12088 => '弓',
1399
+ 12089 => '彐',
1400
+ 12090 => '彡',
1401
+ 12091 => '彳',
1402
+ 12092 => '心',
1403
+ 12093 => '戈',
1404
+ 12094 => '戶',
1405
+ 12095 => '手',
1406
+ 12096 => '支',
1407
+ 12097 => '攴',
1408
+ 12098 => '文',
1409
+ 12099 => '斗',
1410
+ 12100 => '斤',
1411
+ 12101 => '方',
1412
+ 12102 => '无',
1413
+ 12103 => '日',
1414
+ 12104 => '曰',
1415
+ 12105 => '月',
1416
+ 12106 => '木',
1417
+ 12107 => '欠',
1418
+ 12108 => '止',
1419
+ 12109 => '歹',
1420
+ 12110 => '殳',
1421
+ 12111 => '毋',
1422
+ 12112 => '比',
1423
+ 12113 => '毛',
1424
+ 12114 => '氏',
1425
+ 12115 => '气',
1426
+ 12116 => '水',
1427
+ 12117 => '火',
1428
+ 12118 => '爪',
1429
+ 12119 => '父',
1430
+ 12120 => '爻',
1431
+ 12121 => '爿',
1432
+ 12122 => '片',
1433
+ 12123 => '牙',
1434
+ 12124 => '牛',
1435
+ 12125 => '犬',
1436
+ 12126 => '玄',
1437
+ 12127 => '玉',
1438
+ 12128 => '瓜',
1439
+ 12129 => '瓦',
1440
+ 12130 => '甘',
1441
+ 12131 => '生',
1442
+ 12132 => '用',
1443
+ 12133 => '田',
1444
+ 12134 => '疋',
1445
+ 12135 => '疒',
1446
+ 12136 => '癶',
1447
+ 12137 => '白',
1448
+ 12138 => '皮',
1449
+ 12139 => '皿',
1450
+ 12140 => '目',
1451
+ 12141 => '矛',
1452
+ 12142 => '矢',
1453
+ 12143 => '石',
1454
+ 12144 => '示',
1455
+ 12145 => '禸',
1456
+ 12146 => '禾',
1457
+ 12147 => '穴',
1458
+ 12148 => '立',
1459
+ 12149 => '竹',
1460
+ 12150 => '米',
1461
+ 12151 => '糸',
1462
+ 12152 => '缶',
1463
+ 12153 => '网',
1464
+ 12154 => '羊',
1465
+ 12155 => '羽',
1466
+ 12156 => '老',
1467
+ 12157 => '而',
1468
+ 12158 => '耒',
1469
+ 12159 => '耳',
1470
+ 12160 => '聿',
1471
+ 12161 => '肉',
1472
+ 12162 => '臣',
1473
+ 12163 => '自',
1474
+ 12164 => '至',
1475
+ 12165 => '臼',
1476
+ 12166 => '舌',
1477
+ 12167 => '舛',
1478
+ 12168 => '舟',
1479
+ 12169 => '艮',
1480
+ 12170 => '色',
1481
+ 12171 => '艸',
1482
+ 12172 => '虍',
1483
+ 12173 => '虫',
1484
+ 12174 => '血',
1485
+ 12175 => '行',
1486
+ 12176 => '衣',
1487
+ 12177 => '襾',
1488
+ 12178 => '見',
1489
+ 12179 => '角',
1490
+ 12180 => '言',
1491
+ 12181 => '谷',
1492
+ 12182 => '豆',
1493
+ 12183 => '豕',
1494
+ 12184 => '豸',
1495
+ 12185 => '貝',
1496
+ 12186 => '赤',
1497
+ 12187 => '走',
1498
+ 12188 => '足',
1499
+ 12189 => '身',
1500
+ 12190 => '車',
1501
+ 12191 => '辛',
1502
+ 12192 => '辰',
1503
+ 12193 => '辵',
1504
+ 12194 => '邑',
1505
+ 12195 => '酉',
1506
+ 12196 => '釆',
1507
+ 12197 => '里',
1508
+ 12198 => '金',
1509
+ 12199 => '長',
1510
+ 12200 => '門',
1511
+ 12201 => '阜',
1512
+ 12202 => '隶',
1513
+ 12203 => '隹',
1514
+ 12204 => '雨',
1515
+ 12205 => '靑',
1516
+ 12206 => '非',
1517
+ 12207 => '面',
1518
+ 12208 => '革',
1519
+ 12209 => '韋',
1520
+ 12210 => '韭',
1521
+ 12211 => '音',
1522
+ 12212 => '頁',
1523
+ 12213 => '風',
1524
+ 12214 => '飛',
1525
+ 12215 => '食',
1526
+ 12216 => '首',
1527
+ 12217 => '香',
1528
+ 12218 => '馬',
1529
+ 12219 => '骨',
1530
+ 12220 => '高',
1531
+ 12221 => '髟',
1532
+ 12222 => '鬥',
1533
+ 12223 => '鬯',
1534
+ 12224 => '鬲',
1535
+ 12225 => '鬼',
1536
+ 12226 => '魚',
1537
+ 12227 => '鳥',
1538
+ 12228 => '鹵',
1539
+ 12229 => '鹿',
1540
+ 12230 => '麥',
1541
+ 12231 => '麻',
1542
+ 12232 => '黃',
1543
+ 12233 => '黍',
1544
+ 12234 => '黑',
1545
+ 12235 => '黹',
1546
+ 12236 => '黽',
1547
+ 12237 => '鼎',
1548
+ 12238 => '鼓',
1549
+ 12239 => '鼠',
1550
+ 12240 => '鼻',
1551
+ 12241 => '齊',
1552
+ 12242 => '齒',
1553
+ 12243 => '龍',
1554
+ 12244 => '龜',
1555
+ 12245 => '龠',
1556
+ 12290 => '.',
1557
+ 12342 => '〒',
1558
+ 12344 => '十',
1559
+ 12345 => '卄',
1560
+ 12346 => '卅',
1561
+ 12447 => 'より',
1562
+ 12543 => 'コト',
1563
+ 12593 => 'ᄀ',
1564
+ 12594 => 'ᄁ',
1565
+ 12595 => 'ᆪ',
1566
+ 12596 => 'ᄂ',
1567
+ 12597 => 'ᆬ',
1568
+ 12598 => 'ᆭ',
1569
+ 12599 => 'ᄃ',
1570
+ 12600 => 'ᄄ',
1571
+ 12601 => 'ᄅ',
1572
+ 12602 => 'ᆰ',
1573
+ 12603 => 'ᆱ',
1574
+ 12604 => 'ᆲ',
1575
+ 12605 => 'ᆳ',
1576
+ 12606 => 'ᆴ',
1577
+ 12607 => 'ᆵ',
1578
+ 12608 => 'ᄚ',
1579
+ 12609 => 'ᄆ',
1580
+ 12610 => 'ᄇ',
1581
+ 12611 => 'ᄈ',
1582
+ 12612 => 'ᄡ',
1583
+ 12613 => 'ᄉ',
1584
+ 12614 => 'ᄊ',
1585
+ 12615 => 'ᄋ',
1586
+ 12616 => 'ᄌ',
1587
+ 12617 => 'ᄍ',
1588
+ 12618 => 'ᄎ',
1589
+ 12619 => 'ᄏ',
1590
+ 12620 => 'ᄐ',
1591
+ 12621 => 'ᄑ',
1592
+ 12622 => 'ᄒ',
1593
+ 12623 => 'ᅡ',
1594
+ 12624 => 'ᅢ',
1595
+ 12625 => 'ᅣ',
1596
+ 12626 => 'ᅤ',
1597
+ 12627 => 'ᅥ',
1598
+ 12628 => 'ᅦ',
1599
+ 12629 => 'ᅧ',
1600
+ 12630 => 'ᅨ',
1601
+ 12631 => 'ᅩ',
1602
+ 12632 => 'ᅪ',
1603
+ 12633 => 'ᅫ',
1604
+ 12634 => 'ᅬ',
1605
+ 12635 => 'ᅭ',
1606
+ 12636 => 'ᅮ',
1607
+ 12637 => 'ᅯ',
1608
+ 12638 => 'ᅰ',
1609
+ 12639 => 'ᅱ',
1610
+ 12640 => 'ᅲ',
1611
+ 12641 => 'ᅳ',
1612
+ 12642 => 'ᅴ',
1613
+ 12643 => 'ᅵ',
1614
+ 12645 => 'ᄔ',
1615
+ 12646 => 'ᄕ',
1616
+ 12647 => 'ᇇ',
1617
+ 12648 => 'ᇈ',
1618
+ 12649 => 'ᇌ',
1619
+ 12650 => 'ᇎ',
1620
+ 12651 => 'ᇓ',
1621
+ 12652 => 'ᇗ',
1622
+ 12653 => 'ᇙ',
1623
+ 12654 => 'ᄜ',
1624
+ 12655 => 'ᇝ',
1625
+ 12656 => 'ᇟ',
1626
+ 12657 => 'ᄝ',
1627
+ 12658 => 'ᄞ',
1628
+ 12659 => 'ᄠ',
1629
+ 12660 => 'ᄢ',
1630
+ 12661 => 'ᄣ',
1631
+ 12662 => 'ᄧ',
1632
+ 12663 => 'ᄩ',
1633
+ 12664 => 'ᄫ',
1634
+ 12665 => 'ᄬ',
1635
+ 12666 => 'ᄭ',
1636
+ 12667 => 'ᄮ',
1637
+ 12668 => 'ᄯ',
1638
+ 12669 => 'ᄲ',
1639
+ 12670 => 'ᄶ',
1640
+ 12671 => 'ᅀ',
1641
+ 12672 => 'ᅇ',
1642
+ 12673 => 'ᅌ',
1643
+ 12674 => 'ᇱ',
1644
+ 12675 => 'ᇲ',
1645
+ 12676 => 'ᅗ',
1646
+ 12677 => 'ᅘ',
1647
+ 12678 => 'ᅙ',
1648
+ 12679 => 'ᆄ',
1649
+ 12680 => 'ᆅ',
1650
+ 12681 => 'ᆈ',
1651
+ 12682 => 'ᆑ',
1652
+ 12683 => 'ᆒ',
1653
+ 12684 => 'ᆔ',
1654
+ 12685 => 'ᆞ',
1655
+ 12686 => 'ᆡ',
1656
+ 12690 => '一',
1657
+ 12691 => '二',
1658
+ 12692 => '三',
1659
+ 12693 => '四',
1660
+ 12694 => '上',
1661
+ 12695 => '中',
1662
+ 12696 => '下',
1663
+ 12697 => '甲',
1664
+ 12698 => '乙',
1665
+ 12699 => '丙',
1666
+ 12700 => '丁',
1667
+ 12701 => '天',
1668
+ 12702 => '地',
1669
+ 12703 => '人',
1670
+ 12868 => '問',
1671
+ 12869 => '幼',
1672
+ 12870 => '文',
1673
+ 12871 => '箏',
1674
+ 12880 => 'pte',
1675
+ 12881 => '21',
1676
+ 12882 => '22',
1677
+ 12883 => '23',
1678
+ 12884 => '24',
1679
+ 12885 => '25',
1680
+ 12886 => '26',
1681
+ 12887 => '27',
1682
+ 12888 => '28',
1683
+ 12889 => '29',
1684
+ 12890 => '30',
1685
+ 12891 => '31',
1686
+ 12892 => '32',
1687
+ 12893 => '33',
1688
+ 12894 => '34',
1689
+ 12895 => '35',
1690
+ 12896 => 'ᄀ',
1691
+ 12897 => 'ᄂ',
1692
+ 12898 => 'ᄃ',
1693
+ 12899 => 'ᄅ',
1694
+ 12900 => 'ᄆ',
1695
+ 12901 => 'ᄇ',
1696
+ 12902 => 'ᄉ',
1697
+ 12903 => 'ᄋ',
1698
+ 12904 => 'ᄌ',
1699
+ 12905 => 'ᄎ',
1700
+ 12906 => 'ᄏ',
1701
+ 12907 => 'ᄐ',
1702
+ 12908 => 'ᄑ',
1703
+ 12909 => 'ᄒ',
1704
+ 12910 => '가',
1705
+ 12911 => '나',
1706
+ 12912 => '다',
1707
+ 12913 => '라',
1708
+ 12914 => '마',
1709
+ 12915 => '바',
1710
+ 12916 => '사',
1711
+ 12917 => '아',
1712
+ 12918 => '자',
1713
+ 12919 => '차',
1714
+ 12920 => '카',
1715
+ 12921 => '타',
1716
+ 12922 => '파',
1717
+ 12923 => '하',
1718
+ 12924 => '참고',
1719
+ 12925 => '주의',
1720
+ 12926 => '우',
1721
+ 12928 => '一',
1722
+ 12929 => '二',
1723
+ 12930 => '三',
1724
+ 12931 => '四',
1725
+ 12932 => '五',
1726
+ 12933 => '六',
1727
+ 12934 => '七',
1728
+ 12935 => '八',
1729
+ 12936 => '九',
1730
+ 12937 => '十',
1731
+ 12938 => '月',
1732
+ 12939 => '火',
1733
+ 12940 => '水',
1734
+ 12941 => '木',
1735
+ 12942 => '金',
1736
+ 12943 => '土',
1737
+ 12944 => '日',
1738
+ 12945 => '株',
1739
+ 12946 => '有',
1740
+ 12947 => '社',
1741
+ 12948 => '名',
1742
+ 12949 => '特',
1743
+ 12950 => '財',
1744
+ 12951 => '祝',
1745
+ 12952 => '労',
1746
+ 12953 => '秘',
1747
+ 12954 => '男',
1748
+ 12955 => '女',
1749
+ 12956 => '適',
1750
+ 12957 => '優',
1751
+ 12958 => '印',
1752
+ 12959 => '注',
1753
+ 12960 => '項',
1754
+ 12961 => '休',
1755
+ 12962 => '写',
1756
+ 12963 => '正',
1757
+ 12964 => '上',
1758
+ 12965 => '中',
1759
+ 12966 => '下',
1760
+ 12967 => '左',
1761
+ 12968 => '右',
1762
+ 12969 => '医',
1763
+ 12970 => '宗',
1764
+ 12971 => '学',
1765
+ 12972 => '監',
1766
+ 12973 => '企',
1767
+ 12974 => '資',
1768
+ 12975 => '協',
1769
+ 12976 => '夜',
1770
+ 12977 => '36',
1771
+ 12978 => '37',
1772
+ 12979 => '38',
1773
+ 12980 => '39',
1774
+ 12981 => '40',
1775
+ 12982 => '41',
1776
+ 12983 => '42',
1777
+ 12984 => '43',
1778
+ 12985 => '44',
1779
+ 12986 => '45',
1780
+ 12987 => '46',
1781
+ 12988 => '47',
1782
+ 12989 => '48',
1783
+ 12990 => '49',
1784
+ 12991 => '50',
1785
+ 12992 => '1月',
1786
+ 12993 => '2月',
1787
+ 12994 => '3月',
1788
+ 12995 => '4月',
1789
+ 12996 => '5月',
1790
+ 12997 => '6月',
1791
+ 12998 => '7月',
1792
+ 12999 => '8月',
1793
+ 13000 => '9月',
1794
+ 13001 => '10月',
1795
+ 13002 => '11月',
1796
+ 13003 => '12月',
1797
+ 13004 => 'hg',
1798
+ 13005 => 'erg',
1799
+ 13006 => 'ev',
1800
+ 13007 => 'ltd',
1801
+ 13008 => 'ア',
1802
+ 13009 => 'イ',
1803
+ 13010 => 'ウ',
1804
+ 13011 => 'エ',
1805
+ 13012 => 'オ',
1806
+ 13013 => 'カ',
1807
+ 13014 => 'キ',
1808
+ 13015 => 'ク',
1809
+ 13016 => 'ケ',
1810
+ 13017 => 'コ',
1811
+ 13018 => 'サ',
1812
+ 13019 => 'シ',
1813
+ 13020 => 'ス',
1814
+ 13021 => 'セ',
1815
+ 13022 => 'ソ',
1816
+ 13023 => 'タ',
1817
+ 13024 => 'チ',
1818
+ 13025 => 'ツ',
1819
+ 13026 => 'テ',
1820
+ 13027 => 'ト',
1821
+ 13028 => 'ナ',
1822
+ 13029 => 'ニ',
1823
+ 13030 => 'ヌ',
1824
+ 13031 => 'ネ',
1825
+ 13032 => 'ノ',
1826
+ 13033 => 'ハ',
1827
+ 13034 => 'ヒ',
1828
+ 13035 => 'フ',
1829
+ 13036 => 'ヘ',
1830
+ 13037 => 'ホ',
1831
+ 13038 => 'マ',
1832
+ 13039 => 'ミ',
1833
+ 13040 => 'ム',
1834
+ 13041 => 'メ',
1835
+ 13042 => 'モ',
1836
+ 13043 => 'ヤ',
1837
+ 13044 => 'ユ',
1838
+ 13045 => 'ヨ',
1839
+ 13046 => 'ラ',
1840
+ 13047 => 'リ',
1841
+ 13048 => 'ル',
1842
+ 13049 => 'レ',
1843
+ 13050 => 'ロ',
1844
+ 13051 => 'ワ',
1845
+ 13052 => 'ヰ',
1846
+ 13053 => 'ヱ',
1847
+ 13054 => 'ヲ',
1848
+ 13055 => '令和',
1849
+ 13056 => 'アパート',
1850
+ 13057 => 'アルファ',
1851
+ 13058 => 'アンペア',
1852
+ 13059 => 'アール',
1853
+ 13060 => 'イニング',
1854
+ 13061 => 'インチ',
1855
+ 13062 => 'ウォン',
1856
+ 13063 => 'エスクード',
1857
+ 13064 => 'エーカー',
1858
+ 13065 => 'オンス',
1859
+ 13066 => 'オーム',
1860
+ 13067 => 'カイリ',
1861
+ 13068 => 'カラット',
1862
+ 13069 => 'カロリー',
1863
+ 13070 => 'ガロン',
1864
+ 13071 => 'ガンマ',
1865
+ 13072 => 'ギガ',
1866
+ 13073 => 'ギニー',
1867
+ 13074 => 'キュリー',
1868
+ 13075 => 'ギルダー',
1869
+ 13076 => 'キロ',
1870
+ 13077 => 'キログラム',
1871
+ 13078 => 'キロメートル',
1872
+ 13079 => 'キロワット',
1873
+ 13080 => 'グラム',
1874
+ 13081 => 'グラムトン',
1875
+ 13082 => 'クルゼイロ',
1876
+ 13083 => 'クローネ',
1877
+ 13084 => 'ケース',
1878
+ 13085 => 'コルナ',
1879
+ 13086 => 'コーポ',
1880
+ 13087 => 'サイクル',
1881
+ 13088 => 'サンチーム',
1882
+ 13089 => 'シリング',
1883
+ 13090 => 'センチ',
1884
+ 13091 => 'セント',
1885
+ 13092 => 'ダース',
1886
+ 13093 => 'デシ',
1887
+ 13094 => 'ドル',
1888
+ 13095 => 'トン',
1889
+ 13096 => 'ナノ',
1890
+ 13097 => 'ノット',
1891
+ 13098 => 'ハイツ',
1892
+ 13099 => 'パーセント',
1893
+ 13100 => 'パーツ',
1894
+ 13101 => 'バーレル',
1895
+ 13102 => 'ピアストル',
1896
+ 13103 => 'ピクル',
1897
+ 13104 => 'ピコ',
1898
+ 13105 => 'ビル',
1899
+ 13106 => 'ファラッド',
1900
+ 13107 => 'フィート',
1901
+ 13108 => 'ブッシェル',
1902
+ 13109 => 'フラン',
1903
+ 13110 => 'ヘクタール',
1904
+ 13111 => 'ペソ',
1905
+ 13112 => 'ペニヒ',
1906
+ 13113 => 'ヘルツ',
1907
+ 13114 => 'ペンス',
1908
+ 13115 => 'ページ',
1909
+ 13116 => 'ベータ',
1910
+ 13117 => 'ポイント',
1911
+ 13118 => 'ボルト',
1912
+ 13119 => 'ホン',
1913
+ 13120 => 'ポンド',
1914
+ 13121 => 'ホール',
1915
+ 13122 => 'ホーン',
1916
+ 13123 => 'マイクロ',
1917
+ 13124 => 'マイル',
1918
+ 13125 => 'マッハ',
1919
+ 13126 => 'マルク',
1920
+ 13127 => 'マンション',
1921
+ 13128 => 'ミクロン',
1922
+ 13129 => 'ミリ',
1923
+ 13130 => 'ミリバール',
1924
+ 13131 => 'メガ',
1925
+ 13132 => 'メガトン',
1926
+ 13133 => 'メートル',
1927
+ 13134 => 'ヤード',
1928
+ 13135 => 'ヤール',
1929
+ 13136 => 'ユアン',
1930
+ 13137 => 'リットル',
1931
+ 13138 => 'リラ',
1932
+ 13139 => 'ルピー',
1933
+ 13140 => 'ルーブル',
1934
+ 13141 => 'レム',
1935
+ 13142 => 'レントゲン',
1936
+ 13143 => 'ワット',
1937
+ 13144 => '0点',
1938
+ 13145 => '1点',
1939
+ 13146 => '2点',
1940
+ 13147 => '3点',
1941
+ 13148 => '4点',
1942
+ 13149 => '5点',
1943
+ 13150 => '6点',
1944
+ 13151 => '7点',
1945
+ 13152 => '8点',
1946
+ 13153 => '9点',
1947
+ 13154 => '10点',
1948
+ 13155 => '11点',
1949
+ 13156 => '12点',
1950
+ 13157 => '13点',
1951
+ 13158 => '14点',
1952
+ 13159 => '15点',
1953
+ 13160 => '16点',
1954
+ 13161 => '17点',
1955
+ 13162 => '18点',
1956
+ 13163 => '19点',
1957
+ 13164 => '20点',
1958
+ 13165 => '21点',
1959
+ 13166 => '22点',
1960
+ 13167 => '23点',
1961
+ 13168 => '24点',
1962
+ 13169 => 'hpa',
1963
+ 13170 => 'da',
1964
+ 13171 => 'au',
1965
+ 13172 => 'bar',
1966
+ 13173 => 'ov',
1967
+ 13174 => 'pc',
1968
+ 13175 => 'dm',
1969
+ 13176 => 'dm2',
1970
+ 13177 => 'dm3',
1971
+ 13178 => 'iu',
1972
+ 13179 => '平成',
1973
+ 13180 => '昭和',
1974
+ 13181 => '大正',
1975
+ 13182 => '明治',
1976
+ 13183 => '株式会社',
1977
+ 13184 => 'pa',
1978
+ 13185 => 'na',
1979
+ 13186 => 'μa',
1980
+ 13187 => 'ma',
1981
+ 13188 => 'ka',
1982
+ 13189 => 'kb',
1983
+ 13190 => 'mb',
1984
+ 13191 => 'gb',
1985
+ 13192 => 'cal',
1986
+ 13193 => 'kcal',
1987
+ 13194 => 'pf',
1988
+ 13195 => 'nf',
1989
+ 13196 => 'μf',
1990
+ 13197 => 'μg',
1991
+ 13198 => 'mg',
1992
+ 13199 => 'kg',
1993
+ 13200 => 'hz',
1994
+ 13201 => 'khz',
1995
+ 13202 => 'mhz',
1996
+ 13203 => 'ghz',
1997
+ 13204 => 'thz',
1998
+ 13205 => 'μl',
1999
+ 13206 => 'ml',
2000
+ 13207 => 'dl',
2001
+ 13208 => 'kl',
2002
+ 13209 => 'fm',
2003
+ 13210 => 'nm',
2004
+ 13211 => 'μm',
2005
+ 13212 => 'mm',
2006
+ 13213 => 'cm',
2007
+ 13214 => 'km',
2008
+ 13215 => 'mm2',
2009
+ 13216 => 'cm2',
2010
+ 13217 => 'm2',
2011
+ 13218 => 'km2',
2012
+ 13219 => 'mm3',
2013
+ 13220 => 'cm3',
2014
+ 13221 => 'm3',
2015
+ 13222 => 'km3',
2016
+ 13223 => 'm∕s',
2017
+ 13224 => 'm∕s2',
2018
+ 13225 => 'pa',
2019
+ 13226 => 'kpa',
2020
+ 13227 => 'mpa',
2021
+ 13228 => 'gpa',
2022
+ 13229 => 'rad',
2023
+ 13230 => 'rad∕s',
2024
+ 13231 => 'rad∕s2',
2025
+ 13232 => 'ps',
2026
+ 13233 => 'ns',
2027
+ 13234 => 'μs',
2028
+ 13235 => 'ms',
2029
+ 13236 => 'pv',
2030
+ 13237 => 'nv',
2031
+ 13238 => 'μv',
2032
+ 13239 => 'mv',
2033
+ 13240 => 'kv',
2034
+ 13241 => 'mv',
2035
+ 13242 => 'pw',
2036
+ 13243 => 'nw',
2037
+ 13244 => 'μw',
2038
+ 13245 => 'mw',
2039
+ 13246 => 'kw',
2040
+ 13247 => 'mw',
2041
+ 13248 => 'kω',
2042
+ 13249 => 'mω',
2043
+ 13251 => 'bq',
2044
+ 13252 => 'cc',
2045
+ 13253 => 'cd',
2046
+ 13254 => 'c∕kg',
2047
+ 13256 => 'db',
2048
+ 13257 => 'gy',
2049
+ 13258 => 'ha',
2050
+ 13259 => 'hp',
2051
+ 13260 => 'in',
2052
+ 13261 => 'kk',
2053
+ 13262 => 'km',
2054
+ 13263 => 'kt',
2055
+ 13264 => 'lm',
2056
+ 13265 => 'ln',
2057
+ 13266 => 'log',
2058
+ 13267 => 'lx',
2059
+ 13268 => 'mb',
2060
+ 13269 => 'mil',
2061
+ 13270 => 'mol',
2062
+ 13271 => 'ph',
2063
+ 13273 => 'ppm',
2064
+ 13274 => 'pr',
2065
+ 13275 => 'sr',
2066
+ 13276 => 'sv',
2067
+ 13277 => 'wb',
2068
+ 13278 => 'v∕m',
2069
+ 13279 => 'a∕m',
2070
+ 13280 => '1日',
2071
+ 13281 => '2日',
2072
+ 13282 => '3日',
2073
+ 13283 => '4日',
2074
+ 13284 => '5日',
2075
+ 13285 => '6日',
2076
+ 13286 => '7日',
2077
+ 13287 => '8日',
2078
+ 13288 => '9日',
2079
+ 13289 => '10日',
2080
+ 13290 => '11日',
2081
+ 13291 => '12日',
2082
+ 13292 => '13日',
2083
+ 13293 => '14日',
2084
+ 13294 => '15日',
2085
+ 13295 => '16日',
2086
+ 13296 => '17日',
2087
+ 13297 => '18日',
2088
+ 13298 => '19日',
2089
+ 13299 => '20日',
2090
+ 13300 => '21日',
2091
+ 13301 => '22日',
2092
+ 13302 => '23日',
2093
+ 13303 => '24日',
2094
+ 13304 => '25日',
2095
+ 13305 => '26日',
2096
+ 13306 => '27日',
2097
+ 13307 => '28日',
2098
+ 13308 => '29日',
2099
+ 13309 => '30日',
2100
+ 13310 => '31日',
2101
+ 13311 => 'gal',
2102
+ 42560 => 'ꙁ',
2103
+ 42562 => 'ꙃ',
2104
+ 42564 => 'ꙅ',
2105
+ 42566 => 'ꙇ',
2106
+ 42568 => 'ꙉ',
2107
+ 42570 => 'ꙋ',
2108
+ 42572 => 'ꙍ',
2109
+ 42574 => 'ꙏ',
2110
+ 42576 => 'ꙑ',
2111
+ 42578 => 'ꙓ',
2112
+ 42580 => 'ꙕ',
2113
+ 42582 => 'ꙗ',
2114
+ 42584 => 'ꙙ',
2115
+ 42586 => 'ꙛ',
2116
+ 42588 => 'ꙝ',
2117
+ 42590 => 'ꙟ',
2118
+ 42592 => 'ꙡ',
2119
+ 42594 => 'ꙣ',
2120
+ 42596 => 'ꙥ',
2121
+ 42598 => 'ꙧ',
2122
+ 42600 => 'ꙩ',
2123
+ 42602 => 'ꙫ',
2124
+ 42604 => 'ꙭ',
2125
+ 42624 => 'ꚁ',
2126
+ 42626 => 'ꚃ',
2127
+ 42628 => 'ꚅ',
2128
+ 42630 => 'ꚇ',
2129
+ 42632 => 'ꚉ',
2130
+ 42634 => 'ꚋ',
2131
+ 42636 => 'ꚍ',
2132
+ 42638 => 'ꚏ',
2133
+ 42640 => 'ꚑ',
2134
+ 42642 => 'ꚓ',
2135
+ 42644 => 'ꚕ',
2136
+ 42646 => 'ꚗ',
2137
+ 42648 => 'ꚙ',
2138
+ 42650 => 'ꚛ',
2139
+ 42652 => 'ъ',
2140
+ 42653 => 'ь',
2141
+ 42786 => 'ꜣ',
2142
+ 42788 => 'ꜥ',
2143
+ 42790 => 'ꜧ',
2144
+ 42792 => 'ꜩ',
2145
+ 42794 => 'ꜫ',
2146
+ 42796 => 'ꜭ',
2147
+ 42798 => 'ꜯ',
2148
+ 42802 => 'ꜳ',
2149
+ 42804 => 'ꜵ',
2150
+ 42806 => 'ꜷ',
2151
+ 42808 => 'ꜹ',
2152
+ 42810 => 'ꜻ',
2153
+ 42812 => 'ꜽ',
2154
+ 42814 => 'ꜿ',
2155
+ 42816 => 'ꝁ',
2156
+ 42818 => 'ꝃ',
2157
+ 42820 => 'ꝅ',
2158
+ 42822 => 'ꝇ',
2159
+ 42824 => 'ꝉ',
2160
+ 42826 => 'ꝋ',
2161
+ 42828 => 'ꝍ',
2162
+ 42830 => 'ꝏ',
2163
+ 42832 => 'ꝑ',
2164
+ 42834 => 'ꝓ',
2165
+ 42836 => 'ꝕ',
2166
+ 42838 => 'ꝗ',
2167
+ 42840 => 'ꝙ',
2168
+ 42842 => 'ꝛ',
2169
+ 42844 => 'ꝝ',
2170
+ 42846 => 'ꝟ',
2171
+ 42848 => 'ꝡ',
2172
+ 42850 => 'ꝣ',
2173
+ 42852 => 'ꝥ',
2174
+ 42854 => 'ꝧ',
2175
+ 42856 => 'ꝩ',
2176
+ 42858 => 'ꝫ',
2177
+ 42860 => 'ꝭ',
2178
+ 42862 => 'ꝯ',
2179
+ 42864 => 'ꝯ',
2180
+ 42873 => 'ꝺ',
2181
+ 42875 => 'ꝼ',
2182
+ 42877 => 'ᵹ',
2183
+ 42878 => 'ꝿ',
2184
+ 42880 => 'ꞁ',
2185
+ 42882 => 'ꞃ',
2186
+ 42884 => 'ꞅ',
2187
+ 42886 => 'ꞇ',
2188
+ 42891 => 'ꞌ',
2189
+ 42893 => 'ɥ',
2190
+ 42896 => 'ꞑ',
2191
+ 42898 => 'ꞓ',
2192
+ 42902 => 'ꞗ',
2193
+ 42904 => 'ꞙ',
2194
+ 42906 => 'ꞛ',
2195
+ 42908 => 'ꞝ',
2196
+ 42910 => 'ꞟ',
2197
+ 42912 => 'ꞡ',
2198
+ 42914 => 'ꞣ',
2199
+ 42916 => 'ꞥ',
2200
+ 42918 => 'ꞧ',
2201
+ 42920 => 'ꞩ',
2202
+ 42922 => 'ɦ',
2203
+ 42923 => 'ɜ',
2204
+ 42924 => 'ɡ',
2205
+ 42925 => 'ɬ',
2206
+ 42926 => 'ɪ',
2207
+ 42928 => 'ʞ',
2208
+ 42929 => 'ʇ',
2209
+ 42930 => 'ʝ',
2210
+ 42931 => 'ꭓ',
2211
+ 42932 => 'ꞵ',
2212
+ 42934 => 'ꞷ',
2213
+ 42936 => 'ꞹ',
2214
+ 42938 => 'ꞻ',
2215
+ 42940 => 'ꞽ',
2216
+ 42942 => 'ꞿ',
2217
+ 42946 => 'ꟃ',
2218
+ 42948 => 'ꞔ',
2219
+ 42949 => 'ʂ',
2220
+ 42950 => 'ᶎ',
2221
+ 42951 => 'ꟈ',
2222
+ 42953 => 'ꟊ',
2223
+ 42997 => 'ꟶ',
2224
+ 43000 => 'ħ',
2225
+ 43001 => 'œ',
2226
+ 43868 => 'ꜧ',
2227
+ 43869 => 'ꬷ',
2228
+ 43870 => 'ɫ',
2229
+ 43871 => 'ꭒ',
2230
+ 43881 => 'ʍ',
2231
+ 43888 => 'Ꭰ',
2232
+ 43889 => 'Ꭱ',
2233
+ 43890 => 'Ꭲ',
2234
+ 43891 => 'Ꭳ',
2235
+ 43892 => 'Ꭴ',
2236
+ 43893 => 'Ꭵ',
2237
+ 43894 => 'Ꭶ',
2238
+ 43895 => 'Ꭷ',
2239
+ 43896 => 'Ꭸ',
2240
+ 43897 => 'Ꭹ',
2241
+ 43898 => 'Ꭺ',
2242
+ 43899 => 'Ꭻ',
2243
+ 43900 => 'Ꭼ',
2244
+ 43901 => 'Ꭽ',
2245
+ 43902 => 'Ꭾ',
2246
+ 43903 => 'Ꭿ',
2247
+ 43904 => 'Ꮀ',
2248
+ 43905 => 'Ꮁ',
2249
+ 43906 => 'Ꮂ',
2250
+ 43907 => 'Ꮃ',
2251
+ 43908 => 'Ꮄ',
2252
+ 43909 => 'Ꮅ',
2253
+ 43910 => 'Ꮆ',
2254
+ 43911 => 'Ꮇ',
2255
+ 43912 => 'Ꮈ',
2256
+ 43913 => 'Ꮉ',
2257
+ 43914 => 'Ꮊ',
2258
+ 43915 => 'Ꮋ',
2259
+ 43916 => 'Ꮌ',
2260
+ 43917 => 'Ꮍ',
2261
+ 43918 => 'Ꮎ',
2262
+ 43919 => 'Ꮏ',
2263
+ 43920 => 'Ꮐ',
2264
+ 43921 => 'Ꮑ',
2265
+ 43922 => 'Ꮒ',
2266
+ 43923 => 'Ꮓ',
2267
+ 43924 => 'Ꮔ',
2268
+ 43925 => 'Ꮕ',
2269
+ 43926 => 'Ꮖ',
2270
+ 43927 => 'Ꮗ',
2271
+ 43928 => 'Ꮘ',
2272
+ 43929 => 'Ꮙ',
2273
+ 43930 => 'Ꮚ',
2274
+ 43931 => 'Ꮛ',
2275
+ 43932 => 'Ꮜ',
2276
+ 43933 => 'Ꮝ',
2277
+ 43934 => 'Ꮞ',
2278
+ 43935 => 'Ꮟ',
2279
+ 43936 => 'Ꮠ',
2280
+ 43937 => 'Ꮡ',
2281
+ 43938 => 'Ꮢ',
2282
+ 43939 => 'Ꮣ',
2283
+ 43940 => 'Ꮤ',
2284
+ 43941 => 'Ꮥ',
2285
+ 43942 => 'Ꮦ',
2286
+ 43943 => 'Ꮧ',
2287
+ 43944 => 'Ꮨ',
2288
+ 43945 => 'Ꮩ',
2289
+ 43946 => 'Ꮪ',
2290
+ 43947 => 'Ꮫ',
2291
+ 43948 => 'Ꮬ',
2292
+ 43949 => 'Ꮭ',
2293
+ 43950 => 'Ꮮ',
2294
+ 43951 => 'Ꮯ',
2295
+ 43952 => 'Ꮰ',
2296
+ 43953 => 'Ꮱ',
2297
+ 43954 => 'Ꮲ',
2298
+ 43955 => 'Ꮳ',
2299
+ 43956 => 'Ꮴ',
2300
+ 43957 => 'Ꮵ',
2301
+ 43958 => 'Ꮶ',
2302
+ 43959 => 'Ꮷ',
2303
+ 43960 => 'Ꮸ',
2304
+ 43961 => 'Ꮹ',
2305
+ 43962 => 'Ꮺ',
2306
+ 43963 => 'Ꮻ',
2307
+ 43964 => 'Ꮼ',
2308
+ 43965 => 'Ꮽ',
2309
+ 43966 => 'Ꮾ',
2310
+ 43967 => 'Ꮿ',
2311
+ 63744 => '豈',
2312
+ 63745 => '更',
2313
+ 63746 => '車',
2314
+ 63747 => '賈',
2315
+ 63748 => '滑',
2316
+ 63749 => '串',
2317
+ 63750 => '句',
2318
+ 63751 => '龜',
2319
+ 63752 => '龜',
2320
+ 63753 => '契',
2321
+ 63754 => '金',
2322
+ 63755 => '喇',
2323
+ 63756 => '奈',
2324
+ 63757 => '懶',
2325
+ 63758 => '癩',
2326
+ 63759 => '羅',
2327
+ 63760 => '蘿',
2328
+ 63761 => '螺',
2329
+ 63762 => '裸',
2330
+ 63763 => '邏',
2331
+ 63764 => '樂',
2332
+ 63765 => '洛',
2333
+ 63766 => '烙',
2334
+ 63767 => '珞',
2335
+ 63768 => '落',
2336
+ 63769 => '酪',
2337
+ 63770 => '駱',
2338
+ 63771 => '亂',
2339
+ 63772 => '卵',
2340
+ 63773 => '欄',
2341
+ 63774 => '爛',
2342
+ 63775 => '蘭',
2343
+ 63776 => '鸞',
2344
+ 63777 => '嵐',
2345
+ 63778 => '濫',
2346
+ 63779 => '藍',
2347
+ 63780 => '襤',
2348
+ 63781 => '拉',
2349
+ 63782 => '臘',
2350
+ 63783 => '蠟',
2351
+ 63784 => '廊',
2352
+ 63785 => '朗',
2353
+ 63786 => '浪',
2354
+ 63787 => '狼',
2355
+ 63788 => '郎',
2356
+ 63789 => '來',
2357
+ 63790 => '冷',
2358
+ 63791 => '勞',
2359
+ 63792 => '擄',
2360
+ 63793 => '櫓',
2361
+ 63794 => '爐',
2362
+ 63795 => '盧',
2363
+ 63796 => '老',
2364
+ 63797 => '蘆',
2365
+ 63798 => '虜',
2366
+ 63799 => '路',
2367
+ 63800 => '露',
2368
+ 63801 => '魯',
2369
+ 63802 => '鷺',
2370
+ 63803 => '碌',
2371
+ 63804 => '祿',
2372
+ 63805 => '綠',
2373
+ 63806 => '菉',
2374
+ 63807 => '錄',
2375
+ 63808 => '鹿',
2376
+ 63809 => '論',
2377
+ 63810 => '壟',
2378
+ 63811 => '弄',
2379
+ 63812 => '籠',
2380
+ 63813 => '聾',
2381
+ 63814 => '牢',
2382
+ 63815 => '磊',
2383
+ 63816 => '賂',
2384
+ 63817 => '雷',
2385
+ 63818 => '壘',
2386
+ 63819 => '屢',
2387
+ 63820 => '樓',
2388
+ 63821 => '淚',
2389
+ 63822 => '漏',
2390
+ 63823 => '累',
2391
+ 63824 => '縷',
2392
+ 63825 => '陋',
2393
+ 63826 => '勒',
2394
+ 63827 => '肋',
2395
+ 63828 => '凜',
2396
+ 63829 => '凌',
2397
+ 63830 => '稜',
2398
+ 63831 => '綾',
2399
+ 63832 => '菱',
2400
+ 63833 => '陵',
2401
+ 63834 => '讀',
2402
+ 63835 => '拏',
2403
+ 63836 => '樂',
2404
+ 63837 => '諾',
2405
+ 63838 => '丹',
2406
+ 63839 => '寧',
2407
+ 63840 => '怒',
2408
+ 63841 => '率',
2409
+ 63842 => '異',
2410
+ 63843 => '北',
2411
+ 63844 => '磻',
2412
+ 63845 => '便',
2413
+ 63846 => '復',
2414
+ 63847 => '不',
2415
+ 63848 => '泌',
2416
+ 63849 => '數',
2417
+ 63850 => '索',
2418
+ 63851 => '參',
2419
+ 63852 => '塞',
2420
+ 63853 => '省',
2421
+ 63854 => '葉',
2422
+ 63855 => '說',
2423
+ 63856 => '殺',
2424
+ 63857 => '辰',
2425
+ 63858 => '沈',
2426
+ 63859 => '拾',
2427
+ 63860 => '若',
2428
+ 63861 => '掠',
2429
+ 63862 => '略',
2430
+ 63863 => '亮',
2431
+ 63864 => '兩',
2432
+ 63865 => '凉',
2433
+ 63866 => '梁',
2434
+ 63867 => '糧',
2435
+ 63868 => '良',
2436
+ 63869 => '諒',
2437
+ 63870 => '量',
2438
+ 63871 => '勵',
2439
+ 63872 => '呂',
2440
+ 63873 => '女',
2441
+ 63874 => '廬',
2442
+ 63875 => '旅',
2443
+ 63876 => '濾',
2444
+ 63877 => '礪',
2445
+ 63878 => '閭',
2446
+ 63879 => '驪',
2447
+ 63880 => '麗',
2448
+ 63881 => '黎',
2449
+ 63882 => '力',
2450
+ 63883 => '曆',
2451
+ 63884 => '歷',
2452
+ 63885 => '轢',
2453
+ 63886 => '年',
2454
+ 63887 => '憐',
2455
+ 63888 => '戀',
2456
+ 63889 => '撚',
2457
+ 63890 => '漣',
2458
+ 63891 => '煉',
2459
+ 63892 => '璉',
2460
+ 63893 => '秊',
2461
+ 63894 => '練',
2462
+ 63895 => '聯',
2463
+ 63896 => '輦',
2464
+ 63897 => '蓮',
2465
+ 63898 => '連',
2466
+ 63899 => '鍊',
2467
+ 63900 => '列',
2468
+ 63901 => '劣',
2469
+ 63902 => '咽',
2470
+ 63903 => '烈',
2471
+ 63904 => '裂',
2472
+ 63905 => '說',
2473
+ 63906 => '廉',
2474
+ 63907 => '念',
2475
+ 63908 => '捻',
2476
+ 63909 => '殮',
2477
+ 63910 => '簾',
2478
+ 63911 => '獵',
2479
+ 63912 => '令',
2480
+ 63913 => '囹',
2481
+ 63914 => '寧',
2482
+ 63915 => '嶺',
2483
+ 63916 => '怜',
2484
+ 63917 => '玲',
2485
+ 63918 => '瑩',
2486
+ 63919 => '羚',
2487
+ 63920 => '聆',
2488
+ 63921 => '鈴',
2489
+ 63922 => '零',
2490
+ 63923 => '靈',
2491
+ 63924 => '領',
2492
+ 63925 => '例',
2493
+ 63926 => '禮',
2494
+ 63927 => '醴',
2495
+ 63928 => '隸',
2496
+ 63929 => '惡',
2497
+ 63930 => '了',
2498
+ 63931 => '僚',
2499
+ 63932 => '寮',
2500
+ 63933 => '尿',
2501
+ 63934 => '料',
2502
+ 63935 => '樂',
2503
+ 63936 => '燎',
2504
+ 63937 => '療',
2505
+ 63938 => '蓼',
2506
+ 63939 => '遼',
2507
+ 63940 => '龍',
2508
+ 63941 => '暈',
2509
+ 63942 => '阮',
2510
+ 63943 => '劉',
2511
+ 63944 => '杻',
2512
+ 63945 => '柳',
2513
+ 63946 => '流',
2514
+ 63947 => '溜',
2515
+ 63948 => '琉',
2516
+ 63949 => '留',
2517
+ 63950 => '硫',
2518
+ 63951 => '紐',
2519
+ 63952 => '類',
2520
+ 63953 => '六',
2521
+ 63954 => '戮',
2522
+ 63955 => '陸',
2523
+ 63956 => '倫',
2524
+ 63957 => '崙',
2525
+ 63958 => '淪',
2526
+ 63959 => '輪',
2527
+ 63960 => '律',
2528
+ 63961 => '慄',
2529
+ 63962 => '栗',
2530
+ 63963 => '率',
2531
+ 63964 => '隆',
2532
+ 63965 => '利',
2533
+ 63966 => '吏',
2534
+ 63967 => '履',
2535
+ 63968 => '易',
2536
+ 63969 => '李',
2537
+ 63970 => '梨',
2538
+ 63971 => '泥',
2539
+ 63972 => '理',
2540
+ 63973 => '痢',
2541
+ 63974 => '罹',
2542
+ 63975 => '裏',
2543
+ 63976 => '裡',
2544
+ 63977 => '里',
2545
+ 63978 => '離',
2546
+ 63979 => '匿',
2547
+ 63980 => '溺',
2548
+ 63981 => '吝',
2549
+ 63982 => '燐',
2550
+ 63983 => '璘',
2551
+ 63984 => '藺',
2552
+ 63985 => '隣',
2553
+ 63986 => '鱗',
2554
+ 63987 => '麟',
2555
+ 63988 => '林',
2556
+ 63989 => '淋',
2557
+ 63990 => '臨',
2558
+ 63991 => '立',
2559
+ 63992 => '笠',
2560
+ 63993 => '粒',
2561
+ 63994 => '狀',
2562
+ 63995 => '炙',
2563
+ 63996 => '識',
2564
+ 63997 => '什',
2565
+ 63998 => '茶',
2566
+ 63999 => '刺',
2567
+ 64000 => '切',
2568
+ 64001 => '度',
2569
+ 64002 => '拓',
2570
+ 64003 => '糖',
2571
+ 64004 => '宅',
2572
+ 64005 => '洞',
2573
+ 64006 => '暴',
2574
+ 64007 => '輻',
2575
+ 64008 => '行',
2576
+ 64009 => '降',
2577
+ 64010 => '見',
2578
+ 64011 => '廓',
2579
+ 64012 => '兀',
2580
+ 64013 => '嗀',
2581
+ 64016 => '塚',
2582
+ 64018 => '晴',
2583
+ 64021 => '凞',
2584
+ 64022 => '猪',
2585
+ 64023 => '益',
2586
+ 64024 => '礼',
2587
+ 64025 => '神',
2588
+ 64026 => '祥',
2589
+ 64027 => '福',
2590
+ 64028 => '靖',
2591
+ 64029 => '精',
2592
+ 64030 => '羽',
2593
+ 64032 => '蘒',
2594
+ 64034 => '諸',
2595
+ 64037 => '逸',
2596
+ 64038 => '都',
2597
+ 64042 => '飯',
2598
+ 64043 => '飼',
2599
+ 64044 => '館',
2600
+ 64045 => '鶴',
2601
+ 64046 => '郞',
2602
+ 64047 => '隷',
2603
+ 64048 => '侮',
2604
+ 64049 => '僧',
2605
+ 64050 => '免',
2606
+ 64051 => '勉',
2607
+ 64052 => '勤',
2608
+ 64053 => '卑',
2609
+ 64054 => '喝',
2610
+ 64055 => '嘆',
2611
+ 64056 => '器',
2612
+ 64057 => '塀',
2613
+ 64058 => '墨',
2614
+ 64059 => '層',
2615
+ 64060 => '屮',
2616
+ 64061 => '悔',
2617
+ 64062 => '慨',
2618
+ 64063 => '憎',
2619
+ 64064 => '懲',
2620
+ 64065 => '敏',
2621
+ 64066 => '既',
2622
+ 64067 => '暑',
2623
+ 64068 => '梅',
2624
+ 64069 => '海',
2625
+ 64070 => '渚',
2626
+ 64071 => '漢',
2627
+ 64072 => '煮',
2628
+ 64073 => '爫',
2629
+ 64074 => '琢',
2630
+ 64075 => '碑',
2631
+ 64076 => '社',
2632
+ 64077 => '祉',
2633
+ 64078 => '祈',
2634
+ 64079 => '祐',
2635
+ 64080 => '祖',
2636
+ 64081 => '祝',
2637
+ 64082 => '禍',
2638
+ 64083 => '禎',
2639
+ 64084 => '穀',
2640
+ 64085 => '突',
2641
+ 64086 => '節',
2642
+ 64087 => '練',
2643
+ 64088 => '縉',
2644
+ 64089 => '繁',
2645
+ 64090 => '署',
2646
+ 64091 => '者',
2647
+ 64092 => '臭',
2648
+ 64093 => '艹',
2649
+ 64094 => '艹',
2650
+ 64095 => '著',
2651
+ 64096 => '褐',
2652
+ 64097 => '視',
2653
+ 64098 => '謁',
2654
+ 64099 => '謹',
2655
+ 64100 => '賓',
2656
+ 64101 => '贈',
2657
+ 64102 => '辶',
2658
+ 64103 => '逸',
2659
+ 64104 => '難',
2660
+ 64105 => '響',
2661
+ 64106 => '頻',
2662
+ 64107 => '恵',
2663
+ 64108 => '𤋮',
2664
+ 64109 => '舘',
2665
+ 64112 => '並',
2666
+ 64113 => '况',
2667
+ 64114 => '全',
2668
+ 64115 => '侀',
2669
+ 64116 => '充',
2670
+ 64117 => '冀',
2671
+ 64118 => '勇',
2672
+ 64119 => '勺',
2673
+ 64120 => '喝',
2674
+ 64121 => '啕',
2675
+ 64122 => '喙',
2676
+ 64123 => '嗢',
2677
+ 64124 => '塚',
2678
+ 64125 => '墳',
2679
+ 64126 => '奄',
2680
+ 64127 => '奔',
2681
+ 64128 => '婢',
2682
+ 64129 => '嬨',
2683
+ 64130 => '廒',
2684
+ 64131 => '廙',
2685
+ 64132 => '彩',
2686
+ 64133 => '徭',
2687
+ 64134 => '惘',
2688
+ 64135 => '慎',
2689
+ 64136 => '愈',
2690
+ 64137 => '憎',
2691
+ 64138 => '慠',
2692
+ 64139 => '懲',
2693
+ 64140 => '戴',
2694
+ 64141 => '揄',
2695
+ 64142 => '搜',
2696
+ 64143 => '摒',
2697
+ 64144 => '敖',
2698
+ 64145 => '晴',
2699
+ 64146 => '朗',
2700
+ 64147 => '望',
2701
+ 64148 => '杖',
2702
+ 64149 => '歹',
2703
+ 64150 => '殺',
2704
+ 64151 => '流',
2705
+ 64152 => '滛',
2706
+ 64153 => '滋',
2707
+ 64154 => '漢',
2708
+ 64155 => '瀞',
2709
+ 64156 => '煮',
2710
+ 64157 => '瞧',
2711
+ 64158 => '爵',
2712
+ 64159 => '犯',
2713
+ 64160 => '猪',
2714
+ 64161 => '瑱',
2715
+ 64162 => '甆',
2716
+ 64163 => '画',
2717
+ 64164 => '瘝',
2718
+ 64165 => '瘟',
2719
+ 64166 => '益',
2720
+ 64167 => '盛',
2721
+ 64168 => '直',
2722
+ 64169 => '睊',
2723
+ 64170 => '着',
2724
+ 64171 => '磌',
2725
+ 64172 => '窱',
2726
+ 64173 => '節',
2727
+ 64174 => '类',
2728
+ 64175 => '絛',
2729
+ 64176 => '練',
2730
+ 64177 => '缾',
2731
+ 64178 => '者',
2732
+ 64179 => '荒',
2733
+ 64180 => '華',
2734
+ 64181 => '蝹',
2735
+ 64182 => '襁',
2736
+ 64183 => '覆',
2737
+ 64184 => '視',
2738
+ 64185 => '調',
2739
+ 64186 => '諸',
2740
+ 64187 => '請',
2741
+ 64188 => '謁',
2742
+ 64189 => '諾',
2743
+ 64190 => '諭',
2744
+ 64191 => '謹',
2745
+ 64192 => '變',
2746
+ 64193 => '贈',
2747
+ 64194 => '輸',
2748
+ 64195 => '遲',
2749
+ 64196 => '醙',
2750
+ 64197 => '鉶',
2751
+ 64198 => '陼',
2752
+ 64199 => '難',
2753
+ 64200 => '靖',
2754
+ 64201 => '韛',
2755
+ 64202 => '響',
2756
+ 64203 => '頋',
2757
+ 64204 => '頻',
2758
+ 64205 => '鬒',
2759
+ 64206 => '龜',
2760
+ 64207 => '𢡊',
2761
+ 64208 => '𢡄',
2762
+ 64209 => '𣏕',
2763
+ 64210 => '㮝',
2764
+ 64211 => '䀘',
2765
+ 64212 => '䀹',
2766
+ 64213 => '𥉉',
2767
+ 64214 => '𥳐',
2768
+ 64215 => '𧻓',
2769
+ 64216 => '齃',
2770
+ 64217 => '龎',
2771
+ 64256 => 'ff',
2772
+ 64257 => 'fi',
2773
+ 64258 => 'fl',
2774
+ 64259 => 'ffi',
2775
+ 64260 => 'ffl',
2776
+ 64261 => 'st',
2777
+ 64262 => 'st',
2778
+ 64275 => 'մն',
2779
+ 64276 => 'մե',
2780
+ 64277 => 'մի',
2781
+ 64278 => 'վն',
2782
+ 64279 => 'մխ',
2783
+ 64285 => 'יִ',
2784
+ 64287 => 'ײַ',
2785
+ 64288 => 'ע',
2786
+ 64289 => 'א',
2787
+ 64290 => 'ד',
2788
+ 64291 => 'ה',
2789
+ 64292 => 'כ',
2790
+ 64293 => 'ל',
2791
+ 64294 => 'ם',
2792
+ 64295 => 'ר',
2793
+ 64296 => 'ת',
2794
+ 64298 => 'שׁ',
2795
+ 64299 => 'שׂ',
2796
+ 64300 => 'שּׁ',
2797
+ 64301 => 'שּׂ',
2798
+ 64302 => 'אַ',
2799
+ 64303 => 'אָ',
2800
+ 64304 => 'אּ',
2801
+ 64305 => 'בּ',
2802
+ 64306 => 'גּ',
2803
+ 64307 => 'דּ',
2804
+ 64308 => 'הּ',
2805
+ 64309 => 'וּ',
2806
+ 64310 => 'זּ',
2807
+ 64312 => 'טּ',
2808
+ 64313 => 'יּ',
2809
+ 64314 => 'ךּ',
2810
+ 64315 => 'כּ',
2811
+ 64316 => 'לּ',
2812
+ 64318 => 'מּ',
2813
+ 64320 => 'נּ',
2814
+ 64321 => 'סּ',
2815
+ 64323 => 'ףּ',
2816
+ 64324 => 'פּ',
2817
+ 64326 => 'צּ',
2818
+ 64327 => 'קּ',
2819
+ 64328 => 'רּ',
2820
+ 64329 => 'שּ',
2821
+ 64330 => 'תּ',
2822
+ 64331 => 'וֹ',
2823
+ 64332 => 'בֿ',
2824
+ 64333 => 'כֿ',
2825
+ 64334 => 'פֿ',
2826
+ 64335 => 'אל',
2827
+ 64336 => 'ٱ',
2828
+ 64337 => 'ٱ',
2829
+ 64338 => 'ٻ',
2830
+ 64339 => 'ٻ',
2831
+ 64340 => 'ٻ',
2832
+ 64341 => 'ٻ',
2833
+ 64342 => 'پ',
2834
+ 64343 => 'پ',
2835
+ 64344 => 'پ',
2836
+ 64345 => 'پ',
2837
+ 64346 => 'ڀ',
2838
+ 64347 => 'ڀ',
2839
+ 64348 => 'ڀ',
2840
+ 64349 => 'ڀ',
2841
+ 64350 => 'ٺ',
2842
+ 64351 => 'ٺ',
2843
+ 64352 => 'ٺ',
2844
+ 64353 => 'ٺ',
2845
+ 64354 => 'ٿ',
2846
+ 64355 => 'ٿ',
2847
+ 64356 => 'ٿ',
2848
+ 64357 => 'ٿ',
2849
+ 64358 => 'ٹ',
2850
+ 64359 => 'ٹ',
2851
+ 64360 => 'ٹ',
2852
+ 64361 => 'ٹ',
2853
+ 64362 => 'ڤ',
2854
+ 64363 => 'ڤ',
2855
+ 64364 => 'ڤ',
2856
+ 64365 => 'ڤ',
2857
+ 64366 => 'ڦ',
2858
+ 64367 => 'ڦ',
2859
+ 64368 => 'ڦ',
2860
+ 64369 => 'ڦ',
2861
+ 64370 => 'ڄ',
2862
+ 64371 => 'ڄ',
2863
+ 64372 => 'ڄ',
2864
+ 64373 => 'ڄ',
2865
+ 64374 => 'ڃ',
2866
+ 64375 => 'ڃ',
2867
+ 64376 => 'ڃ',
2868
+ 64377 => 'ڃ',
2869
+ 64378 => 'چ',
2870
+ 64379 => 'چ',
2871
+ 64380 => 'چ',
2872
+ 64381 => 'چ',
2873
+ 64382 => 'ڇ',
2874
+ 64383 => 'ڇ',
2875
+ 64384 => 'ڇ',
2876
+ 64385 => 'ڇ',
2877
+ 64386 => 'ڍ',
2878
+ 64387 => 'ڍ',
2879
+ 64388 => 'ڌ',
2880
+ 64389 => 'ڌ',
2881
+ 64390 => 'ڎ',
2882
+ 64391 => 'ڎ',
2883
+ 64392 => 'ڈ',
2884
+ 64393 => 'ڈ',
2885
+ 64394 => 'ژ',
2886
+ 64395 => 'ژ',
2887
+ 64396 => 'ڑ',
2888
+ 64397 => 'ڑ',
2889
+ 64398 => 'ک',
2890
+ 64399 => 'ک',
2891
+ 64400 => 'ک',
2892
+ 64401 => 'ک',
2893
+ 64402 => 'گ',
2894
+ 64403 => 'گ',
2895
+ 64404 => 'گ',
2896
+ 64405 => 'گ',
2897
+ 64406 => 'ڳ',
2898
+ 64407 => 'ڳ',
2899
+ 64408 => 'ڳ',
2900
+ 64409 => 'ڳ',
2901
+ 64410 => 'ڱ',
2902
+ 64411 => 'ڱ',
2903
+ 64412 => 'ڱ',
2904
+ 64413 => 'ڱ',
2905
+ 64414 => 'ں',
2906
+ 64415 => 'ں',
2907
+ 64416 => 'ڻ',
2908
+ 64417 => 'ڻ',
2909
+ 64418 => 'ڻ',
2910
+ 64419 => 'ڻ',
2911
+ 64420 => 'ۀ',
2912
+ 64421 => 'ۀ',
2913
+ 64422 => 'ہ',
2914
+ 64423 => 'ہ',
2915
+ 64424 => 'ہ',
2916
+ 64425 => 'ہ',
2917
+ 64426 => 'ھ',
2918
+ 64427 => 'ھ',
2919
+ 64428 => 'ھ',
2920
+ 64429 => 'ھ',
2921
+ 64430 => 'ے',
2922
+ 64431 => 'ے',
2923
+ 64432 => 'ۓ',
2924
+ 64433 => 'ۓ',
2925
+ 64467 => 'ڭ',
2926
+ 64468 => 'ڭ',
2927
+ 64469 => 'ڭ',
2928
+ 64470 => 'ڭ',
2929
+ 64471 => 'ۇ',
2930
+ 64472 => 'ۇ',
2931
+ 64473 => 'ۆ',
2932
+ 64474 => 'ۆ',
2933
+ 64475 => 'ۈ',
2934
+ 64476 => 'ۈ',
2935
+ 64477 => 'ۇٴ',
2936
+ 64478 => 'ۋ',
2937
+ 64479 => 'ۋ',
2938
+ 64480 => 'ۅ',
2939
+ 64481 => 'ۅ',
2940
+ 64482 => 'ۉ',
2941
+ 64483 => 'ۉ',
2942
+ 64484 => 'ې',
2943
+ 64485 => 'ې',
2944
+ 64486 => 'ې',
2945
+ 64487 => 'ې',
2946
+ 64488 => 'ى',
2947
+ 64489 => 'ى',
2948
+ 64490 => 'ئا',
2949
+ 64491 => 'ئا',
2950
+ 64492 => 'ئە',
2951
+ 64493 => 'ئە',
2952
+ 64494 => 'ئو',
2953
+ 64495 => 'ئو',
2954
+ 64496 => 'ئۇ',
2955
+ 64497 => 'ئۇ',
2956
+ 64498 => 'ئۆ',
2957
+ 64499 => 'ئۆ',
2958
+ 64500 => 'ئۈ',
2959
+ 64501 => 'ئۈ',
2960
+ 64502 => 'ئې',
2961
+ 64503 => 'ئې',
2962
+ 64504 => 'ئې',
2963
+ 64505 => 'ئى',
2964
+ 64506 => 'ئى',
2965
+ 64507 => 'ئى',
2966
+ 64508 => 'ی',
2967
+ 64509 => 'ی',
2968
+ 64510 => 'ی',
2969
+ 64511 => 'ی',
2970
+ 64512 => 'ئج',
2971
+ 64513 => 'ئح',
2972
+ 64514 => 'ئم',
2973
+ 64515 => 'ئى',
2974
+ 64516 => 'ئي',
2975
+ 64517 => 'بج',
2976
+ 64518 => 'بح',
2977
+ 64519 => 'بخ',
2978
+ 64520 => 'بم',
2979
+ 64521 => 'بى',
2980
+ 64522 => 'بي',
2981
+ 64523 => 'تج',
2982
+ 64524 => 'تح',
2983
+ 64525 => 'تخ',
2984
+ 64526 => 'تم',
2985
+ 64527 => 'تى',
2986
+ 64528 => 'تي',
2987
+ 64529 => 'ثج',
2988
+ 64530 => 'ثم',
2989
+ 64531 => 'ثى',
2990
+ 64532 => 'ثي',
2991
+ 64533 => 'جح',
2992
+ 64534 => 'جم',
2993
+ 64535 => 'حج',
2994
+ 64536 => 'حم',
2995
+ 64537 => 'خج',
2996
+ 64538 => 'خح',
2997
+ 64539 => 'خم',
2998
+ 64540 => 'سج',
2999
+ 64541 => 'سح',
3000
+ 64542 => 'سخ',
3001
+ 64543 => 'سم',
3002
+ 64544 => 'صح',
3003
+ 64545 => 'صم',
3004
+ 64546 => 'ضج',
3005
+ 64547 => 'ضح',
3006
+ 64548 => 'ضخ',
3007
+ 64549 => 'ضم',
3008
+ 64550 => 'طح',
3009
+ 64551 => 'طم',
3010
+ 64552 => 'ظم',
3011
+ 64553 => 'عج',
3012
+ 64554 => 'عم',
3013
+ 64555 => 'غج',
3014
+ 64556 => 'غم',
3015
+ 64557 => 'فج',
3016
+ 64558 => 'فح',
3017
+ 64559 => 'فخ',
3018
+ 64560 => 'فم',
3019
+ 64561 => 'فى',
3020
+ 64562 => 'في',
3021
+ 64563 => 'قح',
3022
+ 64564 => 'قم',
3023
+ 64565 => 'قى',
3024
+ 64566 => 'قي',
3025
+ 64567 => 'كا',
3026
+ 64568 => 'كج',
3027
+ 64569 => 'كح',
3028
+ 64570 => 'كخ',
3029
+ 64571 => 'كل',
3030
+ 64572 => 'كم',
3031
+ 64573 => 'كى',
3032
+ 64574 => 'كي',
3033
+ 64575 => 'لج',
3034
+ 64576 => 'لح',
3035
+ 64577 => 'لخ',
3036
+ 64578 => 'لم',
3037
+ 64579 => 'لى',
3038
+ 64580 => 'لي',
3039
+ 64581 => 'مج',
3040
+ 64582 => 'مح',
3041
+ 64583 => 'مخ',
3042
+ 64584 => 'مم',
3043
+ 64585 => 'مى',
3044
+ 64586 => 'مي',
3045
+ 64587 => 'نج',
3046
+ 64588 => 'نح',
3047
+ 64589 => 'نخ',
3048
+ 64590 => 'نم',
3049
+ 64591 => 'نى',
3050
+ 64592 => 'ني',
3051
+ 64593 => 'هج',
3052
+ 64594 => 'هم',
3053
+ 64595 => 'هى',
3054
+ 64596 => 'هي',
3055
+ 64597 => 'يج',
3056
+ 64598 => 'يح',
3057
+ 64599 => 'يخ',
3058
+ 64600 => 'يم',
3059
+ 64601 => 'يى',
3060
+ 64602 => 'يي',
3061
+ 64603 => 'ذٰ',
3062
+ 64604 => 'رٰ',
3063
+ 64605 => 'ىٰ',
3064
+ 64612 => 'ئر',
3065
+ 64613 => 'ئز',
3066
+ 64614 => 'ئم',
3067
+ 64615 => 'ئن',
3068
+ 64616 => 'ئى',
3069
+ 64617 => 'ئي',
3070
+ 64618 => 'بر',
3071
+ 64619 => 'بز',
3072
+ 64620 => 'بم',
3073
+ 64621 => 'بن',
3074
+ 64622 => 'بى',
3075
+ 64623 => 'بي',
3076
+ 64624 => 'تر',
3077
+ 64625 => 'تز',
3078
+ 64626 => 'تم',
3079
+ 64627 => 'تن',
3080
+ 64628 => 'تى',
3081
+ 64629 => 'تي',
3082
+ 64630 => 'ثر',
3083
+ 64631 => 'ثز',
3084
+ 64632 => 'ثم',
3085
+ 64633 => 'ثن',
3086
+ 64634 => 'ثى',
3087
+ 64635 => 'ثي',
3088
+ 64636 => 'فى',
3089
+ 64637 => 'في',
3090
+ 64638 => 'قى',
3091
+ 64639 => 'قي',
3092
+ 64640 => 'كا',
3093
+ 64641 => 'كل',
3094
+ 64642 => 'كم',
3095
+ 64643 => 'كى',
3096
+ 64644 => 'كي',
3097
+ 64645 => 'لم',
3098
+ 64646 => 'لى',
3099
+ 64647 => 'لي',
3100
+ 64648 => 'ما',
3101
+ 64649 => 'مم',
3102
+ 64650 => 'نر',
3103
+ 64651 => 'نز',
3104
+ 64652 => 'نم',
3105
+ 64653 => 'نن',
3106
+ 64654 => 'نى',
3107
+ 64655 => 'ني',
3108
+ 64656 => 'ىٰ',
3109
+ 64657 => 'ير',
3110
+ 64658 => 'يز',
3111
+ 64659 => 'يم',
3112
+ 64660 => 'ين',
3113
+ 64661 => 'يى',
3114
+ 64662 => 'يي',
3115
+ 64663 => 'ئج',
3116
+ 64664 => 'ئح',
3117
+ 64665 => 'ئخ',
3118
+ 64666 => 'ئم',
3119
+ 64667 => 'ئه',
3120
+ 64668 => 'بج',
3121
+ 64669 => 'بح',
3122
+ 64670 => 'بخ',
3123
+ 64671 => 'بم',
3124
+ 64672 => 'به',
3125
+ 64673 => 'تج',
3126
+ 64674 => 'تح',
3127
+ 64675 => 'تخ',
3128
+ 64676 => 'تم',
3129
+ 64677 => 'ته',
3130
+ 64678 => 'ثم',
3131
+ 64679 => 'جح',
3132
+ 64680 => 'جم',
3133
+ 64681 => 'حج',
3134
+ 64682 => 'حم',
3135
+ 64683 => 'خج',
3136
+ 64684 => 'خم',
3137
+ 64685 => 'سج',
3138
+ 64686 => 'سح',
3139
+ 64687 => 'سخ',
3140
+ 64688 => 'سم',
3141
+ 64689 => 'صح',
3142
+ 64690 => 'صخ',
3143
+ 64691 => 'صم',
3144
+ 64692 => 'ضج',
3145
+ 64693 => 'ضح',
3146
+ 64694 => 'ضخ',
3147
+ 64695 => 'ضم',
3148
+ 64696 => 'طح',
3149
+ 64697 => 'ظم',
3150
+ 64698 => 'عج',
3151
+ 64699 => 'عم',
3152
+ 64700 => 'غج',
3153
+ 64701 => 'غم',
3154
+ 64702 => 'فج',
3155
+ 64703 => 'فح',
3156
+ 64704 => 'فخ',
3157
+ 64705 => 'فم',
3158
+ 64706 => 'قح',
3159
+ 64707 => 'قم',
3160
+ 64708 => 'كج',
3161
+ 64709 => 'كح',
3162
+ 64710 => 'كخ',
3163
+ 64711 => 'كل',
3164
+ 64712 => 'كم',
3165
+ 64713 => 'لج',
3166
+ 64714 => 'لح',
3167
+ 64715 => 'لخ',
3168
+ 64716 => 'لم',
3169
+ 64717 => 'له',
3170
+ 64718 => 'مج',
3171
+ 64719 => 'مح',
3172
+ 64720 => 'مخ',
3173
+ 64721 => 'مم',
3174
+ 64722 => 'نج',
3175
+ 64723 => 'نح',
3176
+ 64724 => 'نخ',
3177
+ 64725 => 'نم',
3178
+ 64726 => 'نه',
3179
+ 64727 => 'هج',
3180
+ 64728 => 'هم',
3181
+ 64729 => 'هٰ',
3182
+ 64730 => 'يج',
3183
+ 64731 => 'يح',
3184
+ 64732 => 'يخ',
3185
+ 64733 => 'يم',
3186
+ 64734 => 'يه',
3187
+ 64735 => 'ئم',
3188
+ 64736 => 'ئه',
3189
+ 64737 => 'بم',
3190
+ 64738 => 'به',
3191
+ 64739 => 'تم',
3192
+ 64740 => 'ته',
3193
+ 64741 => 'ثم',
3194
+ 64742 => 'ثه',
3195
+ 64743 => 'سم',
3196
+ 64744 => 'سه',
3197
+ 64745 => 'شم',
3198
+ 64746 => 'شه',
3199
+ 64747 => 'كل',
3200
+ 64748 => 'كم',
3201
+ 64749 => 'لم',
3202
+ 64750 => 'نم',
3203
+ 64751 => 'نه',
3204
+ 64752 => 'يم',
3205
+ 64753 => 'يه',
3206
+ 64754 => 'ـَّ',
3207
+ 64755 => 'ـُّ',
3208
+ 64756 => 'ـِّ',
3209
+ 64757 => 'طى',
3210
+ 64758 => 'طي',
3211
+ 64759 => 'عى',
3212
+ 64760 => 'عي',
3213
+ 64761 => 'غى',
3214
+ 64762 => 'غي',
3215
+ 64763 => 'سى',
3216
+ 64764 => 'سي',
3217
+ 64765 => 'شى',
3218
+ 64766 => 'شي',
3219
+ 64767 => 'حى',
3220
+ 64768 => 'حي',
3221
+ 64769 => 'جى',
3222
+ 64770 => 'جي',
3223
+ 64771 => 'خى',
3224
+ 64772 => 'خي',
3225
+ 64773 => 'صى',
3226
+ 64774 => 'صي',
3227
+ 64775 => 'ضى',
3228
+ 64776 => 'ضي',
3229
+ 64777 => 'شج',
3230
+ 64778 => 'شح',
3231
+ 64779 => 'شخ',
3232
+ 64780 => 'شم',
3233
+ 64781 => 'شر',
3234
+ 64782 => 'سر',
3235
+ 64783 => 'صر',
3236
+ 64784 => 'ضر',
3237
+ 64785 => 'طى',
3238
+ 64786 => 'طي',
3239
+ 64787 => 'عى',
3240
+ 64788 => 'عي',
3241
+ 64789 => 'غى',
3242
+ 64790 => 'غي',
3243
+ 64791 => 'سى',
3244
+ 64792 => 'سي',
3245
+ 64793 => 'شى',
3246
+ 64794 => 'شي',
3247
+ 64795 => 'حى',
3248
+ 64796 => 'حي',
3249
+ 64797 => 'جى',
3250
+ 64798 => 'جي',
3251
+ 64799 => 'خى',
3252
+ 64800 => 'خي',
3253
+ 64801 => 'صى',
3254
+ 64802 => 'صي',
3255
+ 64803 => 'ضى',
3256
+ 64804 => 'ضي',
3257
+ 64805 => 'شج',
3258
+ 64806 => 'شح',
3259
+ 64807 => 'شخ',
3260
+ 64808 => 'شم',
3261
+ 64809 => 'شر',
3262
+ 64810 => 'سر',
3263
+ 64811 => 'صر',
3264
+ 64812 => 'ضر',
3265
+ 64813 => 'شج',
3266
+ 64814 => 'شح',
3267
+ 64815 => 'شخ',
3268
+ 64816 => 'شم',
3269
+ 64817 => 'سه',
3270
+ 64818 => 'شه',
3271
+ 64819 => 'طم',
3272
+ 64820 => 'سج',
3273
+ 64821 => 'سح',
3274
+ 64822 => 'سخ',
3275
+ 64823 => 'شج',
3276
+ 64824 => 'شح',
3277
+ 64825 => 'شخ',
3278
+ 64826 => 'طم',
3279
+ 64827 => 'ظم',
3280
+ 64828 => 'اً',
3281
+ 64829 => 'اً',
3282
+ 64848 => 'تجم',
3283
+ 64849 => 'تحج',
3284
+ 64850 => 'تحج',
3285
+ 64851 => 'تحم',
3286
+ 64852 => 'تخم',
3287
+ 64853 => 'تمج',
3288
+ 64854 => 'تمح',
3289
+ 64855 => 'تمخ',
3290
+ 64856 => 'جمح',
3291
+ 64857 => 'جمح',
3292
+ 64858 => 'حمي',
3293
+ 64859 => 'حمى',
3294
+ 64860 => 'سحج',
3295
+ 64861 => 'سجح',
3296
+ 64862 => 'سجى',
3297
+ 64863 => 'سمح',
3298
+ 64864 => 'سمح',
3299
+ 64865 => 'سمج',
3300
+ 64866 => 'سمم',
3301
+ 64867 => 'سمم',
3302
+ 64868 => 'صحح',
3303
+ 64869 => 'صحح',
3304
+ 64870 => 'صمم',
3305
+ 64871 => 'شحم',
3306
+ 64872 => 'شحم',
3307
+ 64873 => 'شجي',
3308
+ 64874 => 'شمخ',
3309
+ 64875 => 'شمخ',
3310
+ 64876 => 'شمم',
3311
+ 64877 => 'شمم',
3312
+ 64878 => 'ضحى',
3313
+ 64879 => 'ضخم',
3314
+ 64880 => 'ضخم',
3315
+ 64881 => 'طمح',
3316
+ 64882 => 'طمح',
3317
+ 64883 => 'طمم',
3318
+ 64884 => 'طمي',
3319
+ 64885 => 'عجم',
3320
+ 64886 => 'عمم',
3321
+ 64887 => 'عمم',
3322
+ 64888 => 'عمى',
3323
+ 64889 => 'غمم',
3324
+ 64890 => 'غمي',
3325
+ 64891 => 'غمى',
3326
+ 64892 => 'فخم',
3327
+ 64893 => 'فخم',
3328
+ 64894 => 'قمح',
3329
+ 64895 => 'قمم',
3330
+ 64896 => 'لحم',
3331
+ 64897 => 'لحي',
3332
+ 64898 => 'لحى',
3333
+ 64899 => 'لجج',
3334
+ 64900 => 'لجج',
3335
+ 64901 => 'لخم',
3336
+ 64902 => 'لخم',
3337
+ 64903 => 'لمح',
3338
+ 64904 => 'لمح',
3339
+ 64905 => 'محج',
3340
+ 64906 => 'محم',
3341
+ 64907 => 'محي',
3342
+ 64908 => 'مجح',
3343
+ 64909 => 'مجم',
3344
+ 64910 => 'مخج',
3345
+ 64911 => 'مخم',
3346
+ 64914 => 'مجخ',
3347
+ 64915 => 'همج',
3348
+ 64916 => 'همم',
3349
+ 64917 => 'نحم',
3350
+ 64918 => 'نحى',
3351
+ 64919 => 'نجم',
3352
+ 64920 => 'نجم',
3353
+ 64921 => 'نجى',
3354
+ 64922 => 'نمي',
3355
+ 64923 => 'نمى',
3356
+ 64924 => 'يمم',
3357
+ 64925 => 'يمم',
3358
+ 64926 => 'بخي',
3359
+ 64927 => 'تجي',
3360
+ 64928 => 'تجى',
3361
+ 64929 => 'تخي',
3362
+ 64930 => 'تخى',
3363
+ 64931 => 'تمي',
3364
+ 64932 => 'تمى',
3365
+ 64933 => 'جمي',
3366
+ 64934 => 'جحى',
3367
+ 64935 => 'جمى',
3368
+ 64936 => 'سخى',
3369
+ 64937 => 'صحي',
3370
+ 64938 => 'شحي',
3371
+ 64939 => 'ضحي',
3372
+ 64940 => 'لجي',
3373
+ 64941 => 'لمي',
3374
+ 64942 => 'يحي',
3375
+ 64943 => 'يجي',
3376
+ 64944 => 'يمي',
3377
+ 64945 => 'ممي',
3378
+ 64946 => 'قمي',
3379
+ 64947 => 'نحي',
3380
+ 64948 => 'قمح',
3381
+ 64949 => 'لحم',
3382
+ 64950 => 'عمي',
3383
+ 64951 => 'كمي',
3384
+ 64952 => 'نجح',
3385
+ 64953 => 'مخي',
3386
+ 64954 => 'لجم',
3387
+ 64955 => 'كمم',
3388
+ 64956 => 'لجم',
3389
+ 64957 => 'نجح',
3390
+ 64958 => 'جحي',
3391
+ 64959 => 'حجي',
3392
+ 64960 => 'مجي',
3393
+ 64961 => 'فمي',
3394
+ 64962 => 'بحي',
3395
+ 64963 => 'كمم',
3396
+ 64964 => 'عجم',
3397
+ 64965 => 'صمم',
3398
+ 64966 => 'سخي',
3399
+ 64967 => 'نجي',
3400
+ 65008 => 'صلے',
3401
+ 65009 => 'قلے',
3402
+ 65010 => 'الله',
3403
+ 65011 => 'اكبر',
3404
+ 65012 => 'محمد',
3405
+ 65013 => 'صلعم',
3406
+ 65014 => 'رسول',
3407
+ 65015 => 'عليه',
3408
+ 65016 => 'وسلم',
3409
+ 65017 => 'صلى',
3410
+ 65020 => 'ریال',
3411
+ 65041 => '、',
3412
+ 65047 => '〖',
3413
+ 65048 => '〗',
3414
+ 65073 => '—',
3415
+ 65074 => '–',
3416
+ 65081 => '〔',
3417
+ 65082 => '〕',
3418
+ 65083 => '【',
3419
+ 65084 => '】',
3420
+ 65085 => '《',
3421
+ 65086 => '》',
3422
+ 65087 => '〈',
3423
+ 65088 => '〉',
3424
+ 65089 => '「',
3425
+ 65090 => '」',
3426
+ 65091 => '『',
3427
+ 65092 => '』',
3428
+ 65105 => '、',
3429
+ 65112 => '—',
3430
+ 65117 => '〔',
3431
+ 65118 => '〕',
3432
+ 65123 => '-',
3433
+ 65137 => 'ـً',
3434
+ 65143 => 'ـَ',
3435
+ 65145 => 'ـُ',
3436
+ 65147 => 'ـِ',
3437
+ 65149 => 'ـّ',
3438
+ 65151 => 'ـْ',
3439
+ 65152 => 'ء',
3440
+ 65153 => 'آ',
3441
+ 65154 => 'آ',
3442
+ 65155 => 'أ',
3443
+ 65156 => 'أ',
3444
+ 65157 => 'ؤ',
3445
+ 65158 => 'ؤ',
3446
+ 65159 => 'إ',
3447
+ 65160 => 'إ',
3448
+ 65161 => 'ئ',
3449
+ 65162 => 'ئ',
3450
+ 65163 => 'ئ',
3451
+ 65164 => 'ئ',
3452
+ 65165 => 'ا',
3453
+ 65166 => 'ا',
3454
+ 65167 => 'ب',
3455
+ 65168 => 'ب',
3456
+ 65169 => 'ب',
3457
+ 65170 => 'ب',
3458
+ 65171 => 'ة',
3459
+ 65172 => 'ة',
3460
+ 65173 => 'ت',
3461
+ 65174 => 'ت',
3462
+ 65175 => 'ت',
3463
+ 65176 => 'ت',
3464
+ 65177 => 'ث',
3465
+ 65178 => 'ث',
3466
+ 65179 => 'ث',
3467
+ 65180 => 'ث',
3468
+ 65181 => 'ج',
3469
+ 65182 => 'ج',
3470
+ 65183 => 'ج',
3471
+ 65184 => 'ج',
3472
+ 65185 => 'ح',
3473
+ 65186 => 'ح',
3474
+ 65187 => 'ح',
3475
+ 65188 => 'ح',
3476
+ 65189 => 'خ',
3477
+ 65190 => 'خ',
3478
+ 65191 => 'خ',
3479
+ 65192 => 'خ',
3480
+ 65193 => 'د',
3481
+ 65194 => 'د',
3482
+ 65195 => 'ذ',
3483
+ 65196 => 'ذ',
3484
+ 65197 => 'ر',
3485
+ 65198 => 'ر',
3486
+ 65199 => 'ز',
3487
+ 65200 => 'ز',
3488
+ 65201 => 'س',
3489
+ 65202 => 'س',
3490
+ 65203 => 'س',
3491
+ 65204 => 'س',
3492
+ 65205 => 'ش',
3493
+ 65206 => 'ش',
3494
+ 65207 => 'ش',
3495
+ 65208 => 'ش',
3496
+ 65209 => 'ص',
3497
+ 65210 => 'ص',
3498
+ 65211 => 'ص',
3499
+ 65212 => 'ص',
3500
+ 65213 => 'ض',
3501
+ 65214 => 'ض',
3502
+ 65215 => 'ض',
3503
+ 65216 => 'ض',
3504
+ 65217 => 'ط',
3505
+ 65218 => 'ط',
3506
+ 65219 => 'ط',
3507
+ 65220 => 'ط',
3508
+ 65221 => 'ظ',
3509
+ 65222 => 'ظ',
3510
+ 65223 => 'ظ',
3511
+ 65224 => 'ظ',
3512
+ 65225 => 'ع',
3513
+ 65226 => 'ع',
3514
+ 65227 => 'ع',
3515
+ 65228 => 'ع',
3516
+ 65229 => 'غ',
3517
+ 65230 => 'غ',
3518
+ 65231 => 'غ',
3519
+ 65232 => 'غ',
3520
+ 65233 => 'ف',
3521
+ 65234 => 'ف',
3522
+ 65235 => 'ف',
3523
+ 65236 => 'ف',
3524
+ 65237 => 'ق',
3525
+ 65238 => 'ق',
3526
+ 65239 => 'ق',
3527
+ 65240 => 'ق',
3528
+ 65241 => 'ك',
3529
+ 65242 => 'ك',
3530
+ 65243 => 'ك',
3531
+ 65244 => 'ك',
3532
+ 65245 => 'ل',
3533
+ 65246 => 'ل',
3534
+ 65247 => 'ل',
3535
+ 65248 => 'ل',
3536
+ 65249 => 'م',
3537
+ 65250 => 'م',
3538
+ 65251 => 'م',
3539
+ 65252 => 'م',
3540
+ 65253 => 'ن',
3541
+ 65254 => 'ن',
3542
+ 65255 => 'ن',
3543
+ 65256 => 'ن',
3544
+ 65257 => 'ه',
3545
+ 65258 => 'ه',
3546
+ 65259 => 'ه',
3547
+ 65260 => 'ه',
3548
+ 65261 => 'و',
3549
+ 65262 => 'و',
3550
+ 65263 => 'ى',
3551
+ 65264 => 'ى',
3552
+ 65265 => 'ي',
3553
+ 65266 => 'ي',
3554
+ 65267 => 'ي',
3555
+ 65268 => 'ي',
3556
+ 65269 => 'لآ',
3557
+ 65270 => 'لآ',
3558
+ 65271 => 'لأ',
3559
+ 65272 => 'لأ',
3560
+ 65273 => 'لإ',
3561
+ 65274 => 'لإ',
3562
+ 65275 => 'لا',
3563
+ 65276 => 'لا',
3564
+ 65293 => '-',
3565
+ 65294 => '.',
3566
+ 65296 => '0',
3567
+ 65297 => '1',
3568
+ 65298 => '2',
3569
+ 65299 => '3',
3570
+ 65300 => '4',
3571
+ 65301 => '5',
3572
+ 65302 => '6',
3573
+ 65303 => '7',
3574
+ 65304 => '8',
3575
+ 65305 => '9',
3576
+ 65313 => 'a',
3577
+ 65314 => 'b',
3578
+ 65315 => 'c',
3579
+ 65316 => 'd',
3580
+ 65317 => 'e',
3581
+ 65318 => 'f',
3582
+ 65319 => 'g',
3583
+ 65320 => 'h',
3584
+ 65321 => 'i',
3585
+ 65322 => 'j',
3586
+ 65323 => 'k',
3587
+ 65324 => 'l',
3588
+ 65325 => 'm',
3589
+ 65326 => 'n',
3590
+ 65327 => 'o',
3591
+ 65328 => 'p',
3592
+ 65329 => 'q',
3593
+ 65330 => 'r',
3594
+ 65331 => 's',
3595
+ 65332 => 't',
3596
+ 65333 => 'u',
3597
+ 65334 => 'v',
3598
+ 65335 => 'w',
3599
+ 65336 => 'x',
3600
+ 65337 => 'y',
3601
+ 65338 => 'z',
3602
+ 65345 => 'a',
3603
+ 65346 => 'b',
3604
+ 65347 => 'c',
3605
+ 65348 => 'd',
3606
+ 65349 => 'e',
3607
+ 65350 => 'f',
3608
+ 65351 => 'g',
3609
+ 65352 => 'h',
3610
+ 65353 => 'i',
3611
+ 65354 => 'j',
3612
+ 65355 => 'k',
3613
+ 65356 => 'l',
3614
+ 65357 => 'm',
3615
+ 65358 => 'n',
3616
+ 65359 => 'o',
3617
+ 65360 => 'p',
3618
+ 65361 => 'q',
3619
+ 65362 => 'r',
3620
+ 65363 => 's',
3621
+ 65364 => 't',
3622
+ 65365 => 'u',
3623
+ 65366 => 'v',
3624
+ 65367 => 'w',
3625
+ 65368 => 'x',
3626
+ 65369 => 'y',
3627
+ 65370 => 'z',
3628
+ 65375 => '⦅',
3629
+ 65376 => '⦆',
3630
+ 65377 => '.',
3631
+ 65378 => '「',
3632
+ 65379 => '」',
3633
+ 65380 => '、',
3634
+ 65381 => '・',
3635
+ 65382 => 'ヲ',
3636
+ 65383 => 'ァ',
3637
+ 65384 => 'ィ',
3638
+ 65385 => 'ゥ',
3639
+ 65386 => 'ェ',
3640
+ 65387 => 'ォ',
3641
+ 65388 => 'ャ',
3642
+ 65389 => 'ュ',
3643
+ 65390 => 'ョ',
3644
+ 65391 => 'ッ',
3645
+ 65392 => 'ー',
3646
+ 65393 => 'ア',
3647
+ 65394 => 'イ',
3648
+ 65395 => 'ウ',
3649
+ 65396 => 'エ',
3650
+ 65397 => 'オ',
3651
+ 65398 => 'カ',
3652
+ 65399 => 'キ',
3653
+ 65400 => 'ク',
3654
+ 65401 => 'ケ',
3655
+ 65402 => 'コ',
3656
+ 65403 => 'サ',
3657
+ 65404 => 'シ',
3658
+ 65405 => 'ス',
3659
+ 65406 => 'セ',
3660
+ 65407 => 'ソ',
3661
+ 65408 => 'タ',
3662
+ 65409 => 'チ',
3663
+ 65410 => 'ツ',
3664
+ 65411 => 'テ',
3665
+ 65412 => 'ト',
3666
+ 65413 => 'ナ',
3667
+ 65414 => 'ニ',
3668
+ 65415 => 'ヌ',
3669
+ 65416 => 'ネ',
3670
+ 65417 => 'ノ',
3671
+ 65418 => 'ハ',
3672
+ 65419 => 'ヒ',
3673
+ 65420 => 'フ',
3674
+ 65421 => 'ヘ',
3675
+ 65422 => 'ホ',
3676
+ 65423 => 'マ',
3677
+ 65424 => 'ミ',
3678
+ 65425 => 'ム',
3679
+ 65426 => 'メ',
3680
+ 65427 => 'モ',
3681
+ 65428 => 'ヤ',
3682
+ 65429 => 'ユ',
3683
+ 65430 => 'ヨ',
3684
+ 65431 => 'ラ',
3685
+ 65432 => 'リ',
3686
+ 65433 => 'ル',
3687
+ 65434 => 'レ',
3688
+ 65435 => 'ロ',
3689
+ 65436 => 'ワ',
3690
+ 65437 => 'ン',
3691
+ 65438 => '゙',
3692
+ 65439 => '゚',
3693
+ 65441 => 'ᄀ',
3694
+ 65442 => 'ᄁ',
3695
+ 65443 => 'ᆪ',
3696
+ 65444 => 'ᄂ',
3697
+ 65445 => 'ᆬ',
3698
+ 65446 => 'ᆭ',
3699
+ 65447 => 'ᄃ',
3700
+ 65448 => 'ᄄ',
3701
+ 65449 => 'ᄅ',
3702
+ 65450 => 'ᆰ',
3703
+ 65451 => 'ᆱ',
3704
+ 65452 => 'ᆲ',
3705
+ 65453 => 'ᆳ',
3706
+ 65454 => 'ᆴ',
3707
+ 65455 => 'ᆵ',
3708
+ 65456 => 'ᄚ',
3709
+ 65457 => 'ᄆ',
3710
+ 65458 => 'ᄇ',
3711
+ 65459 => 'ᄈ',
3712
+ 65460 => 'ᄡ',
3713
+ 65461 => 'ᄉ',
3714
+ 65462 => 'ᄊ',
3715
+ 65463 => 'ᄋ',
3716
+ 65464 => 'ᄌ',
3717
+ 65465 => 'ᄍ',
3718
+ 65466 => 'ᄎ',
3719
+ 65467 => 'ᄏ',
3720
+ 65468 => 'ᄐ',
3721
+ 65469 => 'ᄑ',
3722
+ 65470 => 'ᄒ',
3723
+ 65474 => 'ᅡ',
3724
+ 65475 => 'ᅢ',
3725
+ 65476 => 'ᅣ',
3726
+ 65477 => 'ᅤ',
3727
+ 65478 => 'ᅥ',
3728
+ 65479 => 'ᅦ',
3729
+ 65482 => 'ᅧ',
3730
+ 65483 => 'ᅨ',
3731
+ 65484 => 'ᅩ',
3732
+ 65485 => 'ᅪ',
3733
+ 65486 => 'ᅫ',
3734
+ 65487 => 'ᅬ',
3735
+ 65490 => 'ᅭ',
3736
+ 65491 => 'ᅮ',
3737
+ 65492 => 'ᅯ',
3738
+ 65493 => 'ᅰ',
3739
+ 65494 => 'ᅱ',
3740
+ 65495 => 'ᅲ',
3741
+ 65498 => 'ᅳ',
3742
+ 65499 => 'ᅴ',
3743
+ 65500 => 'ᅵ',
3744
+ 65504 => '¢',
3745
+ 65505 => '£',
3746
+ 65506 => '¬',
3747
+ 65508 => '¦',
3748
+ 65509 => '¥',
3749
+ 65510 => '₩',
3750
+ 65512 => '│',
3751
+ 65513 => '←',
3752
+ 65514 => '↑',
3753
+ 65515 => '→',
3754
+ 65516 => '↓',
3755
+ 65517 => '■',
3756
+ 65518 => '○',
3757
+ 66560 => '𐐨',
3758
+ 66561 => '𐐩',
3759
+ 66562 => '𐐪',
3760
+ 66563 => '𐐫',
3761
+ 66564 => '𐐬',
3762
+ 66565 => '𐐭',
3763
+ 66566 => '𐐮',
3764
+ 66567 => '𐐯',
3765
+ 66568 => '𐐰',
3766
+ 66569 => '𐐱',
3767
+ 66570 => '𐐲',
3768
+ 66571 => '𐐳',
3769
+ 66572 => '𐐴',
3770
+ 66573 => '𐐵',
3771
+ 66574 => '𐐶',
3772
+ 66575 => '𐐷',
3773
+ 66576 => '𐐸',
3774
+ 66577 => '𐐹',
3775
+ 66578 => '𐐺',
3776
+ 66579 => '𐐻',
3777
+ 66580 => '𐐼',
3778
+ 66581 => '𐐽',
3779
+ 66582 => '𐐾',
3780
+ 66583 => '𐐿',
3781
+ 66584 => '𐑀',
3782
+ 66585 => '𐑁',
3783
+ 66586 => '𐑂',
3784
+ 66587 => '𐑃',
3785
+ 66588 => '𐑄',
3786
+ 66589 => '𐑅',
3787
+ 66590 => '𐑆',
3788
+ 66591 => '𐑇',
3789
+ 66592 => '𐑈',
3790
+ 66593 => '𐑉',
3791
+ 66594 => '𐑊',
3792
+ 66595 => '𐑋',
3793
+ 66596 => '𐑌',
3794
+ 66597 => '𐑍',
3795
+ 66598 => '𐑎',
3796
+ 66599 => '𐑏',
3797
+ 66736 => '𐓘',
3798
+ 66737 => '𐓙',
3799
+ 66738 => '𐓚',
3800
+ 66739 => '𐓛',
3801
+ 66740 => '𐓜',
3802
+ 66741 => '𐓝',
3803
+ 66742 => '𐓞',
3804
+ 66743 => '𐓟',
3805
+ 66744 => '𐓠',
3806
+ 66745 => '𐓡',
3807
+ 66746 => '𐓢',
3808
+ 66747 => '𐓣',
3809
+ 66748 => '𐓤',
3810
+ 66749 => '𐓥',
3811
+ 66750 => '𐓦',
3812
+ 66751 => '𐓧',
3813
+ 66752 => '𐓨',
3814
+ 66753 => '𐓩',
3815
+ 66754 => '𐓪',
3816
+ 66755 => '𐓫',
3817
+ 66756 => '𐓬',
3818
+ 66757 => '𐓭',
3819
+ 66758 => '𐓮',
3820
+ 66759 => '𐓯',
3821
+ 66760 => '𐓰',
3822
+ 66761 => '𐓱',
3823
+ 66762 => '𐓲',
3824
+ 66763 => '𐓳',
3825
+ 66764 => '𐓴',
3826
+ 66765 => '𐓵',
3827
+ 66766 => '𐓶',
3828
+ 66767 => '𐓷',
3829
+ 66768 => '𐓸',
3830
+ 66769 => '𐓹',
3831
+ 66770 => '𐓺',
3832
+ 66771 => '𐓻',
3833
+ 68736 => '𐳀',
3834
+ 68737 => '𐳁',
3835
+ 68738 => '𐳂',
3836
+ 68739 => '𐳃',
3837
+ 68740 => '𐳄',
3838
+ 68741 => '𐳅',
3839
+ 68742 => '𐳆',
3840
+ 68743 => '𐳇',
3841
+ 68744 => '𐳈',
3842
+ 68745 => '𐳉',
3843
+ 68746 => '𐳊',
3844
+ 68747 => '𐳋',
3845
+ 68748 => '𐳌',
3846
+ 68749 => '𐳍',
3847
+ 68750 => '𐳎',
3848
+ 68751 => '𐳏',
3849
+ 68752 => '𐳐',
3850
+ 68753 => '𐳑',
3851
+ 68754 => '𐳒',
3852
+ 68755 => '𐳓',
3853
+ 68756 => '𐳔',
3854
+ 68757 => '𐳕',
3855
+ 68758 => '𐳖',
3856
+ 68759 => '𐳗',
3857
+ 68760 => '𐳘',
3858
+ 68761 => '𐳙',
3859
+ 68762 => '𐳚',
3860
+ 68763 => '𐳛',
3861
+ 68764 => '𐳜',
3862
+ 68765 => '𐳝',
3863
+ 68766 => '𐳞',
3864
+ 68767 => '𐳟',
3865
+ 68768 => '𐳠',
3866
+ 68769 => '𐳡',
3867
+ 68770 => '𐳢',
3868
+ 68771 => '𐳣',
3869
+ 68772 => '𐳤',
3870
+ 68773 => '𐳥',
3871
+ 68774 => '𐳦',
3872
+ 68775 => '𐳧',
3873
+ 68776 => '𐳨',
3874
+ 68777 => '𐳩',
3875
+ 68778 => '𐳪',
3876
+ 68779 => '𐳫',
3877
+ 68780 => '𐳬',
3878
+ 68781 => '𐳭',
3879
+ 68782 => '𐳮',
3880
+ 68783 => '𐳯',
3881
+ 68784 => '𐳰',
3882
+ 68785 => '𐳱',
3883
+ 68786 => '𐳲',
3884
+ 71840 => '𑣀',
3885
+ 71841 => '𑣁',
3886
+ 71842 => '𑣂',
3887
+ 71843 => '𑣃',
3888
+ 71844 => '𑣄',
3889
+ 71845 => '𑣅',
3890
+ 71846 => '𑣆',
3891
+ 71847 => '𑣇',
3892
+ 71848 => '𑣈',
3893
+ 71849 => '𑣉',
3894
+ 71850 => '𑣊',
3895
+ 71851 => '𑣋',
3896
+ 71852 => '𑣌',
3897
+ 71853 => '𑣍',
3898
+ 71854 => '𑣎',
3899
+ 71855 => '𑣏',
3900
+ 71856 => '𑣐',
3901
+ 71857 => '𑣑',
3902
+ 71858 => '𑣒',
3903
+ 71859 => '𑣓',
3904
+ 71860 => '𑣔',
3905
+ 71861 => '𑣕',
3906
+ 71862 => '𑣖',
3907
+ 71863 => '𑣗',
3908
+ 71864 => '𑣘',
3909
+ 71865 => '𑣙',
3910
+ 71866 => '𑣚',
3911
+ 71867 => '𑣛',
3912
+ 71868 => '𑣜',
3913
+ 71869 => '𑣝',
3914
+ 71870 => '𑣞',
3915
+ 71871 => '𑣟',
3916
+ 93760 => '𖹠',
3917
+ 93761 => '𖹡',
3918
+ 93762 => '𖹢',
3919
+ 93763 => '𖹣',
3920
+ 93764 => '𖹤',
3921
+ 93765 => '𖹥',
3922
+ 93766 => '𖹦',
3923
+ 93767 => '𖹧',
3924
+ 93768 => '𖹨',
3925
+ 93769 => '𖹩',
3926
+ 93770 => '𖹪',
3927
+ 93771 => '𖹫',
3928
+ 93772 => '𖹬',
3929
+ 93773 => '𖹭',
3930
+ 93774 => '𖹮',
3931
+ 93775 => '𖹯',
3932
+ 93776 => '𖹰',
3933
+ 93777 => '𖹱',
3934
+ 93778 => '𖹲',
3935
+ 93779 => '𖹳',
3936
+ 93780 => '𖹴',
3937
+ 93781 => '𖹵',
3938
+ 93782 => '𖹶',
3939
+ 93783 => '𖹷',
3940
+ 93784 => '𖹸',
3941
+ 93785 => '𖹹',
3942
+ 93786 => '𖹺',
3943
+ 93787 => '𖹻',
3944
+ 93788 => '𖹼',
3945
+ 93789 => '𖹽',
3946
+ 93790 => '𖹾',
3947
+ 93791 => '𖹿',
3948
+ 119134 => '𝅗𝅥',
3949
+ 119135 => '𝅘𝅥',
3950
+ 119136 => '𝅘𝅥𝅮',
3951
+ 119137 => '𝅘𝅥𝅯',
3952
+ 119138 => '𝅘𝅥𝅰',
3953
+ 119139 => '𝅘𝅥𝅱',
3954
+ 119140 => '𝅘𝅥𝅲',
3955
+ 119227 => '𝆹𝅥',
3956
+ 119228 => '𝆺𝅥',
3957
+ 119229 => '𝆹𝅥𝅮',
3958
+ 119230 => '𝆺𝅥𝅮',
3959
+ 119231 => '𝆹𝅥𝅯',
3960
+ 119232 => '𝆺𝅥𝅯',
3961
+ 119808 => 'a',
3962
+ 119809 => 'b',
3963
+ 119810 => 'c',
3964
+ 119811 => 'd',
3965
+ 119812 => 'e',
3966
+ 119813 => 'f',
3967
+ 119814 => 'g',
3968
+ 119815 => 'h',
3969
+ 119816 => 'i',
3970
+ 119817 => 'j',
3971
+ 119818 => 'k',
3972
+ 119819 => 'l',
3973
+ 119820 => 'm',
3974
+ 119821 => 'n',
3975
+ 119822 => 'o',
3976
+ 119823 => 'p',
3977
+ 119824 => 'q',
3978
+ 119825 => 'r',
3979
+ 119826 => 's',
3980
+ 119827 => 't',
3981
+ 119828 => 'u',
3982
+ 119829 => 'v',
3983
+ 119830 => 'w',
3984
+ 119831 => 'x',
3985
+ 119832 => 'y',
3986
+ 119833 => 'z',
3987
+ 119834 => 'a',
3988
+ 119835 => 'b',
3989
+ 119836 => 'c',
3990
+ 119837 => 'd',
3991
+ 119838 => 'e',
3992
+ 119839 => 'f',
3993
+ 119840 => 'g',
3994
+ 119841 => 'h',
3995
+ 119842 => 'i',
3996
+ 119843 => 'j',
3997
+ 119844 => 'k',
3998
+ 119845 => 'l',
3999
+ 119846 => 'm',
4000
+ 119847 => 'n',
4001
+ 119848 => 'o',
4002
+ 119849 => 'p',
4003
+ 119850 => 'q',
4004
+ 119851 => 'r',
4005
+ 119852 => 's',
4006
+ 119853 => 't',
4007
+ 119854 => 'u',
4008
+ 119855 => 'v',
4009
+ 119856 => 'w',
4010
+ 119857 => 'x',
4011
+ 119858 => 'y',
4012
+ 119859 => 'z',
4013
+ 119860 => 'a',
4014
+ 119861 => 'b',
4015
+ 119862 => 'c',
4016
+ 119863 => 'd',
4017
+ 119864 => 'e',
4018
+ 119865 => 'f',
4019
+ 119866 => 'g',
4020
+ 119867 => 'h',
4021
+ 119868 => 'i',
4022
+ 119869 => 'j',
4023
+ 119870 => 'k',
4024
+ 119871 => 'l',
4025
+ 119872 => 'm',
4026
+ 119873 => 'n',
4027
+ 119874 => 'o',
4028
+ 119875 => 'p',
4029
+ 119876 => 'q',
4030
+ 119877 => 'r',
4031
+ 119878 => 's',
4032
+ 119879 => 't',
4033
+ 119880 => 'u',
4034
+ 119881 => 'v',
4035
+ 119882 => 'w',
4036
+ 119883 => 'x',
4037
+ 119884 => 'y',
4038
+ 119885 => 'z',
4039
+ 119886 => 'a',
4040
+ 119887 => 'b',
4041
+ 119888 => 'c',
4042
+ 119889 => 'd',
4043
+ 119890 => 'e',
4044
+ 119891 => 'f',
4045
+ 119892 => 'g',
4046
+ 119894 => 'i',
4047
+ 119895 => 'j',
4048
+ 119896 => 'k',
4049
+ 119897 => 'l',
4050
+ 119898 => 'm',
4051
+ 119899 => 'n',
4052
+ 119900 => 'o',
4053
+ 119901 => 'p',
4054
+ 119902 => 'q',
4055
+ 119903 => 'r',
4056
+ 119904 => 's',
4057
+ 119905 => 't',
4058
+ 119906 => 'u',
4059
+ 119907 => 'v',
4060
+ 119908 => 'w',
4061
+ 119909 => 'x',
4062
+ 119910 => 'y',
4063
+ 119911 => 'z',
4064
+ 119912 => 'a',
4065
+ 119913 => 'b',
4066
+ 119914 => 'c',
4067
+ 119915 => 'd',
4068
+ 119916 => 'e',
4069
+ 119917 => 'f',
4070
+ 119918 => 'g',
4071
+ 119919 => 'h',
4072
+ 119920 => 'i',
4073
+ 119921 => 'j',
4074
+ 119922 => 'k',
4075
+ 119923 => 'l',
4076
+ 119924 => 'm',
4077
+ 119925 => 'n',
4078
+ 119926 => 'o',
4079
+ 119927 => 'p',
4080
+ 119928 => 'q',
4081
+ 119929 => 'r',
4082
+ 119930 => 's',
4083
+ 119931 => 't',
4084
+ 119932 => 'u',
4085
+ 119933 => 'v',
4086
+ 119934 => 'w',
4087
+ 119935 => 'x',
4088
+ 119936 => 'y',
4089
+ 119937 => 'z',
4090
+ 119938 => 'a',
4091
+ 119939 => 'b',
4092
+ 119940 => 'c',
4093
+ 119941 => 'd',
4094
+ 119942 => 'e',
4095
+ 119943 => 'f',
4096
+ 119944 => 'g',
4097
+ 119945 => 'h',
4098
+ 119946 => 'i',
4099
+ 119947 => 'j',
4100
+ 119948 => 'k',
4101
+ 119949 => 'l',
4102
+ 119950 => 'm',
4103
+ 119951 => 'n',
4104
+ 119952 => 'o',
4105
+ 119953 => 'p',
4106
+ 119954 => 'q',
4107
+ 119955 => 'r',
4108
+ 119956 => 's',
4109
+ 119957 => 't',
4110
+ 119958 => 'u',
4111
+ 119959 => 'v',
4112
+ 119960 => 'w',
4113
+ 119961 => 'x',
4114
+ 119962 => 'y',
4115
+ 119963 => 'z',
4116
+ 119964 => 'a',
4117
+ 119966 => 'c',
4118
+ 119967 => 'd',
4119
+ 119970 => 'g',
4120
+ 119973 => 'j',
4121
+ 119974 => 'k',
4122
+ 119977 => 'n',
4123
+ 119978 => 'o',
4124
+ 119979 => 'p',
4125
+ 119980 => 'q',
4126
+ 119982 => 's',
4127
+ 119983 => 't',
4128
+ 119984 => 'u',
4129
+ 119985 => 'v',
4130
+ 119986 => 'w',
4131
+ 119987 => 'x',
4132
+ 119988 => 'y',
4133
+ 119989 => 'z',
4134
+ 119990 => 'a',
4135
+ 119991 => 'b',
4136
+ 119992 => 'c',
4137
+ 119993 => 'd',
4138
+ 119995 => 'f',
4139
+ 119997 => 'h',
4140
+ 119998 => 'i',
4141
+ 119999 => 'j',
4142
+ 120000 => 'k',
4143
+ 120001 => 'l',
4144
+ 120002 => 'm',
4145
+ 120003 => 'n',
4146
+ 120005 => 'p',
4147
+ 120006 => 'q',
4148
+ 120007 => 'r',
4149
+ 120008 => 's',
4150
+ 120009 => 't',
4151
+ 120010 => 'u',
4152
+ 120011 => 'v',
4153
+ 120012 => 'w',
4154
+ 120013 => 'x',
4155
+ 120014 => 'y',
4156
+ 120015 => 'z',
4157
+ 120016 => 'a',
4158
+ 120017 => 'b',
4159
+ 120018 => 'c',
4160
+ 120019 => 'd',
4161
+ 120020 => 'e',
4162
+ 120021 => 'f',
4163
+ 120022 => 'g',
4164
+ 120023 => 'h',
4165
+ 120024 => 'i',
4166
+ 120025 => 'j',
4167
+ 120026 => 'k',
4168
+ 120027 => 'l',
4169
+ 120028 => 'm',
4170
+ 120029 => 'n',
4171
+ 120030 => 'o',
4172
+ 120031 => 'p',
4173
+ 120032 => 'q',
4174
+ 120033 => 'r',
4175
+ 120034 => 's',
4176
+ 120035 => 't',
4177
+ 120036 => 'u',
4178
+ 120037 => 'v',
4179
+ 120038 => 'w',
4180
+ 120039 => 'x',
4181
+ 120040 => 'y',
4182
+ 120041 => 'z',
4183
+ 120042 => 'a',
4184
+ 120043 => 'b',
4185
+ 120044 => 'c',
4186
+ 120045 => 'd',
4187
+ 120046 => 'e',
4188
+ 120047 => 'f',
4189
+ 120048 => 'g',
4190
+ 120049 => 'h',
4191
+ 120050 => 'i',
4192
+ 120051 => 'j',
4193
+ 120052 => 'k',
4194
+ 120053 => 'l',
4195
+ 120054 => 'm',
4196
+ 120055 => 'n',
4197
+ 120056 => 'o',
4198
+ 120057 => 'p',
4199
+ 120058 => 'q',
4200
+ 120059 => 'r',
4201
+ 120060 => 's',
4202
+ 120061 => 't',
4203
+ 120062 => 'u',
4204
+ 120063 => 'v',
4205
+ 120064 => 'w',
4206
+ 120065 => 'x',
4207
+ 120066 => 'y',
4208
+ 120067 => 'z',
4209
+ 120068 => 'a',
4210
+ 120069 => 'b',
4211
+ 120071 => 'd',
4212
+ 120072 => 'e',
4213
+ 120073 => 'f',
4214
+ 120074 => 'g',
4215
+ 120077 => 'j',
4216
+ 120078 => 'k',
4217
+ 120079 => 'l',
4218
+ 120080 => 'm',
4219
+ 120081 => 'n',
4220
+ 120082 => 'o',
4221
+ 120083 => 'p',
4222
+ 120084 => 'q',
4223
+ 120086 => 's',
4224
+ 120087 => 't',
4225
+ 120088 => 'u',
4226
+ 120089 => 'v',
4227
+ 120090 => 'w',
4228
+ 120091 => 'x',
4229
+ 120092 => 'y',
4230
+ 120094 => 'a',
4231
+ 120095 => 'b',
4232
+ 120096 => 'c',
4233
+ 120097 => 'd',
4234
+ 120098 => 'e',
4235
+ 120099 => 'f',
4236
+ 120100 => 'g',
4237
+ 120101 => 'h',
4238
+ 120102 => 'i',
4239
+ 120103 => 'j',
4240
+ 120104 => 'k',
4241
+ 120105 => 'l',
4242
+ 120106 => 'm',
4243
+ 120107 => 'n',
4244
+ 120108 => 'o',
4245
+ 120109 => 'p',
4246
+ 120110 => 'q',
4247
+ 120111 => 'r',
4248
+ 120112 => 's',
4249
+ 120113 => 't',
4250
+ 120114 => 'u',
4251
+ 120115 => 'v',
4252
+ 120116 => 'w',
4253
+ 120117 => 'x',
4254
+ 120118 => 'y',
4255
+ 120119 => 'z',
4256
+ 120120 => 'a',
4257
+ 120121 => 'b',
4258
+ 120123 => 'd',
4259
+ 120124 => 'e',
4260
+ 120125 => 'f',
4261
+ 120126 => 'g',
4262
+ 120128 => 'i',
4263
+ 120129 => 'j',
4264
+ 120130 => 'k',
4265
+ 120131 => 'l',
4266
+ 120132 => 'm',
4267
+ 120134 => 'o',
4268
+ 120138 => 's',
4269
+ 120139 => 't',
4270
+ 120140 => 'u',
4271
+ 120141 => 'v',
4272
+ 120142 => 'w',
4273
+ 120143 => 'x',
4274
+ 120144 => 'y',
4275
+ 120146 => 'a',
4276
+ 120147 => 'b',
4277
+ 120148 => 'c',
4278
+ 120149 => 'd',
4279
+ 120150 => 'e',
4280
+ 120151 => 'f',
4281
+ 120152 => 'g',
4282
+ 120153 => 'h',
4283
+ 120154 => 'i',
4284
+ 120155 => 'j',
4285
+ 120156 => 'k',
4286
+ 120157 => 'l',
4287
+ 120158 => 'm',
4288
+ 120159 => 'n',
4289
+ 120160 => 'o',
4290
+ 120161 => 'p',
4291
+ 120162 => 'q',
4292
+ 120163 => 'r',
4293
+ 120164 => 's',
4294
+ 120165 => 't',
4295
+ 120166 => 'u',
4296
+ 120167 => 'v',
4297
+ 120168 => 'w',
4298
+ 120169 => 'x',
4299
+ 120170 => 'y',
4300
+ 120171 => 'z',
4301
+ 120172 => 'a',
4302
+ 120173 => 'b',
4303
+ 120174 => 'c',
4304
+ 120175 => 'd',
4305
+ 120176 => 'e',
4306
+ 120177 => 'f',
4307
+ 120178 => 'g',
4308
+ 120179 => 'h',
4309
+ 120180 => 'i',
4310
+ 120181 => 'j',
4311
+ 120182 => 'k',
4312
+ 120183 => 'l',
4313
+ 120184 => 'm',
4314
+ 120185 => 'n',
4315
+ 120186 => 'o',
4316
+ 120187 => 'p',
4317
+ 120188 => 'q',
4318
+ 120189 => 'r',
4319
+ 120190 => 's',
4320
+ 120191 => 't',
4321
+ 120192 => 'u',
4322
+ 120193 => 'v',
4323
+ 120194 => 'w',
4324
+ 120195 => 'x',
4325
+ 120196 => 'y',
4326
+ 120197 => 'z',
4327
+ 120198 => 'a',
4328
+ 120199 => 'b',
4329
+ 120200 => 'c',
4330
+ 120201 => 'd',
4331
+ 120202 => 'e',
4332
+ 120203 => 'f',
4333
+ 120204 => 'g',
4334
+ 120205 => 'h',
4335
+ 120206 => 'i',
4336
+ 120207 => 'j',
4337
+ 120208 => 'k',
4338
+ 120209 => 'l',
4339
+ 120210 => 'm',
4340
+ 120211 => 'n',
4341
+ 120212 => 'o',
4342
+ 120213 => 'p',
4343
+ 120214 => 'q',
4344
+ 120215 => 'r',
4345
+ 120216 => 's',
4346
+ 120217 => 't',
4347
+ 120218 => 'u',
4348
+ 120219 => 'v',
4349
+ 120220 => 'w',
4350
+ 120221 => 'x',
4351
+ 120222 => 'y',
4352
+ 120223 => 'z',
4353
+ 120224 => 'a',
4354
+ 120225 => 'b',
4355
+ 120226 => 'c',
4356
+ 120227 => 'd',
4357
+ 120228 => 'e',
4358
+ 120229 => 'f',
4359
+ 120230 => 'g',
4360
+ 120231 => 'h',
4361
+ 120232 => 'i',
4362
+ 120233 => 'j',
4363
+ 120234 => 'k',
4364
+ 120235 => 'l',
4365
+ 120236 => 'm',
4366
+ 120237 => 'n',
4367
+ 120238 => 'o',
4368
+ 120239 => 'p',
4369
+ 120240 => 'q',
4370
+ 120241 => 'r',
4371
+ 120242 => 's',
4372
+ 120243 => 't',
4373
+ 120244 => 'u',
4374
+ 120245 => 'v',
4375
+ 120246 => 'w',
4376
+ 120247 => 'x',
4377
+ 120248 => 'y',
4378
+ 120249 => 'z',
4379
+ 120250 => 'a',
4380
+ 120251 => 'b',
4381
+ 120252 => 'c',
4382
+ 120253 => 'd',
4383
+ 120254 => 'e',
4384
+ 120255 => 'f',
4385
+ 120256 => 'g',
4386
+ 120257 => 'h',
4387
+ 120258 => 'i',
4388
+ 120259 => 'j',
4389
+ 120260 => 'k',
4390
+ 120261 => 'l',
4391
+ 120262 => 'm',
4392
+ 120263 => 'n',
4393
+ 120264 => 'o',
4394
+ 120265 => 'p',
4395
+ 120266 => 'q',
4396
+ 120267 => 'r',
4397
+ 120268 => 's',
4398
+ 120269 => 't',
4399
+ 120270 => 'u',
4400
+ 120271 => 'v',
4401
+ 120272 => 'w',
4402
+ 120273 => 'x',
4403
+ 120274 => 'y',
4404
+ 120275 => 'z',
4405
+ 120276 => 'a',
4406
+ 120277 => 'b',
4407
+ 120278 => 'c',
4408
+ 120279 => 'd',
4409
+ 120280 => 'e',
4410
+ 120281 => 'f',
4411
+ 120282 => 'g',
4412
+ 120283 => 'h',
4413
+ 120284 => 'i',
4414
+ 120285 => 'j',
4415
+ 120286 => 'k',
4416
+ 120287 => 'l',
4417
+ 120288 => 'm',
4418
+ 120289 => 'n',
4419
+ 120290 => 'o',
4420
+ 120291 => 'p',
4421
+ 120292 => 'q',
4422
+ 120293 => 'r',
4423
+ 120294 => 's',
4424
+ 120295 => 't',
4425
+ 120296 => 'u',
4426
+ 120297 => 'v',
4427
+ 120298 => 'w',
4428
+ 120299 => 'x',
4429
+ 120300 => 'y',
4430
+ 120301 => 'z',
4431
+ 120302 => 'a',
4432
+ 120303 => 'b',
4433
+ 120304 => 'c',
4434
+ 120305 => 'd',
4435
+ 120306 => 'e',
4436
+ 120307 => 'f',
4437
+ 120308 => 'g',
4438
+ 120309 => 'h',
4439
+ 120310 => 'i',
4440
+ 120311 => 'j',
4441
+ 120312 => 'k',
4442
+ 120313 => 'l',
4443
+ 120314 => 'm',
4444
+ 120315 => 'n',
4445
+ 120316 => 'o',
4446
+ 120317 => 'p',
4447
+ 120318 => 'q',
4448
+ 120319 => 'r',
4449
+ 120320 => 's',
4450
+ 120321 => 't',
4451
+ 120322 => 'u',
4452
+ 120323 => 'v',
4453
+ 120324 => 'w',
4454
+ 120325 => 'x',
4455
+ 120326 => 'y',
4456
+ 120327 => 'z',
4457
+ 120328 => 'a',
4458
+ 120329 => 'b',
4459
+ 120330 => 'c',
4460
+ 120331 => 'd',
4461
+ 120332 => 'e',
4462
+ 120333 => 'f',
4463
+ 120334 => 'g',
4464
+ 120335 => 'h',
4465
+ 120336 => 'i',
4466
+ 120337 => 'j',
4467
+ 120338 => 'k',
4468
+ 120339 => 'l',
4469
+ 120340 => 'm',
4470
+ 120341 => 'n',
4471
+ 120342 => 'o',
4472
+ 120343 => 'p',
4473
+ 120344 => 'q',
4474
+ 120345 => 'r',
4475
+ 120346 => 's',
4476
+ 120347 => 't',
4477
+ 120348 => 'u',
4478
+ 120349 => 'v',
4479
+ 120350 => 'w',
4480
+ 120351 => 'x',
4481
+ 120352 => 'y',
4482
+ 120353 => 'z',
4483
+ 120354 => 'a',
4484
+ 120355 => 'b',
4485
+ 120356 => 'c',
4486
+ 120357 => 'd',
4487
+ 120358 => 'e',
4488
+ 120359 => 'f',
4489
+ 120360 => 'g',
4490
+ 120361 => 'h',
4491
+ 120362 => 'i',
4492
+ 120363 => 'j',
4493
+ 120364 => 'k',
4494
+ 120365 => 'l',
4495
+ 120366 => 'm',
4496
+ 120367 => 'n',
4497
+ 120368 => 'o',
4498
+ 120369 => 'p',
4499
+ 120370 => 'q',
4500
+ 120371 => 'r',
4501
+ 120372 => 's',
4502
+ 120373 => 't',
4503
+ 120374 => 'u',
4504
+ 120375 => 'v',
4505
+ 120376 => 'w',
4506
+ 120377 => 'x',
4507
+ 120378 => 'y',
4508
+ 120379 => 'z',
4509
+ 120380 => 'a',
4510
+ 120381 => 'b',
4511
+ 120382 => 'c',
4512
+ 120383 => 'd',
4513
+ 120384 => 'e',
4514
+ 120385 => 'f',
4515
+ 120386 => 'g',
4516
+ 120387 => 'h',
4517
+ 120388 => 'i',
4518
+ 120389 => 'j',
4519
+ 120390 => 'k',
4520
+ 120391 => 'l',
4521
+ 120392 => 'm',
4522
+ 120393 => 'n',
4523
+ 120394 => 'o',
4524
+ 120395 => 'p',
4525
+ 120396 => 'q',
4526
+ 120397 => 'r',
4527
+ 120398 => 's',
4528
+ 120399 => 't',
4529
+ 120400 => 'u',
4530
+ 120401 => 'v',
4531
+ 120402 => 'w',
4532
+ 120403 => 'x',
4533
+ 120404 => 'y',
4534
+ 120405 => 'z',
4535
+ 120406 => 'a',
4536
+ 120407 => 'b',
4537
+ 120408 => 'c',
4538
+ 120409 => 'd',
4539
+ 120410 => 'e',
4540
+ 120411 => 'f',
4541
+ 120412 => 'g',
4542
+ 120413 => 'h',
4543
+ 120414 => 'i',
4544
+ 120415 => 'j',
4545
+ 120416 => 'k',
4546
+ 120417 => 'l',
4547
+ 120418 => 'm',
4548
+ 120419 => 'n',
4549
+ 120420 => 'o',
4550
+ 120421 => 'p',
4551
+ 120422 => 'q',
4552
+ 120423 => 'r',
4553
+ 120424 => 's',
4554
+ 120425 => 't',
4555
+ 120426 => 'u',
4556
+ 120427 => 'v',
4557
+ 120428 => 'w',
4558
+ 120429 => 'x',
4559
+ 120430 => 'y',
4560
+ 120431 => 'z',
4561
+ 120432 => 'a',
4562
+ 120433 => 'b',
4563
+ 120434 => 'c',
4564
+ 120435 => 'd',
4565
+ 120436 => 'e',
4566
+ 120437 => 'f',
4567
+ 120438 => 'g',
4568
+ 120439 => 'h',
4569
+ 120440 => 'i',
4570
+ 120441 => 'j',
4571
+ 120442 => 'k',
4572
+ 120443 => 'l',
4573
+ 120444 => 'm',
4574
+ 120445 => 'n',
4575
+ 120446 => 'o',
4576
+ 120447 => 'p',
4577
+ 120448 => 'q',
4578
+ 120449 => 'r',
4579
+ 120450 => 's',
4580
+ 120451 => 't',
4581
+ 120452 => 'u',
4582
+ 120453 => 'v',
4583
+ 120454 => 'w',
4584
+ 120455 => 'x',
4585
+ 120456 => 'y',
4586
+ 120457 => 'z',
4587
+ 120458 => 'a',
4588
+ 120459 => 'b',
4589
+ 120460 => 'c',
4590
+ 120461 => 'd',
4591
+ 120462 => 'e',
4592
+ 120463 => 'f',
4593
+ 120464 => 'g',
4594
+ 120465 => 'h',
4595
+ 120466 => 'i',
4596
+ 120467 => 'j',
4597
+ 120468 => 'k',
4598
+ 120469 => 'l',
4599
+ 120470 => 'm',
4600
+ 120471 => 'n',
4601
+ 120472 => 'o',
4602
+ 120473 => 'p',
4603
+ 120474 => 'q',
4604
+ 120475 => 'r',
4605
+ 120476 => 's',
4606
+ 120477 => 't',
4607
+ 120478 => 'u',
4608
+ 120479 => 'v',
4609
+ 120480 => 'w',
4610
+ 120481 => 'x',
4611
+ 120482 => 'y',
4612
+ 120483 => 'z',
4613
+ 120484 => 'ı',
4614
+ 120485 => 'ȷ',
4615
+ 120488 => 'α',
4616
+ 120489 => 'β',
4617
+ 120490 => 'γ',
4618
+ 120491 => 'δ',
4619
+ 120492 => 'ε',
4620
+ 120493 => 'ζ',
4621
+ 120494 => 'η',
4622
+ 120495 => 'θ',
4623
+ 120496 => 'ι',
4624
+ 120497 => 'κ',
4625
+ 120498 => 'λ',
4626
+ 120499 => 'μ',
4627
+ 120500 => 'ν',
4628
+ 120501 => 'ξ',
4629
+ 120502 => 'ο',
4630
+ 120503 => 'π',
4631
+ 120504 => 'ρ',
4632
+ 120505 => 'θ',
4633
+ 120506 => 'σ',
4634
+ 120507 => 'τ',
4635
+ 120508 => 'υ',
4636
+ 120509 => 'φ',
4637
+ 120510 => 'χ',
4638
+ 120511 => 'ψ',
4639
+ 120512 => 'ω',
4640
+ 120513 => '∇',
4641
+ 120514 => 'α',
4642
+ 120515 => 'β',
4643
+ 120516 => 'γ',
4644
+ 120517 => 'δ',
4645
+ 120518 => 'ε',
4646
+ 120519 => 'ζ',
4647
+ 120520 => 'η',
4648
+ 120521 => 'θ',
4649
+ 120522 => 'ι',
4650
+ 120523 => 'κ',
4651
+ 120524 => 'λ',
4652
+ 120525 => 'μ',
4653
+ 120526 => 'ν',
4654
+ 120527 => 'ξ',
4655
+ 120528 => 'ο',
4656
+ 120529 => 'π',
4657
+ 120530 => 'ρ',
4658
+ 120531 => 'σ',
4659
+ 120532 => 'σ',
4660
+ 120533 => 'τ',
4661
+ 120534 => 'υ',
4662
+ 120535 => 'φ',
4663
+ 120536 => 'χ',
4664
+ 120537 => 'ψ',
4665
+ 120538 => 'ω',
4666
+ 120539 => '∂',
4667
+ 120540 => 'ε',
4668
+ 120541 => 'θ',
4669
+ 120542 => 'κ',
4670
+ 120543 => 'φ',
4671
+ 120544 => 'ρ',
4672
+ 120545 => 'π',
4673
+ 120546 => 'α',
4674
+ 120547 => 'β',
4675
+ 120548 => 'γ',
4676
+ 120549 => 'δ',
4677
+ 120550 => 'ε',
4678
+ 120551 => 'ζ',
4679
+ 120552 => 'η',
4680
+ 120553 => 'θ',
4681
+ 120554 => 'ι',
4682
+ 120555 => 'κ',
4683
+ 120556 => 'λ',
4684
+ 120557 => 'μ',
4685
+ 120558 => 'ν',
4686
+ 120559 => 'ξ',
4687
+ 120560 => 'ο',
4688
+ 120561 => 'π',
4689
+ 120562 => 'ρ',
4690
+ 120563 => 'θ',
4691
+ 120564 => 'σ',
4692
+ 120565 => 'τ',
4693
+ 120566 => 'υ',
4694
+ 120567 => 'φ',
4695
+ 120568 => 'χ',
4696
+ 120569 => 'ψ',
4697
+ 120570 => 'ω',
4698
+ 120571 => '∇',
4699
+ 120572 => 'α',
4700
+ 120573 => 'β',
4701
+ 120574 => 'γ',
4702
+ 120575 => 'δ',
4703
+ 120576 => 'ε',
4704
+ 120577 => 'ζ',
4705
+ 120578 => 'η',
4706
+ 120579 => 'θ',
4707
+ 120580 => 'ι',
4708
+ 120581 => 'κ',
4709
+ 120582 => 'λ',
4710
+ 120583 => 'μ',
4711
+ 120584 => 'ν',
4712
+ 120585 => 'ξ',
4713
+ 120586 => 'ο',
4714
+ 120587 => 'π',
4715
+ 120588 => 'ρ',
4716
+ 120589 => 'σ',
4717
+ 120590 => 'σ',
4718
+ 120591 => 'τ',
4719
+ 120592 => 'υ',
4720
+ 120593 => 'φ',
4721
+ 120594 => 'χ',
4722
+ 120595 => 'ψ',
4723
+ 120596 => 'ω',
4724
+ 120597 => '∂',
4725
+ 120598 => 'ε',
4726
+ 120599 => 'θ',
4727
+ 120600 => 'κ',
4728
+ 120601 => 'φ',
4729
+ 120602 => 'ρ',
4730
+ 120603 => 'π',
4731
+ 120604 => 'α',
4732
+ 120605 => 'β',
4733
+ 120606 => 'γ',
4734
+ 120607 => 'δ',
4735
+ 120608 => 'ε',
4736
+ 120609 => 'ζ',
4737
+ 120610 => 'η',
4738
+ 120611 => 'θ',
4739
+ 120612 => 'ι',
4740
+ 120613 => 'κ',
4741
+ 120614 => 'λ',
4742
+ 120615 => 'μ',
4743
+ 120616 => 'ν',
4744
+ 120617 => 'ξ',
4745
+ 120618 => 'ο',
4746
+ 120619 => 'π',
4747
+ 120620 => 'ρ',
4748
+ 120621 => 'θ',
4749
+ 120622 => 'σ',
4750
+ 120623 => 'τ',
4751
+ 120624 => 'υ',
4752
+ 120625 => 'φ',
4753
+ 120626 => 'χ',
4754
+ 120627 => 'ψ',
4755
+ 120628 => 'ω',
4756
+ 120629 => '∇',
4757
+ 120630 => 'α',
4758
+ 120631 => 'β',
4759
+ 120632 => 'γ',
4760
+ 120633 => 'δ',
4761
+ 120634 => 'ε',
4762
+ 120635 => 'ζ',
4763
+ 120636 => 'η',
4764
+ 120637 => 'θ',
4765
+ 120638 => 'ι',
4766
+ 120639 => 'κ',
4767
+ 120640 => 'λ',
4768
+ 120641 => 'μ',
4769
+ 120642 => 'ν',
4770
+ 120643 => 'ξ',
4771
+ 120644 => 'ο',
4772
+ 120645 => 'π',
4773
+ 120646 => 'ρ',
4774
+ 120647 => 'σ',
4775
+ 120648 => 'σ',
4776
+ 120649 => 'τ',
4777
+ 120650 => 'υ',
4778
+ 120651 => 'φ',
4779
+ 120652 => 'χ',
4780
+ 120653 => 'ψ',
4781
+ 120654 => 'ω',
4782
+ 120655 => '∂',
4783
+ 120656 => 'ε',
4784
+ 120657 => 'θ',
4785
+ 120658 => 'κ',
4786
+ 120659 => 'φ',
4787
+ 120660 => 'ρ',
4788
+ 120661 => 'π',
4789
+ 120662 => 'α',
4790
+ 120663 => 'β',
4791
+ 120664 => 'γ',
4792
+ 120665 => 'δ',
4793
+ 120666 => 'ε',
4794
+ 120667 => 'ζ',
4795
+ 120668 => 'η',
4796
+ 120669 => 'θ',
4797
+ 120670 => 'ι',
4798
+ 120671 => 'κ',
4799
+ 120672 => 'λ',
4800
+ 120673 => 'μ',
4801
+ 120674 => 'ν',
4802
+ 120675 => 'ξ',
4803
+ 120676 => 'ο',
4804
+ 120677 => 'π',
4805
+ 120678 => 'ρ',
4806
+ 120679 => 'θ',
4807
+ 120680 => 'σ',
4808
+ 120681 => 'τ',
4809
+ 120682 => 'υ',
4810
+ 120683 => 'φ',
4811
+ 120684 => 'χ',
4812
+ 120685 => 'ψ',
4813
+ 120686 => 'ω',
4814
+ 120687 => '∇',
4815
+ 120688 => 'α',
4816
+ 120689 => 'β',
4817
+ 120690 => 'γ',
4818
+ 120691 => 'δ',
4819
+ 120692 => 'ε',
4820
+ 120693 => 'ζ',
4821
+ 120694 => 'η',
4822
+ 120695 => 'θ',
4823
+ 120696 => 'ι',
4824
+ 120697 => 'κ',
4825
+ 120698 => 'λ',
4826
+ 120699 => 'μ',
4827
+ 120700 => 'ν',
4828
+ 120701 => 'ξ',
4829
+ 120702 => 'ο',
4830
+ 120703 => 'π',
4831
+ 120704 => 'ρ',
4832
+ 120705 => 'σ',
4833
+ 120706 => 'σ',
4834
+ 120707 => 'τ',
4835
+ 120708 => 'υ',
4836
+ 120709 => 'φ',
4837
+ 120710 => 'χ',
4838
+ 120711 => 'ψ',
4839
+ 120712 => 'ω',
4840
+ 120713 => '∂',
4841
+ 120714 => 'ε',
4842
+ 120715 => 'θ',
4843
+ 120716 => 'κ',
4844
+ 120717 => 'φ',
4845
+ 120718 => 'ρ',
4846
+ 120719 => 'π',
4847
+ 120720 => 'α',
4848
+ 120721 => 'β',
4849
+ 120722 => 'γ',
4850
+ 120723 => 'δ',
4851
+ 120724 => 'ε',
4852
+ 120725 => 'ζ',
4853
+ 120726 => 'η',
4854
+ 120727 => 'θ',
4855
+ 120728 => 'ι',
4856
+ 120729 => 'κ',
4857
+ 120730 => 'λ',
4858
+ 120731 => 'μ',
4859
+ 120732 => 'ν',
4860
+ 120733 => 'ξ',
4861
+ 120734 => 'ο',
4862
+ 120735 => 'π',
4863
+ 120736 => 'ρ',
4864
+ 120737 => 'θ',
4865
+ 120738 => 'σ',
4866
+ 120739 => 'τ',
4867
+ 120740 => 'υ',
4868
+ 120741 => 'φ',
4869
+ 120742 => 'χ',
4870
+ 120743 => 'ψ',
4871
+ 120744 => 'ω',
4872
+ 120745 => '∇',
4873
+ 120746 => 'α',
4874
+ 120747 => 'β',
4875
+ 120748 => 'γ',
4876
+ 120749 => 'δ',
4877
+ 120750 => 'ε',
4878
+ 120751 => 'ζ',
4879
+ 120752 => 'η',
4880
+ 120753 => 'θ',
4881
+ 120754 => 'ι',
4882
+ 120755 => 'κ',
4883
+ 120756 => 'λ',
4884
+ 120757 => 'μ',
4885
+ 120758 => 'ν',
4886
+ 120759 => 'ξ',
4887
+ 120760 => 'ο',
4888
+ 120761 => 'π',
4889
+ 120762 => 'ρ',
4890
+ 120763 => 'σ',
4891
+ 120764 => 'σ',
4892
+ 120765 => 'τ',
4893
+ 120766 => 'υ',
4894
+ 120767 => 'φ',
4895
+ 120768 => 'χ',
4896
+ 120769 => 'ψ',
4897
+ 120770 => 'ω',
4898
+ 120771 => '∂',
4899
+ 120772 => 'ε',
4900
+ 120773 => 'θ',
4901
+ 120774 => 'κ',
4902
+ 120775 => 'φ',
4903
+ 120776 => 'ρ',
4904
+ 120777 => 'π',
4905
+ 120778 => 'ϝ',
4906
+ 120779 => 'ϝ',
4907
+ 120782 => '0',
4908
+ 120783 => '1',
4909
+ 120784 => '2',
4910
+ 120785 => '3',
4911
+ 120786 => '4',
4912
+ 120787 => '5',
4913
+ 120788 => '6',
4914
+ 120789 => '7',
4915
+ 120790 => '8',
4916
+ 120791 => '9',
4917
+ 120792 => '0',
4918
+ 120793 => '1',
4919
+ 120794 => '2',
4920
+ 120795 => '3',
4921
+ 120796 => '4',
4922
+ 120797 => '5',
4923
+ 120798 => '6',
4924
+ 120799 => '7',
4925
+ 120800 => '8',
4926
+ 120801 => '9',
4927
+ 120802 => '0',
4928
+ 120803 => '1',
4929
+ 120804 => '2',
4930
+ 120805 => '3',
4931
+ 120806 => '4',
4932
+ 120807 => '5',
4933
+ 120808 => '6',
4934
+ 120809 => '7',
4935
+ 120810 => '8',
4936
+ 120811 => '9',
4937
+ 120812 => '0',
4938
+ 120813 => '1',
4939
+ 120814 => '2',
4940
+ 120815 => '3',
4941
+ 120816 => '4',
4942
+ 120817 => '5',
4943
+ 120818 => '6',
4944
+ 120819 => '7',
4945
+ 120820 => '8',
4946
+ 120821 => '9',
4947
+ 120822 => '0',
4948
+ 120823 => '1',
4949
+ 120824 => '2',
4950
+ 120825 => '3',
4951
+ 120826 => '4',
4952
+ 120827 => '5',
4953
+ 120828 => '6',
4954
+ 120829 => '7',
4955
+ 120830 => '8',
4956
+ 120831 => '9',
4957
+ 125184 => '𞤢',
4958
+ 125185 => '𞤣',
4959
+ 125186 => '𞤤',
4960
+ 125187 => '𞤥',
4961
+ 125188 => '𞤦',
4962
+ 125189 => '𞤧',
4963
+ 125190 => '𞤨',
4964
+ 125191 => '𞤩',
4965
+ 125192 => '𞤪',
4966
+ 125193 => '𞤫',
4967
+ 125194 => '𞤬',
4968
+ 125195 => '𞤭',
4969
+ 125196 => '𞤮',
4970
+ 125197 => '𞤯',
4971
+ 125198 => '𞤰',
4972
+ 125199 => '𞤱',
4973
+ 125200 => '𞤲',
4974
+ 125201 => '𞤳',
4975
+ 125202 => '𞤴',
4976
+ 125203 => '𞤵',
4977
+ 125204 => '𞤶',
4978
+ 125205 => '𞤷',
4979
+ 125206 => '𞤸',
4980
+ 125207 => '𞤹',
4981
+ 125208 => '𞤺',
4982
+ 125209 => '𞤻',
4983
+ 125210 => '𞤼',
4984
+ 125211 => '𞤽',
4985
+ 125212 => '𞤾',
4986
+ 125213 => '𞤿',
4987
+ 125214 => '𞥀',
4988
+ 125215 => '𞥁',
4989
+ 125216 => '𞥂',
4990
+ 125217 => '𞥃',
4991
+ 126464 => 'ا',
4992
+ 126465 => 'ب',
4993
+ 126466 => 'ج',
4994
+ 126467 => 'د',
4995
+ 126469 => 'و',
4996
+ 126470 => 'ز',
4997
+ 126471 => 'ح',
4998
+ 126472 => 'ط',
4999
+ 126473 => 'ي',
5000
+ 126474 => 'ك',
5001
+ 126475 => 'ل',
5002
+ 126476 => 'م',
5003
+ 126477 => 'ن',
5004
+ 126478 => 'س',
5005
+ 126479 => 'ع',
5006
+ 126480 => 'ف',
5007
+ 126481 => 'ص',
5008
+ 126482 => 'ق',
5009
+ 126483 => 'ر',
5010
+ 126484 => 'ش',
5011
+ 126485 => 'ت',
5012
+ 126486 => 'ث',
5013
+ 126487 => 'خ',
5014
+ 126488 => 'ذ',
5015
+ 126489 => 'ض',
5016
+ 126490 => 'ظ',
5017
+ 126491 => 'غ',
5018
+ 126492 => 'ٮ',
5019
+ 126493 => 'ں',
5020
+ 126494 => 'ڡ',
5021
+ 126495 => 'ٯ',
5022
+ 126497 => 'ب',
5023
+ 126498 => 'ج',
5024
+ 126500 => 'ه',
5025
+ 126503 => 'ح',
5026
+ 126505 => 'ي',
5027
+ 126506 => 'ك',
5028
+ 126507 => 'ل',
5029
+ 126508 => 'م',
5030
+ 126509 => 'ن',
5031
+ 126510 => 'س',
5032
+ 126511 => 'ع',
5033
+ 126512 => 'ف',
5034
+ 126513 => 'ص',
5035
+ 126514 => 'ق',
5036
+ 126516 => 'ش',
5037
+ 126517 => 'ت',
5038
+ 126518 => 'ث',
5039
+ 126519 => 'خ',
5040
+ 126521 => 'ض',
5041
+ 126523 => 'غ',
5042
+ 126530 => 'ج',
5043
+ 126535 => 'ح',
5044
+ 126537 => 'ي',
5045
+ 126539 => 'ل',
5046
+ 126541 => 'ن',
5047
+ 126542 => 'س',
5048
+ 126543 => 'ع',
5049
+ 126545 => 'ص',
5050
+ 126546 => 'ق',
5051
+ 126548 => 'ش',
5052
+ 126551 => 'خ',
5053
+ 126553 => 'ض',
5054
+ 126555 => 'غ',
5055
+ 126557 => 'ں',
5056
+ 126559 => 'ٯ',
5057
+ 126561 => 'ب',
5058
+ 126562 => 'ج',
5059
+ 126564 => 'ه',
5060
+ 126567 => 'ح',
5061
+ 126568 => 'ط',
5062
+ 126569 => 'ي',
5063
+ 126570 => 'ك',
5064
+ 126572 => 'م',
5065
+ 126573 => 'ن',
5066
+ 126574 => 'س',
5067
+ 126575 => 'ع',
5068
+ 126576 => 'ف',
5069
+ 126577 => 'ص',
5070
+ 126578 => 'ق',
5071
+ 126580 => 'ش',
5072
+ 126581 => 'ت',
5073
+ 126582 => 'ث',
5074
+ 126583 => 'خ',
5075
+ 126585 => 'ض',
5076
+ 126586 => 'ظ',
5077
+ 126587 => 'غ',
5078
+ 126588 => 'ٮ',
5079
+ 126590 => 'ڡ',
5080
+ 126592 => 'ا',
5081
+ 126593 => 'ب',
5082
+ 126594 => 'ج',
5083
+ 126595 => 'د',
5084
+ 126596 => 'ه',
5085
+ 126597 => 'و',
5086
+ 126598 => 'ز',
5087
+ 126599 => 'ح',
5088
+ 126600 => 'ط',
5089
+ 126601 => 'ي',
5090
+ 126603 => 'ل',
5091
+ 126604 => 'م',
5092
+ 126605 => 'ن',
5093
+ 126606 => 'س',
5094
+ 126607 => 'ع',
5095
+ 126608 => 'ف',
5096
+ 126609 => 'ص',
5097
+ 126610 => 'ق',
5098
+ 126611 => 'ر',
5099
+ 126612 => 'ش',
5100
+ 126613 => 'ت',
5101
+ 126614 => 'ث',
5102
+ 126615 => 'خ',
5103
+ 126616 => 'ذ',
5104
+ 126617 => 'ض',
5105
+ 126618 => 'ظ',
5106
+ 126619 => 'غ',
5107
+ 126625 => 'ب',
5108
+ 126626 => 'ج',
5109
+ 126627 => 'د',
5110
+ 126629 => 'و',
5111
+ 126630 => 'ز',
5112
+ 126631 => 'ح',
5113
+ 126632 => 'ط',
5114
+ 126633 => 'ي',
5115
+ 126635 => 'ل',
5116
+ 126636 => 'م',
5117
+ 126637 => 'ن',
5118
+ 126638 => 'س',
5119
+ 126639 => 'ع',
5120
+ 126640 => 'ف',
5121
+ 126641 => 'ص',
5122
+ 126642 => 'ق',
5123
+ 126643 => 'ر',
5124
+ 126644 => 'ش',
5125
+ 126645 => 'ت',
5126
+ 126646 => 'ث',
5127
+ 126647 => 'خ',
5128
+ 126648 => 'ذ',
5129
+ 126649 => 'ض',
5130
+ 126650 => 'ظ',
5131
+ 126651 => 'غ',
5132
+ 127274 => '〔s〕',
5133
+ 127275 => 'c',
5134
+ 127276 => 'r',
5135
+ 127277 => 'cd',
5136
+ 127278 => 'wz',
5137
+ 127280 => 'a',
5138
+ 127281 => 'b',
5139
+ 127282 => 'c',
5140
+ 127283 => 'd',
5141
+ 127284 => 'e',
5142
+ 127285 => 'f',
5143
+ 127286 => 'g',
5144
+ 127287 => 'h',
5145
+ 127288 => 'i',
5146
+ 127289 => 'j',
5147
+ 127290 => 'k',
5148
+ 127291 => 'l',
5149
+ 127292 => 'm',
5150
+ 127293 => 'n',
5151
+ 127294 => 'o',
5152
+ 127295 => 'p',
5153
+ 127296 => 'q',
5154
+ 127297 => 'r',
5155
+ 127298 => 's',
5156
+ 127299 => 't',
5157
+ 127300 => 'u',
5158
+ 127301 => 'v',
5159
+ 127302 => 'w',
5160
+ 127303 => 'x',
5161
+ 127304 => 'y',
5162
+ 127305 => 'z',
5163
+ 127306 => 'hv',
5164
+ 127307 => 'mv',
5165
+ 127308 => 'sd',
5166
+ 127309 => 'ss',
5167
+ 127310 => 'ppv',
5168
+ 127311 => 'wc',
5169
+ 127338 => 'mc',
5170
+ 127339 => 'md',
5171
+ 127340 => 'mr',
5172
+ 127376 => 'dj',
5173
+ 127488 => 'ほか',
5174
+ 127489 => 'ココ',
5175
+ 127490 => 'サ',
5176
+ 127504 => '手',
5177
+ 127505 => '字',
5178
+ 127506 => '双',
5179
+ 127507 => 'デ',
5180
+ 127508 => '二',
5181
+ 127509 => '多',
5182
+ 127510 => '解',
5183
+ 127511 => '天',
5184
+ 127512 => '交',
5185
+ 127513 => '映',
5186
+ 127514 => '無',
5187
+ 127515 => '料',
5188
+ 127516 => '前',
5189
+ 127517 => '後',
5190
+ 127518 => '再',
5191
+ 127519 => '新',
5192
+ 127520 => '初',
5193
+ 127521 => '終',
5194
+ 127522 => '生',
5195
+ 127523 => '販',
5196
+ 127524 => '声',
5197
+ 127525 => '吹',
5198
+ 127526 => '演',
5199
+ 127527 => '投',
5200
+ 127528 => '捕',
5201
+ 127529 => '一',
5202
+ 127530 => '三',
5203
+ 127531 => '遊',
5204
+ 127532 => '左',
5205
+ 127533 => '中',
5206
+ 127534 => '右',
5207
+ 127535 => '指',
5208
+ 127536 => '走',
5209
+ 127537 => '打',
5210
+ 127538 => '禁',
5211
+ 127539 => '空',
5212
+ 127540 => '合',
5213
+ 127541 => '満',
5214
+ 127542 => '有',
5215
+ 127543 => '月',
5216
+ 127544 => '申',
5217
+ 127545 => '割',
5218
+ 127546 => '営',
5219
+ 127547 => '配',
5220
+ 127552 => '〔本〕',
5221
+ 127553 => '〔三〕',
5222
+ 127554 => '〔二〕',
5223
+ 127555 => '〔安〕',
5224
+ 127556 => '〔点〕',
5225
+ 127557 => '〔打〕',
5226
+ 127558 => '〔盗〕',
5227
+ 127559 => '〔勝〕',
5228
+ 127560 => '〔敗〕',
5229
+ 127568 => '得',
5230
+ 127569 => '可',
5231
+ 130032 => '0',
5232
+ 130033 => '1',
5233
+ 130034 => '2',
5234
+ 130035 => '3',
5235
+ 130036 => '4',
5236
+ 130037 => '5',
5237
+ 130038 => '6',
5238
+ 130039 => '7',
5239
+ 130040 => '8',
5240
+ 130041 => '9',
5241
+ 194560 => '丽',
5242
+ 194561 => '丸',
5243
+ 194562 => '乁',
5244
+ 194563 => '𠄢',
5245
+ 194564 => '你',
5246
+ 194565 => '侮',
5247
+ 194566 => '侻',
5248
+ 194567 => '倂',
5249
+ 194568 => '偺',
5250
+ 194569 => '備',
5251
+ 194570 => '僧',
5252
+ 194571 => '像',
5253
+ 194572 => '㒞',
5254
+ 194573 => '𠘺',
5255
+ 194574 => '免',
5256
+ 194575 => '兔',
5257
+ 194576 => '兤',
5258
+ 194577 => '具',
5259
+ 194578 => '𠔜',
5260
+ 194579 => '㒹',
5261
+ 194580 => '內',
5262
+ 194581 => '再',
5263
+ 194582 => '𠕋',
5264
+ 194583 => '冗',
5265
+ 194584 => '冤',
5266
+ 194585 => '仌',
5267
+ 194586 => '冬',
5268
+ 194587 => '况',
5269
+ 194588 => '𩇟',
5270
+ 194589 => '凵',
5271
+ 194590 => '刃',
5272
+ 194591 => '㓟',
5273
+ 194592 => '刻',
5274
+ 194593 => '剆',
5275
+ 194594 => '割',
5276
+ 194595 => '剷',
5277
+ 194596 => '㔕',
5278
+ 194597 => '勇',
5279
+ 194598 => '勉',
5280
+ 194599 => '勤',
5281
+ 194600 => '勺',
5282
+ 194601 => '包',
5283
+ 194602 => '匆',
5284
+ 194603 => '北',
5285
+ 194604 => '卉',
5286
+ 194605 => '卑',
5287
+ 194606 => '博',
5288
+ 194607 => '即',
5289
+ 194608 => '卽',
5290
+ 194609 => '卿',
5291
+ 194610 => '卿',
5292
+ 194611 => '卿',
5293
+ 194612 => '𠨬',
5294
+ 194613 => '灰',
5295
+ 194614 => '及',
5296
+ 194615 => '叟',
5297
+ 194616 => '𠭣',
5298
+ 194617 => '叫',
5299
+ 194618 => '叱',
5300
+ 194619 => '吆',
5301
+ 194620 => '咞',
5302
+ 194621 => '吸',
5303
+ 194622 => '呈',
5304
+ 194623 => '周',
5305
+ 194624 => '咢',
5306
+ 194625 => '哶',
5307
+ 194626 => '唐',
5308
+ 194627 => '啓',
5309
+ 194628 => '啣',
5310
+ 194629 => '善',
5311
+ 194630 => '善',
5312
+ 194631 => '喙',
5313
+ 194632 => '喫',
5314
+ 194633 => '喳',
5315
+ 194634 => '嗂',
5316
+ 194635 => '圖',
5317
+ 194636 => '嘆',
5318
+ 194637 => '圗',
5319
+ 194638 => '噑',
5320
+ 194639 => '噴',
5321
+ 194640 => '切',
5322
+ 194641 => '壮',
5323
+ 194642 => '城',
5324
+ 194643 => '埴',
5325
+ 194644 => '堍',
5326
+ 194645 => '型',
5327
+ 194646 => '堲',
5328
+ 194647 => '報',
5329
+ 194648 => '墬',
5330
+ 194649 => '𡓤',
5331
+ 194650 => '売',
5332
+ 194651 => '壷',
5333
+ 194652 => '夆',
5334
+ 194653 => '多',
5335
+ 194654 => '夢',
5336
+ 194655 => '奢',
5337
+ 194656 => '𡚨',
5338
+ 194657 => '𡛪',
5339
+ 194658 => '姬',
5340
+ 194659 => '娛',
5341
+ 194660 => '娧',
5342
+ 194661 => '姘',
5343
+ 194662 => '婦',
5344
+ 194663 => '㛮',
5345
+ 194665 => '嬈',
5346
+ 194666 => '嬾',
5347
+ 194667 => '嬾',
5348
+ 194668 => '𡧈',
5349
+ 194669 => '寃',
5350
+ 194670 => '寘',
5351
+ 194671 => '寧',
5352
+ 194672 => '寳',
5353
+ 194673 => '𡬘',
5354
+ 194674 => '寿',
5355
+ 194675 => '将',
5356
+ 194677 => '尢',
5357
+ 194678 => '㞁',
5358
+ 194679 => '屠',
5359
+ 194680 => '屮',
5360
+ 194681 => '峀',
5361
+ 194682 => '岍',
5362
+ 194683 => '𡷤',
5363
+ 194684 => '嵃',
5364
+ 194685 => '𡷦',
5365
+ 194686 => '嵮',
5366
+ 194687 => '嵫',
5367
+ 194688 => '嵼',
5368
+ 194689 => '巡',
5369
+ 194690 => '巢',
5370
+ 194691 => '㠯',
5371
+ 194692 => '巽',
5372
+ 194693 => '帨',
5373
+ 194694 => '帽',
5374
+ 194695 => '幩',
5375
+ 194696 => '㡢',
5376
+ 194697 => '𢆃',
5377
+ 194698 => '㡼',
5378
+ 194699 => '庰',
5379
+ 194700 => '庳',
5380
+ 194701 => '庶',
5381
+ 194702 => '廊',
5382
+ 194703 => '𪎒',
5383
+ 194704 => '廾',
5384
+ 194705 => '𢌱',
5385
+ 194706 => '𢌱',
5386
+ 194707 => '舁',
5387
+ 194708 => '弢',
5388
+ 194709 => '弢',
5389
+ 194710 => '㣇',
5390
+ 194711 => '𣊸',
5391
+ 194712 => '𦇚',
5392
+ 194713 => '形',
5393
+ 194714 => '彫',
5394
+ 194715 => '㣣',
5395
+ 194716 => '徚',
5396
+ 194717 => '忍',
5397
+ 194718 => '志',
5398
+ 194719 => '忹',
5399
+ 194720 => '悁',
5400
+ 194721 => '㤺',
5401
+ 194722 => '㤜',
5402
+ 194723 => '悔',
5403
+ 194724 => '𢛔',
5404
+ 194725 => '惇',
5405
+ 194726 => '慈',
5406
+ 194727 => '慌',
5407
+ 194728 => '慎',
5408
+ 194729 => '慌',
5409
+ 194730 => '慺',
5410
+ 194731 => '憎',
5411
+ 194732 => '憲',
5412
+ 194733 => '憤',
5413
+ 194734 => '憯',
5414
+ 194735 => '懞',
5415
+ 194736 => '懲',
5416
+ 194737 => '懶',
5417
+ 194738 => '成',
5418
+ 194739 => '戛',
5419
+ 194740 => '扝',
5420
+ 194741 => '抱',
5421
+ 194742 => '拔',
5422
+ 194743 => '捐',
5423
+ 194744 => '𢬌',
5424
+ 194745 => '挽',
5425
+ 194746 => '拼',
5426
+ 194747 => '捨',
5427
+ 194748 => '掃',
5428
+ 194749 => '揤',
5429
+ 194750 => '𢯱',
5430
+ 194751 => '搢',
5431
+ 194752 => '揅',
5432
+ 194753 => '掩',
5433
+ 194754 => '㨮',
5434
+ 194755 => '摩',
5435
+ 194756 => '摾',
5436
+ 194757 => '撝',
5437
+ 194758 => '摷',
5438
+ 194759 => '㩬',
5439
+ 194760 => '敏',
5440
+ 194761 => '敬',
5441
+ 194762 => '𣀊',
5442
+ 194763 => '旣',
5443
+ 194764 => '書',
5444
+ 194765 => '晉',
5445
+ 194766 => '㬙',
5446
+ 194767 => '暑',
5447
+ 194768 => '㬈',
5448
+ 194769 => '㫤',
5449
+ 194770 => '冒',
5450
+ 194771 => '冕',
5451
+ 194772 => '最',
5452
+ 194773 => '暜',
5453
+ 194774 => '肭',
5454
+ 194775 => '䏙',
5455
+ 194776 => '朗',
5456
+ 194777 => '望',
5457
+ 194778 => '朡',
5458
+ 194779 => '杞',
5459
+ 194780 => '杓',
5460
+ 194781 => '𣏃',
5461
+ 194782 => '㭉',
5462
+ 194783 => '柺',
5463
+ 194784 => '枅',
5464
+ 194785 => '桒',
5465
+ 194786 => '梅',
5466
+ 194787 => '𣑭',
5467
+ 194788 => '梎',
5468
+ 194789 => '栟',
5469
+ 194790 => '椔',
5470
+ 194791 => '㮝',
5471
+ 194792 => '楂',
5472
+ 194793 => '榣',
5473
+ 194794 => '槪',
5474
+ 194795 => '檨',
5475
+ 194796 => '𣚣',
5476
+ 194797 => '櫛',
5477
+ 194798 => '㰘',
5478
+ 194799 => '次',
5479
+ 194800 => '𣢧',
5480
+ 194801 => '歔',
5481
+ 194802 => '㱎',
5482
+ 194803 => '歲',
5483
+ 194804 => '殟',
5484
+ 194805 => '殺',
5485
+ 194806 => '殻',
5486
+ 194807 => '𣪍',
5487
+ 194808 => '𡴋',
5488
+ 194809 => '𣫺',
5489
+ 194810 => '汎',
5490
+ 194811 => '𣲼',
5491
+ 194812 => '沿',
5492
+ 194813 => '泍',
5493
+ 194814 => '汧',
5494
+ 194815 => '洖',
5495
+ 194816 => '派',
5496
+ 194817 => '海',
5497
+ 194818 => '流',
5498
+ 194819 => '浩',
5499
+ 194820 => '浸',
5500
+ 194821 => '涅',
5501
+ 194822 => '𣴞',
5502
+ 194823 => '洴',
5503
+ 194824 => '港',
5504
+ 194825 => '湮',
5505
+ 194826 => '㴳',
5506
+ 194827 => '滋',
5507
+ 194828 => '滇',
5508
+ 194829 => '𣻑',
5509
+ 194830 => '淹',
5510
+ 194831 => '潮',
5511
+ 194832 => '𣽞',
5512
+ 194833 => '𣾎',
5513
+ 194834 => '濆',
5514
+ 194835 => '瀹',
5515
+ 194836 => '瀞',
5516
+ 194837 => '瀛',
5517
+ 194838 => '㶖',
5518
+ 194839 => '灊',
5519
+ 194840 => '災',
5520
+ 194841 => '灷',
5521
+ 194842 => '炭',
5522
+ 194843 => '𠔥',
5523
+ 194844 => '煅',
5524
+ 194845 => '𤉣',
5525
+ 194846 => '熜',
5526
+ 194848 => '爨',
5527
+ 194849 => '爵',
5528
+ 194850 => '牐',
5529
+ 194851 => '𤘈',
5530
+ 194852 => '犀',
5531
+ 194853 => '犕',
5532
+ 194854 => '𤜵',
5533
+ 194855 => '𤠔',
5534
+ 194856 => '獺',
5535
+ 194857 => '王',
5536
+ 194858 => '㺬',
5537
+ 194859 => '玥',
5538
+ 194860 => '㺸',
5539
+ 194861 => '㺸',
5540
+ 194862 => '瑇',
5541
+ 194863 => '瑜',
5542
+ 194864 => '瑱',
5543
+ 194865 => '璅',
5544
+ 194866 => '瓊',
5545
+ 194867 => '㼛',
5546
+ 194868 => '甤',
5547
+ 194869 => '𤰶',
5548
+ 194870 => '甾',
5549
+ 194871 => '𤲒',
5550
+ 194872 => '異',
5551
+ 194873 => '𢆟',
5552
+ 194874 => '瘐',
5553
+ 194875 => '𤾡',
5554
+ 194876 => '𤾸',
5555
+ 194877 => '𥁄',
5556
+ 194878 => '㿼',
5557
+ 194879 => '䀈',
5558
+ 194880 => '直',
5559
+ 194881 => '𥃳',
5560
+ 194882 => '𥃲',
5561
+ 194883 => '𥄙',
5562
+ 194884 => '𥄳',
5563
+ 194885 => '眞',
5564
+ 194886 => '真',
5565
+ 194887 => '真',
5566
+ 194888 => '睊',
5567
+ 194889 => '䀹',
5568
+ 194890 => '瞋',
5569
+ 194891 => '䁆',
5570
+ 194892 => '䂖',
5571
+ 194893 => '𥐝',
5572
+ 194894 => '硎',
5573
+ 194895 => '碌',
5574
+ 194896 => '磌',
5575
+ 194897 => '䃣',
5576
+ 194898 => '𥘦',
5577
+ 194899 => '祖',
5578
+ 194900 => '𥚚',
5579
+ 194901 => '𥛅',
5580
+ 194902 => '福',
5581
+ 194903 => '秫',
5582
+ 194904 => '䄯',
5583
+ 194905 => '穀',
5584
+ 194906 => '穊',
5585
+ 194907 => '穏',
5586
+ 194908 => '𥥼',
5587
+ 194909 => '𥪧',
5588
+ 194910 => '𥪧',
5589
+ 194912 => '䈂',
5590
+ 194913 => '𥮫',
5591
+ 194914 => '篆',
5592
+ 194915 => '築',
5593
+ 194916 => '䈧',
5594
+ 194917 => '𥲀',
5595
+ 194918 => '糒',
5596
+ 194919 => '䊠',
5597
+ 194920 => '糨',
5598
+ 194921 => '糣',
5599
+ 194922 => '紀',
5600
+ 194923 => '𥾆',
5601
+ 194924 => '絣',
5602
+ 194925 => '䌁',
5603
+ 194926 => '緇',
5604
+ 194927 => '縂',
5605
+ 194928 => '繅',
5606
+ 194929 => '䌴',
5607
+ 194930 => '𦈨',
5608
+ 194931 => '𦉇',
5609
+ 194932 => '䍙',
5610
+ 194933 => '𦋙',
5611
+ 194934 => '罺',
5612
+ 194935 => '𦌾',
5613
+ 194936 => '羕',
5614
+ 194937 => '翺',
5615
+ 194938 => '者',
5616
+ 194939 => '𦓚',
5617
+ 194940 => '𦔣',
5618
+ 194941 => '聠',
5619
+ 194942 => '𦖨',
5620
+ 194943 => '聰',
5621
+ 194944 => '𣍟',
5622
+ 194945 => '䏕',
5623
+ 194946 => '育',
5624
+ 194947 => '脃',
5625
+ 194948 => '䐋',
5626
+ 194949 => '脾',
5627
+ 194950 => '媵',
5628
+ 194951 => '𦞧',
5629
+ 194952 => '𦞵',
5630
+ 194953 => '𣎓',
5631
+ 194954 => '𣎜',
5632
+ 194955 => '舁',
5633
+ 194956 => '舄',
5634
+ 194957 => '辞',
5635
+ 194958 => '䑫',
5636
+ 194959 => '芑',
5637
+ 194960 => '芋',
5638
+ 194961 => '芝',
5639
+ 194962 => '劳',
5640
+ 194963 => '花',
5641
+ 194964 => '芳',
5642
+ 194965 => '芽',
5643
+ 194966 => '苦',
5644
+ 194967 => '𦬼',
5645
+ 194968 => '若',
5646
+ 194969 => '茝',
5647
+ 194970 => '荣',
5648
+ 194971 => '莭',
5649
+ 194972 => '茣',
5650
+ 194973 => '莽',
5651
+ 194974 => '菧',
5652
+ 194975 => '著',
5653
+ 194976 => '荓',
5654
+ 194977 => '菊',
5655
+ 194978 => '菌',
5656
+ 194979 => '菜',
5657
+ 194980 => '𦰶',
5658
+ 194981 => '𦵫',
5659
+ 194982 => '𦳕',
5660
+ 194983 => '䔫',
5661
+ 194984 => '蓱',
5662
+ 194985 => '蓳',
5663
+ 194986 => '蔖',
5664
+ 194987 => '𧏊',
5665
+ 194988 => '蕤',
5666
+ 194989 => '𦼬',
5667
+ 194990 => '䕝',
5668
+ 194991 => '䕡',
5669
+ 194992 => '𦾱',
5670
+ 194993 => '𧃒',
5671
+ 194994 => '䕫',
5672
+ 194995 => '虐',
5673
+ 194996 => '虜',
5674
+ 194997 => '虧',
5675
+ 194998 => '虩',
5676
+ 194999 => '蚩',
5677
+ 195000 => '蚈',
5678
+ 195001 => '蜎',
5679
+ 195002 => '蛢',
5680
+ 195003 => '蝹',
5681
+ 195004 => '蜨',
5682
+ 195005 => '蝫',
5683
+ 195006 => '螆',
5684
+ 195008 => '蟡',
5685
+ 195009 => '蠁',
5686
+ 195010 => '䗹',
5687
+ 195011 => '衠',
5688
+ 195012 => '衣',
5689
+ 195013 => '𧙧',
5690
+ 195014 => '裗',
5691
+ 195015 => '裞',
5692
+ 195016 => '䘵',
5693
+ 195017 => '裺',
5694
+ 195018 => '㒻',
5695
+ 195019 => '𧢮',
5696
+ 195020 => '𧥦',
5697
+ 195021 => '䚾',
5698
+ 195022 => '䛇',
5699
+ 195023 => '誠',
5700
+ 195024 => '諭',
5701
+ 195025 => '變',
5702
+ 195026 => '豕',
5703
+ 195027 => '𧲨',
5704
+ 195028 => '貫',
5705
+ 195029 => '賁',
5706
+ 195030 => '贛',
5707
+ 195031 => '起',
5708
+ 195032 => '𧼯',
5709
+ 195033 => '𠠄',
5710
+ 195034 => '跋',
5711
+ 195035 => '趼',
5712
+ 195036 => '跰',
5713
+ 195037 => '𠣞',
5714
+ 195038 => '軔',
5715
+ 195039 => '輸',
5716
+ 195040 => '𨗒',
5717
+ 195041 => '𨗭',
5718
+ 195042 => '邔',
5719
+ 195043 => '郱',
5720
+ 195044 => '鄑',
5721
+ 195045 => '𨜮',
5722
+ 195046 => '鄛',
5723
+ 195047 => '鈸',
5724
+ 195048 => '鋗',
5725
+ 195049 => '鋘',
5726
+ 195050 => '鉼',
5727
+ 195051 => '鏹',
5728
+ 195052 => '鐕',
5729
+ 195053 => '𨯺',
5730
+ 195054 => '開',
5731
+ 195055 => '䦕',
5732
+ 195056 => '閷',
5733
+ 195057 => '𨵷',
5734
+ 195058 => '䧦',
5735
+ 195059 => '雃',
5736
+ 195060 => '嶲',
5737
+ 195061 => '霣',
5738
+ 195062 => '𩅅',
5739
+ 195063 => '𩈚',
5740
+ 195064 => '䩮',
5741
+ 195065 => '䩶',
5742
+ 195066 => '韠',
5743
+ 195067 => '𩐊',
5744
+ 195068 => '䪲',
5745
+ 195069 => '𩒖',
5746
+ 195070 => '頋',
5747
+ 195071 => '頋',
5748
+ 195072 => '頩',
5749
+ 195073 => '𩖶',
5750
+ 195074 => '飢',
5751
+ 195075 => '䬳',
5752
+ 195076 => '餩',
5753
+ 195077 => '馧',
5754
+ 195078 => '駂',
5755
+ 195079 => '駾',
5756
+ 195080 => '䯎',
5757
+ 195081 => '𩬰',
5758
+ 195082 => '鬒',
5759
+ 195083 => '鱀',
5760
+ 195084 => '鳽',
5761
+ 195085 => '䳎',
5762
+ 195086 => '䳭',
5763
+ 195087 => '鵧',
5764
+ 195088 => '𪃎',
5765
+ 195089 => '䳸',
5766
+ 195090 => '𪄅',
5767
+ 195091 => '𪈎',
5768
+ 195092 => '𪊑',
5769
+ 195093 => '麻',
5770
+ 195094 => '䵖',
5771
+ 195095 => '黹',
5772
+ 195096 => '黾',
5773
+ 195097 => '鼅',
5774
+ 195098 => '鼏',
5775
+ 195099 => '鼖',
5776
+ 195100 => '鼻',
5777
+ 195101 => '𪘀',
5778
+ );
vendor/symfony/polyfill-intl-idn/Resources/unidata/virama.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return array (
4
+ 2381 => 9,
5
+ 2509 => 9,
6
+ 2637 => 9,
7
+ 2765 => 9,
8
+ 2893 => 9,
9
+ 3021 => 9,
10
+ 3149 => 9,
11
+ 3277 => 9,
12
+ 3387 => 9,
13
+ 3388 => 9,
14
+ 3405 => 9,
15
+ 3530 => 9,
16
+ 3642 => 9,
17
+ 3770 => 9,
18
+ 3972 => 9,
19
+ 4153 => 9,
20
+ 4154 => 9,
21
+ 5908 => 9,
22
+ 5940 => 9,
23
+ 6098 => 9,
24
+ 6752 => 9,
25
+ 6980 => 9,
26
+ 7082 => 9,
27
+ 7083 => 9,
28
+ 7154 => 9,
29
+ 7155 => 9,
30
+ 11647 => 9,
31
+ 43014 => 9,
32
+ 43052 => 9,
33
+ 43204 => 9,
34
+ 43347 => 9,
35
+ 43456 => 9,
36
+ 43766 => 9,
37
+ 44013 => 9,
38
+ 68159 => 9,
39
+ 69702 => 9,
40
+ 69759 => 9,
41
+ 69817 => 9,
42
+ 69939 => 9,
43
+ 69940 => 9,
44
+ 70080 => 9,
45
+ 70197 => 9,
46
+ 70378 => 9,
47
+ 70477 => 9,
48
+ 70722 => 9,
49
+ 70850 => 9,
50
+ 71103 => 9,
51
+ 71231 => 9,
52
+ 71350 => 9,
53
+ 71467 => 9,
54
+ 71737 => 9,
55
+ 71997 => 9,
56
+ 71998 => 9,
57
+ 72160 => 9,
58
+ 72244 => 9,
59
+ 72263 => 9,
60
+ 72345 => 9,
61
+ 72767 => 9,
62
+ 73028 => 9,
63
+ 73029 => 9,
64
+ 73111 => 9,
65
+ );
vendor/symfony/polyfill-intl-idn/bootstrap.php ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ use Symfony\Polyfill\Intl\Idn as p;
13
+
14
+ if (extension_loaded('intl')) {
15
+ return;
16
+ }
17
+
18
+ if (!defined('U_IDNA_PROHIBITED_ERROR')) {
19
+ define('U_IDNA_PROHIBITED_ERROR', 66560);
20
+ }
21
+ if (!defined('U_IDNA_ERROR_START')) {
22
+ define('U_IDNA_ERROR_START', 66560);
23
+ }
24
+ if (!defined('U_IDNA_UNASSIGNED_ERROR')) {
25
+ define('U_IDNA_UNASSIGNED_ERROR', 66561);
26
+ }
27
+ if (!defined('U_IDNA_CHECK_BIDI_ERROR')) {
28
+ define('U_IDNA_CHECK_BIDI_ERROR', 66562);
29
+ }
30
+ if (!defined('U_IDNA_STD3_ASCII_RULES_ERROR')) {
31
+ define('U_IDNA_STD3_ASCII_RULES_ERROR', 66563);
32
+ }
33
+ if (!defined('U_IDNA_ACE_PREFIX_ERROR')) {
34
+ define('U_IDNA_ACE_PREFIX_ERROR', 66564);
35
+ }
36
+ if (!defined('U_IDNA_VERIFICATION_ERROR')) {
37
+ define('U_IDNA_VERIFICATION_ERROR', 66565);
38
+ }
39
+ if (!defined('U_IDNA_LABEL_TOO_LONG_ERROR')) {
40
+ define('U_IDNA_LABEL_TOO_LONG_ERROR', 66566);
41
+ }
42
+ if (!defined('U_IDNA_ZERO_LENGTH_LABEL_ERROR')) {
43
+ define('U_IDNA_ZERO_LENGTH_LABEL_ERROR', 66567);
44
+ }
45
+ if (!defined('U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR')) {
46
+ define('U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR', 66568);
47
+ }
48
+ if (!defined('U_IDNA_ERROR_LIMIT')) {
49
+ define('U_IDNA_ERROR_LIMIT', 66569);
50
+ }
51
+ if (!defined('U_STRINGPREP_PROHIBITED_ERROR')) {
52
+ define('U_STRINGPREP_PROHIBITED_ERROR', 66560);
53
+ }
54
+ if (!defined('U_STRINGPREP_UNASSIGNED_ERROR')) {
55
+ define('U_STRINGPREP_UNASSIGNED_ERROR', 66561);
56
+ }
57
+ if (!defined('U_STRINGPREP_CHECK_BIDI_ERROR')) {
58
+ define('U_STRINGPREP_CHECK_BIDI_ERROR', 66562);
59
+ }
60
+ if (!defined('IDNA_DEFAULT')) {
61
+ define('IDNA_DEFAULT', 0);
62
+ }
63
+ if (!defined('IDNA_ALLOW_UNASSIGNED')) {
64
+ define('IDNA_ALLOW_UNASSIGNED', 1);
65
+ }
66
+ if (!defined('IDNA_USE_STD3_RULES')) {
67
+ define('IDNA_USE_STD3_RULES', 2);
68
+ }
69
+ if (!defined('IDNA_CHECK_BIDI')) {
70
+ define('IDNA_CHECK_BIDI', 4);
71
+ }
72
+ if (!defined('IDNA_CHECK_CONTEXTJ')) {
73
+ define('IDNA_CHECK_CONTEXTJ', 8);
74
+ }
75
+ if (!defined('IDNA_NONTRANSITIONAL_TO_ASCII')) {
76
+ define('IDNA_NONTRANSITIONAL_TO_ASCII', 16);
77
+ }
78
+ if (!defined('IDNA_NONTRANSITIONAL_TO_UNICODE')) {
79
+ define('IDNA_NONTRANSITIONAL_TO_UNICODE', 32);
80
+ }
81
+ if (!defined('INTL_IDNA_VARIANT_2003')) {
82
+ define('INTL_IDNA_VARIANT_2003', 0);
83
+ }
84
+ if (!defined('INTL_IDNA_VARIANT_UTS46')) {
85
+ define('INTL_IDNA_VARIANT_UTS46', 1);
86
+ }
87
+ if (!defined('IDNA_ERROR_EMPTY_LABEL')) {
88
+ define('IDNA_ERROR_EMPTY_LABEL', 1);
89
+ }
90
+ if (!defined('IDNA_ERROR_LABEL_TOO_LONG')) {
91
+ define('IDNA_ERROR_LABEL_TOO_LONG', 2);
92
+ }
93
+ if (!defined('IDNA_ERROR_DOMAIN_NAME_TOO_LONG')) {
94
+ define('IDNA_ERROR_DOMAIN_NAME_TOO_LONG', 4);
95
+ }
96
+ if (!defined('IDNA_ERROR_LEADING_HYPHEN')) {
97
+ define('IDNA_ERROR_LEADING_HYPHEN', 8);
98
+ }
99
+ if (!defined('IDNA_ERROR_TRAILING_HYPHEN')) {
100
+ define('IDNA_ERROR_TRAILING_HYPHEN', 16);
101
+ }
102
+ if (!defined('IDNA_ERROR_HYPHEN_3_4')) {
103
+ define('IDNA_ERROR_HYPHEN_3_4', 32);
104
+ }
105
+ if (!defined('IDNA_ERROR_LEADING_COMBINING_MARK')) {
106
+ define('IDNA_ERROR_LEADING_COMBINING_MARK', 64);
107
+ }
108
+ if (!defined('IDNA_ERROR_DISALLOWED')) {
109
+ define('IDNA_ERROR_DISALLOWED', 128);
110
+ }
111
+ if (!defined('IDNA_ERROR_PUNYCODE')) {
112
+ define('IDNA_ERROR_PUNYCODE', 256);
113
+ }
114
+ if (!defined('IDNA_ERROR_LABEL_HAS_DOT')) {
115
+ define('IDNA_ERROR_LABEL_HAS_DOT', 512);
116
+ }
117
+ if (!defined('IDNA_ERROR_INVALID_ACE_LABEL')) {
118
+ define('IDNA_ERROR_INVALID_ACE_LABEL', 1024);
119
+ }
120
+ if (!defined('IDNA_ERROR_BIDI')) {
121
+ define('IDNA_ERROR_BIDI', 2048);
122
+ }
123
+ if (!defined('IDNA_ERROR_CONTEXTJ')) {
124
+ define('IDNA_ERROR_CONTEXTJ', 4096);
125
+ }
126
+
127
+ if (PHP_VERSION_ID < 70400) {
128
+ if (!function_exists('idn_to_ascii')) {
129
+ function idn_to_ascii($domain, $options = IDNA_DEFAULT, $variant = INTL_IDNA_VARIANT_2003, &$idna_info = array()) { return p\Idn::idn_to_ascii($domain, $options, $variant, $idna_info); }
130
+ }
131
+ if (!function_exists('idn_to_utf8')) {
132
+ function idn_to_utf8($domain, $options = IDNA_DEFAULT, $variant = INTL_IDNA_VARIANT_2003, &$idna_info = array()) { return p\Idn::idn_to_utf8($domain, $options, $variant, $idna_info); }
133
+ }
134
+ } else {
135
+ if (!function_exists('idn_to_ascii')) {
136
+ function idn_to_ascii($domain, $options = IDNA_DEFAULT, $variant = INTL_IDNA_VARIANT_UTS46, &$idna_info = array()) { return p\Idn::idn_to_ascii($domain, $options, $variant, $idna_info); }
137
+ }
138
+ if (!function_exists('idn_to_utf8')) {
139
+ function idn_to_utf8($domain, $options = IDNA_DEFAULT, $variant = INTL_IDNA_VARIANT_UTS46, &$idna_info = array()) { return p\Idn::idn_to_utf8($domain, $options, $variant, $idna_info); }
140
+ }
141
+ }
vendor/symfony/polyfill-intl-normalizer/Normalizer.php ADDED
@@ -0,0 +1,308 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Symfony\Polyfill\Intl\Normalizer;
13
+
14
+ /**
15
+ * Normalizer is a PHP fallback implementation of the Normalizer class provided by the intl extension.
16
+ *
17
+ * It has been validated with Unicode 6.3 Normalization Conformance Test.
18
+ * See http://www.unicode.org/reports/tr15/ for detailed info about Unicode normalizations.
19
+ *
20
+ * @author Nicolas Grekas <p@tchwork.com>
21
+ *
22
+ * @internal
23
+ */
24
+ class Normalizer
25
+ {
26
+ const FORM_D = \Normalizer::FORM_D;
27
+ const FORM_KD = \Normalizer::FORM_KD;
28
+ const FORM_C = \Normalizer::FORM_C;
29
+ const FORM_KC = \Normalizer::FORM_KC;
30
+ const NFD = \Normalizer::NFD;
31
+ const NFKD = \Normalizer::NFKD;
32
+ const NFC = \Normalizer::NFC;
33
+ const NFKC = \Normalizer::NFKC;
34
+
35
+ private static $C;
36
+ private static $D;
37
+ private static $KD;
38
+ private static $cC;
39
+ private static $ulenMask = array("\xC0" => 2, "\xD0" => 2, "\xE0" => 3, "\xF0" => 4);
40
+ private static $ASCII = "\x20\x65\x69\x61\x73\x6E\x74\x72\x6F\x6C\x75\x64\x5D\x5B\x63\x6D\x70\x27\x0A\x67\x7C\x68\x76\x2E\x66\x62\x2C\x3A\x3D\x2D\x71\x31\x30\x43\x32\x2A\x79\x78\x29\x28\x4C\x39\x41\x53\x2F\x50\x22\x45\x6A\x4D\x49\x6B\x33\x3E\x35\x54\x3C\x44\x34\x7D\x42\x7B\x38\x46\x77\x52\x36\x37\x55\x47\x4E\x3B\x4A\x7A\x56\x23\x48\x4F\x57\x5F\x26\x21\x4B\x3F\x58\x51\x25\x59\x5C\x09\x5A\x2B\x7E\x5E\x24\x40\x60\x7F\x00\x01\x02\x03\x04\x05\x06\x07\x08\x0B\x0C\x0D\x0E\x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F";
41
+
42
+ public static function isNormalized($s, $form = self::NFC)
43
+ {
44
+ if (!\in_array($form, array(self::NFD, self::NFKD, self::NFC, self::NFKC))) {
45
+ return false;
46
+ }
47
+ $s = (string) $s;
48
+ if (!isset($s[strspn($s, self::$ASCII)])) {
49
+ return true;
50
+ }
51
+ if (self::NFC == $form && preg_match('//u', $s) && !preg_match('/[^\x00-\x{2FF}]/u', $s)) {
52
+ return true;
53
+ }
54
+
55
+ return self::normalize($s, $form) === $s;
56
+ }
57
+
58
+ public static function normalize($s, $form = self::NFC)
59
+ {
60
+ $s = (string) $s;
61
+ if (!preg_match('//u', $s)) {
62
+ return false;
63
+ }
64
+
65
+ switch ($form) {
66
+ case self::NFC: $C = true; $K = false; break;
67
+ case self::NFD: $C = false; $K = false; break;
68
+ case self::NFKC: $C = true; $K = true; break;
69
+ case self::NFKD: $C = false; $K = true; break;
70
+ default:
71
+ if (\defined('Normalizer::NONE') && \Normalizer::NONE == $form) {
72
+ return $s;
73
+ }
74
+
75
+ return false;
76
+ }
77
+
78
+ if ('' === $s) {
79
+ return '';
80
+ }
81
+
82
+ if ($K && null === self::$KD) {
83
+ self::$KD = self::getData('compatibilityDecomposition');
84
+ }
85
+
86
+ if (null === self::$D) {
87
+ self::$D = self::getData('canonicalDecomposition');
88
+ self::$cC = self::getData('combiningClass');
89
+ }
90
+
91
+ if (null !== $mbEncoding = (2 /* MB_OVERLOAD_STRING */ & (int) ini_get('mbstring.func_overload')) ? mb_internal_encoding() : null) {
92
+ mb_internal_encoding('8bit');
93
+ }
94
+
95
+ $r = self::decompose($s, $K);
96
+
97
+ if ($C) {
98
+ if (null === self::$C) {
99
+ self::$C = self::getData('canonicalComposition');
100
+ }
101
+
102
+ $r = self::recompose($r);
103
+ }
104
+ if (null !== $mbEncoding) {
105
+ mb_internal_encoding($mbEncoding);
106
+ }
107
+
108
+ return $r;
109
+ }
110
+
111
+ private static function recompose($s)
112
+ {
113
+ $ASCII = self::$ASCII;
114
+ $compMap = self::$C;
115
+ $combClass = self::$cC;
116
+ $ulenMask = self::$ulenMask;
117
+
118
+ $result = $tail = '';
119
+
120
+ $i = $s[0] < "\x80" ? 1 : $ulenMask[$s[0] & "\xF0"];
121
+ $len = \strlen($s);
122
+
123
+ $lastUchr = substr($s, 0, $i);
124
+ $lastUcls = isset($combClass[$lastUchr]) ? 256 : 0;
125
+
126
+ while ($i < $len) {
127
+ if ($s[$i] < "\x80") {
128
+ // ASCII chars
129
+
130
+ if ($tail) {
131
+ $lastUchr .= $tail;
132
+ $tail = '';
133
+ }
134
+
135
+ if ($j = strspn($s, $ASCII, $i + 1)) {
136
+ $lastUchr .= substr($s, $i, $j);
137
+ $i += $j;
138
+ }
139
+
140
+ $result .= $lastUchr;
141
+ $lastUchr = $s[$i];
142
+ $lastUcls = 0;
143
+ ++$i;
144
+ continue;
145
+ }
146
+
147
+ $ulen = $ulenMask[$s[$i] & "\xF0"];
148
+ $uchr = substr($s, $i, $ulen);
149
+
150
+ if ($lastUchr < "\xE1\x84\x80" || "\xE1\x84\x92" < $lastUchr
151
+ || $uchr < "\xE1\x85\xA1" || "\xE1\x85\xB5" < $uchr
152
+ || $lastUcls) {
153
+ // Table lookup and combining chars composition
154
+
155
+ $ucls = isset($combClass[$uchr]) ? $combClass[$uchr] : 0;
156
+
157
+ if (isset($compMap[$lastUchr.$uchr]) && (!$lastUcls || $lastUcls < $ucls)) {
158
+ $lastUchr = $compMap[$lastUchr.$uchr];
159
+ } elseif ($lastUcls = $ucls) {
160
+ $tail .= $uchr;
161
+ } else {
162
+ if ($tail) {
163
+ $lastUchr .= $tail;
164
+ $tail = '';
165
+ }
166
+
167
+ $result .= $lastUchr;
168
+ $lastUchr = $uchr;
169
+ }
170
+ } else {
171
+ // Hangul chars
172
+
173
+ $L = \ord($lastUchr[2]) - 0x80;
174
+ $V = \ord($uchr[2]) - 0xA1;
175
+ $T = 0;
176
+
177
+ $uchr = substr($s, $i + $ulen, 3);
178
+
179
+ if ("\xE1\x86\xA7" <= $uchr && $uchr <= "\xE1\x87\x82") {
180
+ $T = \ord($uchr[2]) - 0xA7;
181
+ 0 > $T && $T += 0x40;
182
+ $ulen += 3;
183
+ }
184
+
185
+ $L = 0xAC00 + ($L * 21 + $V) * 28 + $T;
186
+ $lastUchr = \chr(0xE0 | $L >> 12).\chr(0x80 | $L >> 6 & 0x3F).\chr(0x80 | $L & 0x3F);
187
+ }
188
+
189
+ $i += $ulen;
190
+ }
191
+
192
+ return $result.$lastUchr.$tail;
193
+ }
194
+
195
+ private static function decompose($s, $c)
196
+ {
197
+ $result = '';
198
+
199
+ $ASCII = self::$ASCII;
200
+ $decompMap = self::$D;
201
+ $combClass = self::$cC;
202
+ $ulenMask = self::$ulenMask;
203
+ if ($c) {
204
+ $compatMap = self::$KD;
205
+ }
206
+
207
+ $c = array();
208
+ $i = 0;
209
+ $len = \strlen($s);
210
+
211
+ while ($i < $len) {
212
+ if ($s[$i] < "\x80") {
213
+ // ASCII chars
214
+
215
+ if ($c) {
216
+ ksort($c);
217
+ $result .= implode('', $c);
218
+ $c = array();
219
+ }
220
+
221
+ $j = 1 + strspn($s, $ASCII, $i + 1);
222
+ $result .= substr($s, $i, $j);
223
+ $i += $j;
224
+ continue;
225
+ }
226
+
227
+ $ulen = $ulenMask[$s[$i] & "\xF0"];
228
+ $uchr = substr($s, $i, $ulen);
229
+ $i += $ulen;
230
+
231
+ if ($uchr < "\xEA\xB0\x80" || "\xED\x9E\xA3" < $uchr) {
232
+ // Table lookup
233
+
234
+ if ($uchr !== $j = isset($compatMap[$uchr]) ? $compatMap[$uchr] : (isset($decompMap[$uchr]) ? $decompMap[$uchr] : $uchr)) {
235
+ $uchr = $j;
236
+
237
+ $j = \strlen($uchr);
238
+ $ulen = $uchr[0] < "\x80" ? 1 : $ulenMask[$uchr[0] & "\xF0"];
239
+
240
+ if ($ulen != $j) {
241
+ // Put trailing chars in $s
242
+
243
+ $j -= $ulen;
244
+ $i -= $j;
245
+
246
+ if (0 > $i) {
247
+ $s = str_repeat(' ', -$i).$s;
248
+ $len -= $i;
249
+ $i = 0;
250
+ }
251
+
252
+ while ($j--) {
253
+ $s[$i + $j] = $uchr[$ulen + $j];
254
+ }
255
+
256
+ $uchr = substr($uchr, 0, $ulen);
257
+ }
258
+ }
259
+ if (isset($combClass[$uchr])) {
260
+ // Combining chars, for sorting
261
+
262
+ if (!isset($c[$combClass[$uchr]])) {
263
+ $c[$combClass[$uchr]] = '';
264
+ }
265
+ $c[$combClass[$uchr]] .= $uchr;
266
+ continue;
267
+ }
268
+ } else {
269
+ // Hangul chars
270
+
271
+ $uchr = unpack('C*', $uchr);
272
+ $j = (($uchr[1] - 224) << 12) + (($uchr[2] - 128) << 6) + $uchr[3] - 0xAC80;
273
+
274
+ $uchr = "\xE1\x84".\chr(0x80 + (int) ($j / 588))
275
+ ."\xE1\x85".\chr(0xA1 + (int) (($j % 588) / 28));
276
+
277
+ if ($j %= 28) {
278
+ $uchr .= $j < 25
279
+ ? ("\xE1\x86".\chr(0xA7 + $j))
280
+ : ("\xE1\x87".\chr(0x67 + $j));
281
+ }
282
+ }
283
+ if ($c) {
284
+ ksort($c);
285
+ $result .= implode('', $c);
286
+ $c = array();
287
+ }
288
+
289
+ $result .= $uchr;
290
+ }
291
+
292
+ if ($c) {
293
+ ksort($c);
294
+ $result .= implode('', $c);
295
+ }
296
+
297
+ return $result;
298
+ }
299
+
300
+ private static function getData($file)
301
+ {
302
+ if (file_exists($file = __DIR__.'/Resources/unidata/'.$file.'.php')) {
303
+ return require $file;
304
+ }
305
+
306
+ return false;
307
+ }
308
+ }
vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Normalizer extends Symfony\Polyfill\Intl\Normalizer\Normalizer
4
+ {
5
+ /**
6
+ * @deprecated since ICU 56 and removed in PHP 8
7
+ */
8
+ const NONE = 1;
9
+ const FORM_D = 2;
10
+ const FORM_KD = 3;
11
+ const FORM_C = 4;
12
+ const FORM_KC = 5;
13
+ const NFD = 2;
14
+ const NFKD = 3;
15
+ const NFC = 4;
16
+ const NFKC = 5;
17
+ }
vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php ADDED
@@ -0,0 +1,945 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return array (
4
+ 'À' => 'À',
5
+ 'Á' => 'Á',
6
+ 'Â' => 'Â',
7
+ 'Ã' => 'Ã',
8
+ 'Ä' => 'Ä',
9
+ 'Å' => 'Å',
10
+ 'Ç' => 'Ç',
11
+ 'È' => 'È',
12
+ 'É' => 'É',
13
+ 'Ê' => 'Ê',
14
+ 'Ë' => 'Ë',
15
+ 'Ì' => 'Ì',
16
+ 'Í' => 'Í',
17
+ 'Î' => 'Î',
18
+ 'Ï' => 'Ï',
19
+ 'Ñ' => 'Ñ',
20
+ 'Ò' => 'Ò',
21
+ 'Ó' => 'Ó',
22
+ 'Ô' => 'Ô',
23
+ 'Õ' => 'Õ',
24
+ 'Ö' => 'Ö',
25
+ 'Ù' => 'Ù',
26
+ 'Ú' => 'Ú',
27
+ 'Û' => 'Û',
28
+ 'Ü' => 'Ü',
29
+ 'Ý' => 'Ý',
30
+ 'à' => 'à',
31
+ 'á' => 'á',
32
+ 'â' => 'â',
33
+ 'ã' => 'ã',
34
+ 'ä' => 'ä',
35
+ 'å' => 'å',
36
+ 'ç' => 'ç',
37
+ 'è' => 'è',
38
+ 'é' => 'é',
39
+ 'ê' => 'ê',
40
+ 'ë' => 'ë',
41
+ 'ì' => 'ì',
42
+ 'í' => 'í',
43
+ 'î' => 'î',
44
+ 'ï' => 'ï',
45
+ 'ñ' => 'ñ',
46
+ 'ò' => 'ò',
47
+ 'ó' => 'ó',
48
+ 'ô' => 'ô',
49
+ 'õ' => 'õ',
50
+ 'ö' => 'ö',
51
+ 'ù' => 'ù',
52
+ 'ú' => 'ú',
53
+ 'û' => 'û',
54
+ 'ü' => 'ü',
55
+ 'ý' => 'ý',
56
+ 'ÿ' => 'ÿ',
57
+ 'Ā' => 'Ā',
58
+ 'ā' => 'ā',
59
+ 'Ă' => 'Ă',
60
+ 'ă' => 'ă',
61
+ 'Ą' => 'Ą',
62
+ 'ą' => 'ą',
63
+ 'Ć' => 'Ć',
64
+ 'ć' => 'ć',
65
+ 'Ĉ' => 'Ĉ',
66
+ 'ĉ' => 'ĉ',
67
+ 'Ċ' => 'Ċ',
68
+ 'ċ' => 'ċ',
69
+ 'Č' => 'Č',
70
+ 'č' => 'č',
71
+ 'Ď' => 'Ď',
72
+ 'ď' => 'ď',
73
+ 'Ē' => 'Ē',
74
+ 'ē' => 'ē',
75
+ 'Ĕ' => 'Ĕ',
76
+ 'ĕ' => 'ĕ',
77
+ 'Ė' => 'Ė',
78
+ 'ė' => 'ė',
79
+ 'Ę' => 'Ę',
80
+ 'ę' => 'ę',
81
+ 'Ě' => 'Ě',
82
+ 'ě' => 'ě',
83
+ 'Ĝ' => 'Ĝ',
84
+ 'ĝ' => 'ĝ',
85
+ 'Ğ' => 'Ğ',
86
+ 'ğ' => 'ğ',
87
+ 'Ġ' => 'Ġ',
88
+ 'ġ' => 'ġ',
89
+ 'Ģ' => 'Ģ',
90
+ 'ģ' => 'ģ',
91
+ 'Ĥ' => 'Ĥ',
92
+ 'ĥ' => 'ĥ',
93
+ 'Ĩ' => 'Ĩ',
94
+ 'ĩ' => 'ĩ',
95
+ 'Ī' => 'Ī',
96
+ 'ī' => 'ī',
97
+ 'Ĭ' => 'Ĭ',
98
+ 'ĭ' => 'ĭ',
99
+ 'Į' => 'Į',
100
+ 'į' => 'į',
101
+ 'İ' => 'İ',
102
+ 'Ĵ' => 'Ĵ',
103
+ 'ĵ' => 'ĵ',
104
+ 'Ķ' => 'Ķ',
105
+ 'ķ' => 'ķ',
106
+ 'Ĺ' => 'Ĺ',
107
+ 'ĺ' => 'ĺ',
108
+ 'Ļ' => 'Ļ',
109
+ 'ļ' => 'ļ',
110
+ 'Ľ' => 'Ľ',
111
+ 'ľ' => 'ľ',
112
+ 'Ń' => 'Ń',
113
+ 'ń' => 'ń',
114
+ 'Ņ' => 'Ņ',
115
+ 'ņ' => 'ņ',
116
+ 'Ň' => 'Ň',
117
+ 'ň' => 'ň',
118
+ 'Ō' => 'Ō',
119
+ 'ō' => 'ō',
120
+ 'Ŏ' => 'Ŏ',
121
+ 'ŏ' => 'ŏ',
122
+ 'Ő' => 'Ő',
123
+ 'ő' => 'ő',
124
+ 'Ŕ' => 'Ŕ',
125
+ 'ŕ' => 'ŕ',
126
+ 'Ŗ' => 'Ŗ',
127
+ 'ŗ' => 'ŗ',
128
+ 'Ř' => 'Ř',
129
+ 'ř' => 'ř',
130
+ 'Ś' => 'Ś',
131
+ 'ś' => 'ś',
132
+ 'Ŝ' => 'Ŝ',
133
+ 'ŝ' => 'ŝ',
134
+ 'Ş' => 'Ş',
135
+ 'ş' => 'ş',
136
+ 'Š' => 'Š',
137
+ 'š' => 'š',
138
+ 'Ţ' => 'Ţ',
139
+ 'ţ' => 'ţ',
140
+ 'Ť' => 'Ť',
141
+ 'ť' => 'ť',
142
+ 'Ũ' => 'Ũ',
143
+ 'ũ' => 'ũ',
144
+ 'Ū' => 'Ū',
145
+ 'ū' => 'ū',
146
+ 'Ŭ' => 'Ŭ',
147
+ 'ŭ' => 'ŭ',
148
+ 'Ů' => 'Ů',
149
+ 'ů' => 'ů',
150
+ 'Ű' => 'Ű',
151
+ 'ű' => 'ű',
152
+ 'Ų' => 'Ų',
153
+ 'ų' => 'ų',
154
+ 'Ŵ' => 'Ŵ',
155
+ 'ŵ' => 'ŵ',
156
+ 'Ŷ' => 'Ŷ',
157
+ 'ŷ' => 'ŷ',
158
+ 'Ÿ' => 'Ÿ',
159
+ 'Ź' => 'Ź',
160
+ 'ź' => 'ź',
161
+ 'Ż' => 'Ż',
162
+ 'ż' => 'ż',
163
+ 'Ž' => 'Ž',
164
+ 'ž' => 'ž',
165
+ 'Ơ' => 'Ơ',
166
+ 'ơ' => 'ơ',
167
+ 'Ư' => 'Ư',
168
+ 'ư' => 'ư',
169
+ 'Ǎ' => 'Ǎ',
170
+ 'ǎ' => 'ǎ',
171
+ 'Ǐ' => 'Ǐ',
172
+ 'ǐ' => 'ǐ',
173
+ 'Ǒ' => 'Ǒ',
174
+ 'ǒ' => 'ǒ',
175
+ 'Ǔ' => 'Ǔ',
176
+ 'ǔ' => 'ǔ',
177
+ 'Ǖ' => 'Ǖ',
178
+ 'ǖ' => 'ǖ',
179
+ 'Ǘ' => 'Ǘ',
180
+ 'ǘ' => 'ǘ',
181
+ 'Ǚ' => 'Ǚ',
182
+ 'ǚ' => 'ǚ',
183
+ 'Ǜ' => 'Ǜ',
184
+ 'ǜ' => 'ǜ',
185
+ 'Ǟ' => 'Ǟ',
186
+ 'ǟ' => 'ǟ',
187
+ 'Ǡ' => 'Ǡ',
188
+ 'ǡ' => 'ǡ',
189
+ 'Ǣ' => 'Ǣ',
190
+ 'ǣ' => 'ǣ',
191
+ 'Ǧ' => 'Ǧ',
192
+ 'ǧ' => 'ǧ',
193
+ 'Ǩ' => 'Ǩ',
194
+ 'ǩ' => 'ǩ',
195
+ 'Ǫ' => 'Ǫ',
196
+ 'ǫ' => 'ǫ',
197
+ 'Ǭ' => 'Ǭ',
198
+ 'ǭ' => 'ǭ',
199
+ 'Ǯ' => 'Ǯ',
200
+ 'ǯ' => 'ǯ',
201
+ 'ǰ' => 'ǰ',
202
+ 'Ǵ' => 'Ǵ',
203
+ 'ǵ' => 'ǵ',
204
+ 'Ǹ' => 'Ǹ',
205
+ 'ǹ' => 'ǹ',
206
+ 'Ǻ' => 'Ǻ',
207
+ 'ǻ' => 'ǻ',
208
+ 'Ǽ' => 'Ǽ',
209
+ 'ǽ' => 'ǽ',
210
+ 'Ǿ' => 'Ǿ',
211
+ 'ǿ' => 'ǿ',
212
+ 'Ȁ' => 'Ȁ',
213
+ 'ȁ' => 'ȁ',
214
+ 'Ȃ' => 'Ȃ',
215
+ 'ȃ' => 'ȃ',
216
+ 'Ȅ' => 'Ȅ',
217
+ 'ȅ' => 'ȅ',
218
+ 'Ȇ' => 'Ȇ',
219
+ 'ȇ' => 'ȇ',
220
+ 'Ȉ' => 'Ȉ',
221
+ 'ȉ' => 'ȉ',
222
+ 'Ȋ' => 'Ȋ',
223
+ 'ȋ' => 'ȋ',
224
+ 'Ȍ' => 'Ȍ',
225
+ 'ȍ' => 'ȍ',
226
+ 'Ȏ' => 'Ȏ',
227
+ 'ȏ' => 'ȏ',
228
+ 'Ȑ' => 'Ȑ',
229
+ 'ȑ' => 'ȑ',
230
+ 'Ȓ' => 'Ȓ',
231
+ 'ȓ' => 'ȓ',
232
+ 'Ȕ' => 'Ȕ',
233
+ 'ȕ' => 'ȕ',
234
+ 'Ȗ' => 'Ȗ',
235
+ 'ȗ' => 'ȗ',
236
+ 'Ș' => 'Ș',
237
+ 'ș' => 'ș',
238
+ 'Ț' => 'Ț',
239
+ 'ț' => 'ț',
240
+ 'Ȟ' => 'Ȟ',
241
+ 'ȟ' => 'ȟ',
242
+ 'Ȧ' => 'Ȧ',
243
+ 'ȧ' => 'ȧ',
244
+ 'Ȩ' => 'Ȩ',
245
+ 'ȩ' => 'ȩ',
246
+ 'Ȫ' => 'Ȫ',
247
+ 'ȫ' => 'ȫ',
248
+ 'Ȭ' => 'Ȭ',
249
+ 'ȭ' => 'ȭ',
250
+ 'Ȯ' => 'Ȯ',
251
+ 'ȯ' => 'ȯ',
252
+ 'Ȱ' => 'Ȱ',
253
+ 'ȱ' => 'ȱ',
254
+ 'Ȳ' => 'Ȳ',
255
+ 'ȳ' => 'ȳ',
256
+ '΅' => '΅',
257
+ 'Ά' => 'Ά',
258
+ 'Έ' => 'Έ',
259
+ 'Ή' => 'Ή',
260
+ 'Ί' => 'Ί',
261
+ 'Ό' => 'Ό',
262
+ 'Ύ' => 'Ύ',
263
+ 'Ώ' => 'Ώ',
264
+ 'ΐ' => 'ΐ',
265
+ 'Ϊ' => 'Ϊ',
266
+ 'Ϋ' => 'Ϋ',
267
+ 'ά' => 'ά',
268
+ 'έ' => 'έ',
269
+ 'ή' => 'ή',
270
+ 'ί' => 'ί',
271
+ 'ΰ' => 'ΰ',
272
+ 'ϊ' => 'ϊ',
273
+ 'ϋ' => 'ϋ',
274
+ 'ό' => 'ό',
275
+ 'ύ' => 'ύ',
276
+ 'ώ' => 'ώ',
277
+ 'ϓ' => 'ϓ',
278
+ 'ϔ' => 'ϔ',
279
+ 'Ѐ' => 'Ѐ',
280
+ 'Ё' => 'Ё',
281
+ 'Ѓ' => 'Ѓ',
282
+ 'Ї' => 'Ї',
283
+ 'Ќ' => 'Ќ',
284
+ 'Ѝ' => 'Ѝ',
285
+ 'Ў' => 'Ў',
286
+ 'Й' => 'Й',
287
+ 'й' => 'й',
288
+ 'ѐ' => 'ѐ',
289
+ 'ё' => 'ё',
290
+ 'ѓ' => 'ѓ',
291
+ 'ї' => 'ї',
292
+ 'ќ' => 'ќ',
293
+ 'ѝ' => 'ѝ',
294
+ 'ў' => 'ў',
295
+ 'Ѷ' => 'Ѷ',
296
+ 'ѷ' => 'ѷ',
297
+ 'Ӂ' => 'Ӂ',
298
+ 'ӂ' => 'ӂ',
299
+ 'Ӑ' => 'Ӑ',
300
+ 'ӑ' => 'ӑ',
301
+ 'Ӓ' => 'Ӓ',
302
+ 'ӓ' => 'ӓ',
303
+ 'Ӗ' => 'Ӗ',
304
+ 'ӗ' => 'ӗ',
305
+ 'Ӛ' => 'Ӛ',
306
+ 'ӛ' => 'ӛ',
307
+ 'Ӝ' => 'Ӝ',
308
+ 'ӝ' => 'ӝ',
309
+ 'Ӟ' => 'Ӟ',
310
+ 'ӟ' => 'ӟ',
311
+ 'Ӣ' => 'Ӣ',
312
+ 'ӣ' => 'ӣ',
313
+ 'Ӥ' => 'Ӥ',
314
+ 'ӥ' => 'ӥ',
315
+ 'Ӧ' => 'Ӧ',
316
+ 'ӧ' => 'ӧ',
317
+ 'Ӫ' => 'Ӫ',
318
+ 'ӫ' => 'ӫ',
319
+ 'Ӭ' => 'Ӭ',
320
+ 'ӭ' => 'ӭ',
321
+ 'Ӯ' => 'Ӯ',
322
+ 'ӯ' => 'ӯ',
323
+ 'Ӱ' => 'Ӱ',
324
+ 'ӱ' => 'ӱ',
325
+ 'Ӳ' => 'Ӳ',
326
+ 'ӳ' => 'ӳ',
327
+ 'Ӵ' => 'Ӵ',
328
+ 'ӵ' => 'ӵ',
329
+ 'Ӹ' => 'Ӹ',
330
+ 'ӹ' => 'ӹ',
331
+ 'آ' => 'آ',
332
+ 'أ' => 'أ',
333
+ 'ؤ' => 'ؤ',
334
+ 'إ' => 'إ',
335
+ 'ئ' => 'ئ',
336
+ 'ۀ' => 'ۀ',
337
+ 'ۂ' => 'ۂ',
338
+ 'ۓ' => 'ۓ',
339
+ 'ऩ' => 'ऩ',
340
+ 'ऱ' => 'ऱ',
341
+ 'ऴ' => 'ऴ',
342
+ 'ো' => 'ো',
343
+ 'ৌ' => 'ৌ',
344
+ 'ୈ' => 'ୈ',
345
+ 'ୋ' => 'ୋ',
346
+ 'ୌ' => 'ୌ',
347
+ 'ஔ' => 'ஔ',
348
+ 'ொ' => 'ொ',
349
+ 'ோ' => 'ோ',
350
+ 'ௌ' => 'ௌ',
351
+ 'ై' => 'ై',
352
+ 'ೀ' => 'ೀ',
353
+ 'ೇ' => 'ೇ',
354
+ 'ೈ' => 'ೈ',
355
+ 'ೊ' => 'ೊ',
356
+ 'ೋ' => 'ೋ',
357
+ 'ൊ' => 'ൊ',
358
+ 'ോ' => 'ോ',
359
+ 'ൌ' => 'ൌ',
360
+ 'ේ' => 'ේ',
361
+ 'ො' => 'ො',
362
+ 'ෝ' => 'ෝ',
363
+ 'ෞ' => 'ෞ',
364
+ 'ဦ' => 'ဦ',
365
+ 'ᬆ' => 'ᬆ',
366
+ 'ᬈ' => 'ᬈ',
367
+ 'ᬊ' => 'ᬊ',
368
+ 'ᬌ' => 'ᬌ',
369
+ 'ᬎ' => 'ᬎ',
370
+ 'ᬒ' => 'ᬒ',
371
+ 'ᬻ' => 'ᬻ',
372
+ 'ᬽ' => 'ᬽ',
373
+ 'ᭀ' => 'ᭀ',
374
+ 'ᭁ' => 'ᭁ',
375
+ 'ᭃ' => 'ᭃ',
376
+ 'Ḁ' => 'Ḁ',
377
+ 'ḁ' => 'ḁ',
378
+ 'Ḃ' => 'Ḃ',
379
+ 'ḃ' => 'ḃ',
380
+ 'Ḅ' => 'Ḅ',
381
+ 'ḅ' => 'ḅ',
382
+ 'Ḇ' => 'Ḇ',
383
+ 'ḇ' => 'ḇ',
384
+ 'Ḉ' => 'Ḉ',
385
+ 'ḉ' => 'ḉ',
386
+ 'Ḋ' => 'Ḋ',
387
+ 'ḋ' => 'ḋ',
388
+ 'Ḍ' => 'Ḍ',
389
+ 'ḍ' => 'ḍ',
390
+ 'Ḏ' => 'Ḏ',
391
+ 'ḏ' => 'ḏ',
392
+ 'Ḑ' => 'Ḑ',
393
+ 'ḑ' => 'ḑ',
394
+ 'Ḓ' => 'Ḓ',
395
+ 'ḓ' => 'ḓ',
396
+ 'Ḕ' => 'Ḕ',
397
+ 'ḕ' => 'ḕ',
398
+ 'Ḗ' => 'Ḗ',
399
+ 'ḗ' => 'ḗ',
400
+ 'Ḙ' => 'Ḙ',
401
+ 'ḙ' => 'ḙ',
402
+ 'Ḛ' => 'Ḛ',
403
+ 'ḛ' => 'ḛ',
404
+ 'Ḝ' => 'Ḝ',
405
+ 'ḝ' => 'ḝ',
406
+ 'Ḟ' => 'Ḟ',
407
+ 'ḟ' => 'ḟ',
408
+ 'Ḡ' => 'Ḡ',
409
+ 'ḡ' => 'ḡ',
410
+ 'Ḣ' => 'Ḣ',
411
+ 'ḣ' => 'ḣ',
412
+ 'Ḥ' => 'Ḥ',
413
+ 'ḥ' => 'ḥ',
414
+ 'Ḧ' => 'Ḧ',
415
+ 'ḧ' => 'ḧ',
416
+ 'Ḩ' => 'Ḩ',
417
+ 'ḩ' => 'ḩ',
418
+ 'Ḫ' => 'Ḫ',
419
+ 'ḫ' => 'ḫ',
420
+ 'Ḭ' => 'Ḭ',
421
+ 'ḭ' => 'ḭ',
422
+ 'Ḯ' => 'Ḯ',
423
+ 'ḯ' => 'ḯ',
424
+ 'Ḱ' => 'Ḱ',
425
+ 'ḱ' => 'ḱ',
426
+ 'Ḳ' => 'Ḳ',
427
+ 'ḳ' => 'ḳ',
428
+ 'Ḵ' => 'Ḵ',
429
+ 'ḵ' => 'ḵ',
430
+ 'Ḷ' => 'Ḷ',
431
+ 'ḷ' => 'ḷ',
432
+ 'Ḹ' => 'Ḹ',
433
+ 'ḹ' => 'ḹ',
434
+ 'Ḻ' => 'Ḻ',
435
+ 'ḻ' => 'ḻ',
436
+ 'Ḽ' => 'Ḽ',
437
+ 'ḽ' => 'ḽ',
438
+ 'Ḿ' => 'Ḿ',
439
+ 'ḿ' => 'ḿ',
440
+ 'Ṁ' => 'Ṁ',
441
+ 'ṁ' => 'ṁ',
442
+ 'Ṃ' => 'Ṃ',
443
+ 'ṃ' => 'ṃ',
444
+ 'Ṅ' => 'Ṅ',
445
+ 'ṅ' => 'ṅ',
446
+ 'Ṇ' => 'Ṇ',
447
+ 'ṇ' => 'ṇ',
448
+ 'Ṉ' => 'Ṉ',
449
+ 'ṉ' => 'ṉ',
450
+ 'Ṋ' => 'Ṋ',
451
+ 'ṋ' => 'ṋ',
452
+ 'Ṍ' => 'Ṍ',
453
+ 'ṍ' => 'ṍ',
454
+ 'Ṏ' => 'Ṏ',
455
+ 'ṏ' => 'ṏ',
456
+ 'Ṑ' => 'Ṑ',
457
+ 'ṑ' => 'ṑ',
458
+ 'Ṓ' => 'Ṓ',
459
+ 'ṓ' => 'ṓ',
460
+ 'Ṕ' => 'Ṕ',
461
+ 'ṕ' => 'ṕ',
462
+ 'Ṗ' => 'Ṗ',
463
+ 'ṗ' => 'ṗ',
464
+ 'Ṙ' => 'Ṙ',
465
+ 'ṙ' => 'ṙ',
466
+ 'Ṛ' => 'Ṛ',
467
+ 'ṛ' => 'ṛ',
468
+ 'Ṝ' => 'Ṝ',
469
+ 'ṝ' => 'ṝ',
470
+ 'Ṟ' => 'Ṟ',
471
+ 'ṟ' => 'ṟ',
472
+ 'Ṡ' => 'Ṡ',
473
+ 'ṡ' => 'ṡ',
474
+ 'Ṣ' => 'Ṣ',
475
+ 'ṣ' => 'ṣ',
476
+ 'Ṥ' => 'Ṥ',
477
+ 'ṥ' => 'ṥ',
478
+ 'Ṧ' => 'Ṧ',
479
+ 'ṧ' => 'ṧ',
480
+ 'Ṩ' => 'Ṩ',
481
+ 'ṩ' => 'ṩ',
482
+ 'Ṫ' => 'Ṫ',
483
+ 'ṫ' => 'ṫ',
484
+ 'Ṭ' => 'Ṭ',
485
+ 'ṭ' => 'ṭ',
486
+ 'Ṯ' => 'Ṯ',
487
+ 'ṯ' => 'ṯ',
488
+ 'Ṱ' => 'Ṱ',
489
+ 'ṱ' => 'ṱ',
490
+ 'Ṳ' => 'Ṳ',
491
+ 'ṳ' => 'ṳ',
492
+ 'Ṵ' => 'Ṵ',
493
+ 'ṵ' => 'ṵ',
494
+ 'Ṷ' => 'Ṷ',
495
+ 'ṷ' => 'ṷ',
496
+ 'Ṹ' => 'Ṹ',
497
+ 'ṹ' => 'ṹ',
498
+ 'Ṻ' => 'Ṻ',
499
+ 'ṻ' => 'ṻ',
500
+ 'Ṽ' => 'Ṽ',
501
+ 'ṽ' => 'ṽ',
502
+ 'Ṿ' => 'Ṿ',
503
+ 'ṿ' => 'ṿ',
504
+ 'Ẁ' => 'Ẁ',
505
+ 'ẁ' => 'ẁ',
506
+ 'Ẃ' => 'Ẃ',
507
+ 'ẃ' => 'ẃ',
508
+ 'Ẅ' => 'Ẅ',
509
+ 'ẅ' => 'ẅ',
510
+ 'Ẇ' => 'Ẇ',
511
+ 'ẇ' => 'ẇ',
512
+ 'Ẉ' => 'Ẉ',
513
+ 'ẉ' => 'ẉ',
514
+ 'Ẋ' => 'Ẋ',
515
+ 'ẋ' => 'ẋ',
516
+ 'Ẍ' => 'Ẍ',
517
+ 'ẍ' => 'ẍ',
518
+ 'Ẏ' => 'Ẏ',
519
+ 'ẏ' => 'ẏ',
520
+ 'Ẑ' => 'Ẑ',
521
+ 'ẑ' => 'ẑ',
522
+ 'Ẓ' => 'Ẓ',
523
+ 'ẓ' => 'ẓ',
524
+ 'Ẕ' => 'Ẕ',
525
+ 'ẕ' => 'ẕ',
526
+ 'ẖ' => 'ẖ',
527
+ 'ẗ' => 'ẗ',
528
+ 'ẘ' => 'ẘ',
529
+ 'ẙ' => 'ẙ',
530
+ 'ẛ' => 'ẛ',
531
+ 'Ạ' => 'Ạ',
532
+ 'ạ' => 'ạ',
533
+ 'Ả' => 'Ả',
534
+ 'ả' => 'ả',
535
+ 'Ấ' => 'Ấ',
536
+ 'ấ' => 'ấ',
537
+ 'Ầ' => 'Ầ',
538
+ 'ầ' => 'ầ',
539
+ 'Ẩ' => 'Ẩ',
540
+ 'ẩ' => 'ẩ',
541
+ 'Ẫ' => 'Ẫ',
542
+ 'ẫ' => 'ẫ',
543
+ 'Ậ' => 'Ậ',
544
+ 'ậ' => 'ậ',
545
+ 'Ắ' => 'Ắ',
546
+ 'ắ' => 'ắ',
547
+ 'Ằ' => 'Ằ',
548
+ 'ằ' => 'ằ',
549
+ 'Ẳ' => 'Ẳ',
550
+ 'ẳ' => 'ẳ',
551
+ 'Ẵ' => 'Ẵ',
552
+ 'ẵ' => 'ẵ',
553
+ 'Ặ' => 'Ặ',
554
+ 'ặ' => 'ặ',
555
+ 'Ẹ' => 'Ẹ',
556
+ 'ẹ' => 'ẹ',
557
+ 'Ẻ' => 'Ẻ',
558
+ 'ẻ' => 'ẻ',
559
+ 'Ẽ' => 'Ẽ',
560
+ 'ẽ' => 'ẽ',
561
+ 'Ế' => 'Ế',
562
+ 'ế' => 'ế',
563
+ 'Ề' => 'Ề',
564
+ 'ề' => 'ề',
565
+ 'Ể' => 'Ể',
566
+ 'ể' => 'ể',
567
+ 'Ễ' => 'Ễ',
568
+ 'ễ' => 'ễ',
569
+ 'Ệ' => 'Ệ',
570
+ 'ệ' => 'ệ',
571
+ 'Ỉ' => 'Ỉ',
572
+ 'ỉ' => 'ỉ',
573
+ 'Ị' => 'Ị',
574
+ 'ị' => 'ị',
575
+ 'Ọ' => 'Ọ',
576
+ 'ọ' => 'ọ',
577
+ 'Ỏ' => 'Ỏ',
578
+ 'ỏ' => 'ỏ',
579
+ 'Ố' => 'Ố',
580
+ 'ố' => 'ố',
581
+ 'Ồ' => 'Ồ',
582
+ 'ồ' => 'ồ',
583
+ 'Ổ' => 'Ổ',
584
+ 'ổ' => 'ổ',
585
+ 'Ỗ' => 'Ỗ',
586
+ 'ỗ' => 'ỗ',
587
+ 'Ộ' => 'Ộ',
588
+ 'ộ' => 'ộ',
589
+ 'Ớ' => 'Ớ',
590
+ 'ớ' => 'ớ',
591
+ 'Ờ' => 'Ờ',
592
+ 'ờ' => 'ờ',
593
+ 'Ở' => 'Ở',
594
+ 'ở' => 'ở',
595
+ 'Ỡ' => 'Ỡ',
596
+ 'ỡ' => 'ỡ',
597
+ 'Ợ' => 'Ợ',
598
+ 'ợ' => 'ợ',
599
+ 'Ụ' => 'Ụ',
600
+ 'ụ' => 'ụ',
601
+ 'Ủ' => 'Ủ',
602
+ 'ủ' => 'ủ',
603
+ 'Ứ' => 'Ứ',
604
+ 'ứ' => 'ứ',
605
+ 'Ừ' => 'Ừ',
606
+ 'ừ' => 'ừ',
607
+ 'Ử' => 'Ử',
608
+ 'ử' => 'ử',
609
+ 'Ữ' => 'Ữ',
610
+ 'ữ' => 'ữ',
611
+ 'Ự' => 'Ự',
612
+ 'ự' => 'ự',
613
+ 'Ỳ' => 'Ỳ',
614
+ 'ỳ' => 'ỳ',
615
+ 'Ỵ' => 'Ỵ',
616
+ 'ỵ' => 'ỵ',
617
+ 'Ỷ' => 'Ỷ',
618
+ 'ỷ' => 'ỷ',
619
+ 'Ỹ' => 'Ỹ',
620
+ 'ỹ' => 'ỹ',
621
+ 'ἀ' => 'ἀ',
622
+ 'ἁ' => 'ἁ',
623
+ 'ἂ' => 'ἂ',
624
+ 'ἃ' => 'ἃ',
625
+ 'ἄ' => 'ἄ',
626
+ 'ἅ' => 'ἅ',
627
+ 'ἆ' => 'ἆ',
628
+ 'ἇ' => 'ἇ',
629
+ 'Ἀ' => 'Ἀ',
630
+ 'Ἁ' => 'Ἁ',
631
+ 'Ἂ' => 'Ἂ',
632
+ 'Ἃ' => 'Ἃ',
633
+ 'Ἄ' => 'Ἄ',
634
+ 'Ἅ' => 'Ἅ',
635
+ 'Ἆ' => 'Ἆ',
636
+ 'Ἇ' => 'Ἇ',
637
+ 'ἐ' => 'ἐ',
638
+ 'ἑ' => 'ἑ',
639
+ 'ἒ' => 'ἒ',
640
+ 'ἓ' => 'ἓ',
641
+ 'ἔ' => 'ἔ',
642
+ 'ἕ' => 'ἕ',
643
+ 'Ἐ' => 'Ἐ',
644
+ 'Ἑ' => 'Ἑ',
645
+ 'Ἒ' => 'Ἒ',
646
+ 'Ἓ' => 'Ἓ',
647
+ 'Ἔ' => 'Ἔ',
648
+ 'Ἕ' => 'Ἕ',
649
+ 'ἠ' => 'ἠ',
650
+ 'ἡ' => 'ἡ',
651
+ 'ἢ' => 'ἢ',
652
+ 'ἣ' => 'ἣ',
653
+ 'ἤ' => 'ἤ',
654
+ 'ἥ' => 'ἥ',
655
+ 'ἦ' => 'ἦ',
656
+ 'ἧ' => 'ἧ',
657
+ 'Ἠ' => 'Ἠ',
658
+ 'Ἡ' => 'Ἡ',
659
+ 'Ἢ' => 'Ἢ',
660
+ 'Ἣ' => 'Ἣ',
661
+ 'Ἤ' => 'Ἤ',
662
+ 'Ἥ' => 'Ἥ',
663
+ 'Ἦ' => 'Ἦ',
664
+ 'Ἧ' => 'Ἧ',
665
+ 'ἰ' => 'ἰ',
666
+ 'ἱ' => 'ἱ',
667
+ 'ἲ' => 'ἲ',
668
+ 'ἳ' => 'ἳ',
669
+ 'ἴ' => 'ἴ',
670
+ 'ἵ' => 'ἵ',
671
+ 'ἶ' => 'ἶ',
672
+ 'ἷ' => 'ἷ',
673
+ 'Ἰ' => 'Ἰ',
674
+ 'Ἱ' => 'Ἱ',
675
+ 'Ἲ' => 'Ἲ',
676
+ 'Ἳ' => 'Ἳ',
677
+ 'Ἴ' => 'Ἴ',
678
+ 'Ἵ' => 'Ἵ',
679
+ 'Ἶ' => 'Ἶ',
680
+ 'Ἷ' => 'Ἷ',
681
+ 'ὀ' => 'ὀ',
682
+ 'ὁ' => 'ὁ',
683
+ 'ὂ' => 'ὂ',
684
+ 'ὃ' => 'ὃ',
685
+ 'ὄ' => 'ὄ',
686
+ 'ὅ' => 'ὅ',
687
+ 'Ὀ' => 'Ὀ',
688
+ 'Ὁ' => 'Ὁ',
689
+ 'Ὂ' => 'Ὂ',
690
+ 'Ὃ' => 'Ὃ',
691
+ 'Ὄ' => 'Ὄ',
692
+ 'Ὅ' => 'Ὅ',
693
+ 'ὐ' => 'ὐ',
694
+ 'ὑ' => 'ὑ',
695
+ 'ὒ' => 'ὒ',
696
+ 'ὓ' => 'ὓ',
697
+ 'ὔ' => 'ὔ',
698
+ 'ὕ' => 'ὕ',
699
+ 'ὖ' => 'ὖ',
700
+ 'ὗ' => 'ὗ',
701
+ 'Ὑ' => 'Ὑ',
702
+ 'Ὓ' => 'Ὓ',
703
+ 'Ὕ' => 'Ὕ',
704
+ 'Ὗ' => 'Ὗ',
705
+ 'ὠ' => 'ὠ',
706
+ 'ὡ' => 'ὡ',
707
+ 'ὢ' => 'ὢ',
708
+ 'ὣ' => 'ὣ',
709
+ 'ὤ' => 'ὤ',
710
+ 'ὥ' => 'ὥ',
711
+ 'ὦ' => 'ὦ',
712
+ 'ὧ' => 'ὧ',
713
+ 'Ὠ' => 'Ὠ',
714
+ 'Ὡ' => 'Ὡ',
715
+ 'Ὢ' => 'Ὢ',
716
+ 'Ὣ' => 'Ὣ',
717
+ 'Ὤ' => 'Ὤ',
718
+ 'Ὥ' => 'Ὥ',
719
+ 'Ὦ' => 'Ὦ',
720
+ 'Ὧ' => 'Ὧ',
721
+ 'ὰ' => 'ὰ',
722
+ 'ὲ' => 'ὲ',
723
+ 'ὴ' => 'ὴ',
724
+ 'ὶ' => 'ὶ',
725
+ 'ὸ' => 'ὸ',
726
+ 'ὺ' => 'ὺ',
727
+ 'ὼ' => 'ὼ',
728
+ 'ᾀ' => 'ᾀ',
729
+ 'ᾁ' => 'ᾁ',
730
+ 'ᾂ' => 'ᾂ',
731
+ 'ᾃ' => 'ᾃ',
732
+ 'ᾄ' => 'ᾄ',
733
+ 'ᾅ' => 'ᾅ',
734
+ 'ᾆ' => 'ᾆ',
735
+ 'ᾇ' => 'ᾇ',
736
+ 'ᾈ' => 'ᾈ',
737
+ 'ᾉ' => 'ᾉ',
738
+ 'ᾊ' => 'ᾊ',
739
+ 'ᾋ' => 'ᾋ',
740
+ 'ᾌ' => 'ᾌ',
741
+ 'ᾍ' => 'ᾍ',
742
+ 'ᾎ' => 'ᾎ',
743
+ 'ᾏ' => 'ᾏ',
744
+ 'ᾐ' => 'ᾐ',
745
+ 'ᾑ' => 'ᾑ',
746
+ 'ᾒ' => 'ᾒ',
747
+ 'ᾓ' => 'ᾓ',
748
+ 'ᾔ' => 'ᾔ',
749
+ 'ᾕ' => 'ᾕ',
750
+ 'ᾖ' => 'ᾖ',
751
+ 'ᾗ' => 'ᾗ',
752
+ 'ᾘ' => 'ᾘ',
753
+ 'ᾙ' => 'ᾙ',
754
+ 'ᾚ' => 'ᾚ',
755
+ 'ᾛ' => 'ᾛ',
756
+ 'ᾜ' => 'ᾜ',
757
+ 'ᾝ' => 'ᾝ',
758
+ 'ᾞ' => 'ᾞ',
759
+ 'ᾟ' => 'ᾟ',
760
+ 'ᾠ' => 'ᾠ',
761
+ 'ᾡ' => 'ᾡ',
762
+ 'ᾢ' => 'ᾢ',
763
+ 'ᾣ' => 'ᾣ',
764
+ 'ᾤ' => 'ᾤ',
765
+ 'ᾥ' => 'ᾥ',
766
+ 'ᾦ' => 'ᾦ',
767
+ 'ᾧ' => 'ᾧ',
768
+ 'ᾨ' => 'ᾨ',
769
+ 'ᾩ' => 'ᾩ',
770
+ 'ᾪ' => 'ᾪ',
771
+ 'ᾫ' => 'ᾫ',
772
+ 'ᾬ' => 'ᾬ',
773
+ 'ᾭ' => 'ᾭ',
774
+ 'ᾮ' => 'ᾮ',
775
+ 'ᾯ' => 'ᾯ',
776
+ 'ᾰ' => 'ᾰ',
777
+ 'ᾱ' => 'ᾱ',
778
+ 'ᾲ' => 'ᾲ',
779
+ 'ᾳ' => 'ᾳ',
780
+ 'ᾴ' => 'ᾴ',
781
+ 'ᾶ' => 'ᾶ',
782
+ 'ᾷ' => 'ᾷ',
783
+ 'Ᾰ' => 'Ᾰ',
784
+ 'Ᾱ' => 'Ᾱ',
785
+ 'Ὰ' => 'Ὰ',
786
+ 'ᾼ' => 'ᾼ',
787
+ '῁' => '῁',
788
+ 'ῂ' => 'ῂ',
789
+ 'ῃ' => 'ῃ',
790
+ 'ῄ' => 'ῄ',
791
+ 'ῆ' => 'ῆ',
792
+ 'ῇ' => 'ῇ',
793
+ 'Ὲ' => 'Ὲ',
794
+ 'Ὴ' => 'Ὴ',
795
+ 'ῌ' => 'ῌ',
796
+ '῍' => '῍',
797
+ '῎' => '῎',
798
+ '῏' => '῏',
799
+ 'ῐ' => 'ῐ',
800
+ 'ῑ' => 'ῑ',
801
+ 'ῒ' => 'ῒ',
802
+ 'ῖ' => 'ῖ',
803
+ 'ῗ' => 'ῗ',
804
+ 'Ῐ' => 'Ῐ',
805
+ 'Ῑ' => 'Ῑ',
806
+ 'Ὶ' => 'Ὶ',
807
+ '῝' => '῝',
808
+ '῞' => '῞',
809
+ '῟' => '῟',
810
+ 'ῠ' => 'ῠ',
811
+ 'ῡ' => 'ῡ',
812
+ 'ῢ' => 'ῢ',
813
+ 'ῤ' => 'ῤ',
814
+ 'ῥ' => 'ῥ',
815
+ 'ῦ' => 'ῦ',
816
+ 'ῧ' => 'ῧ',
817
+ 'Ῠ' => 'Ῠ',
818
+ 'Ῡ' => 'Ῡ',
819
+ 'Ὺ' => 'Ὺ',
820
+ 'Ῥ' => 'Ῥ',
821
+ '῭' => '῭',
822
+ 'ῲ' => 'ῲ',
823
+ 'ῳ' => 'ῳ',
824
+ 'ῴ' => 'ῴ',
825
+ 'ῶ' => 'ῶ',
826
+ 'ῷ' => 'ῷ',
827
+ 'Ὸ' => 'Ὸ',
828
+ 'Ὼ' => 'Ὼ',
829
+ 'ῼ' => 'ῼ',
830
+ '↚' => '↚',
831
+ '↛' => '↛',
832
+ '↮' => '↮',
833
+ '⇍' => '⇍',
834
+ '⇎' => '⇎',
835
+ '⇏' => '⇏',
836
+ '∄' => '∄',
837
+ '∉' => '∉',
838
+ '∌' => '∌',
839
+ '∤' => '∤',
840
+ '∦' => '∦',
841
+ '≁' => '≁',
842
+ '≄' => '≄',
843
+ '≇' => '≇',
844
+ '≉' => '≉',
845
+ '≠' => '≠',
846
+ '≢' => '≢',
847
+ '≭' => '≭',
848
+ '≮' => '≮',
849
+ '≯' => '≯',
850
+ '≰' => '≰',
851
+ '≱' => '≱',
852
+ '≴' => '≴',
853
+ '≵' => '≵',
854
+ '≸' => '≸',
855
+ '≹' => '≹',
856
+ '⊀' => '⊀',
857
+ '⊁' => '⊁',
858
+ '⊄' => '⊄',
859
+ '⊅' => '⊅',
860
+ '⊈' => '⊈',
861
+ '⊉' => '⊉',
862
+ '⊬' => '⊬',
863
+ '⊭' => '⊭',
864
+ '⊮' => '⊮',
865
+ '⊯' => '⊯',
866
+ '⋠' => '⋠',
867
+ '⋡' => '⋡',
868
+ '⋢' => '⋢',
869
+ '⋣' => '⋣',
870
+ '⋪' => '⋪',
871
+ '⋫' => '⋫',
872
+ '⋬' => '⋬',
873
+ '⋭' => '⋭',
874
+ 'が' => 'が',
875
+ 'ぎ' => 'ぎ',
876
+ 'ぐ' => 'ぐ',
877
+ 'げ' => 'げ',
878
+ 'ご' => 'ご',
879
+ 'ざ' => 'ざ',
880
+ 'じ' => 'じ',
881
+ 'ず' => 'ず',
882
+ 'ぜ' => 'ぜ',
883
+ 'ぞ' => 'ぞ',
884
+ 'だ' => 'だ',
885
+ 'ぢ' => 'ぢ',
886
+ 'づ' => 'づ',
887
+ 'で' => 'で',
888
+ 'ど' => 'ど',
889
+ 'ば' => 'ば',
890
+ 'ぱ' => 'ぱ',
891
+ 'び' => 'び',
892
+ 'ぴ' => 'ぴ',
893
+ 'ぶ' => 'ぶ',
894
+ 'ぷ' => 'ぷ',
895
+ 'べ' => 'べ',
896
+ 'ぺ' => 'ぺ',
897
+ 'ぼ' => 'ぼ',
898
+ 'ぽ' => 'ぽ',
899
+ 'ゔ' => 'ゔ',
900
+ 'ゞ' => 'ゞ',
901
+ 'ガ' => 'ガ',
902
+ 'ギ' => 'ギ',
903
+ 'グ' => 'グ',
904
+ 'ゲ' => 'ゲ',
905
+ 'ゴ' => 'ゴ',
906
+ 'ザ' => 'ザ',
907
+ 'ジ' => 'ジ',
908
+ 'ズ' => 'ズ',
909
+ 'ゼ' => 'ゼ',
910
+ 'ゾ' => 'ゾ',
911
+ 'ダ' => 'ダ',
912
+ 'ヂ' => 'ヂ',
913
+ 'ヅ' => 'ヅ',
914
+ 'デ' => 'デ',
915
+ 'ド' => 'ド',
916
+ 'バ' => 'バ',
917
+ 'パ' => 'パ',
918
+ 'ビ' => 'ビ',
919
+ 'ピ' => 'ピ',
920
+ 'ブ' => 'ブ',
921
+ 'プ' => 'プ',
922
+ 'ベ' => 'ベ',
923
+ 'ペ' => 'ペ',
924
+ 'ボ' => 'ボ',
925
+ 'ポ' => 'ポ',
926
+ 'ヴ' => 'ヴ',
927
+ 'ヷ' => 'ヷ',
928
+ 'ヸ' => 'ヸ',
929
+ 'ヹ' => 'ヹ',
930
+ 'ヺ' => 'ヺ',
931
+ 'ヾ' => 'ヾ',
932
+ '𑂚' => '𑂚',
933
+ '𑂜' => '𑂜',
934
+ '𑂫' => '𑂫',
935
+ '𑄮' => '𑄮',
936
+ '𑄯' => '𑄯',
937
+ '𑍋' => '𑍋',
938
+ '𑍌' => '𑍌',
939
+ '𑒻' => '𑒻',
940
+ '𑒼' => '𑒼',
941
+ '𑒾' => '𑒾',
942
+ '𑖺' => '𑖺',
943
+ '𑖻' => '𑖻',
944
+ '𑤸' => '𑤸',
945
+ );
vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php ADDED
@@ -0,0 +1,2065 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return array (
4
+ 'À' => 'À',
5
+ 'Á' => 'Á',
6
+ 'Â' => 'Â',
7
+ 'Ã' => 'Ã',
8
+ 'Ä' => 'Ä',
9
+ 'Å' => 'Å',
10
+ 'Ç' => 'Ç',
11
+ 'È' => 'È',
12
+ 'É' => 'É',
13
+ 'Ê' => 'Ê',
14
+ 'Ë' => 'Ë',
15
+ 'Ì' => 'Ì',
16
+ 'Í' => 'Í',
17
+ 'Î' => 'Î',
18
+ 'Ï' => 'Ï',
19
+ 'Ñ' => 'Ñ',
20
+ 'Ò' => 'Ò',
21
+ 'Ó' => 'Ó',
22
+ 'Ô' => 'Ô',
23
+ 'Õ' => 'Õ',
24
+ 'Ö' => 'Ö',
25
+ 'Ù' => 'Ù',
26
+ 'Ú' => 'Ú',
27
+ 'Û' => 'Û',
28
+ 'Ü' => 'Ü',
29
+ 'Ý' => 'Ý',
30
+ 'à' => 'à',
31
+ 'á' => 'á',
32
+ 'â' => 'â',
33
+ 'ã' => 'ã',
34
+ 'ä' => 'ä',
35
+ 'å' => 'å',
36
+ 'ç' => 'ç',
37
+ 'è' => 'è',
38
+ 'é' => 'é',
39
+ 'ê' => 'ê',
40
+ 'ë' => 'ë',
41
+ 'ì' => 'ì',
42
+ 'í' => 'í',
43
+ 'î' => 'î',
44
+ 'ï' => 'ï',
45
+ 'ñ' => 'ñ',
46
+ 'ò' => 'ò',
47
+ 'ó' => 'ó',
48
+ 'ô' => 'ô',
49
+ 'õ' => 'õ',
50
+ 'ö' => 'ö',
51
+ 'ù' => 'ù',
52
+ 'ú' => 'ú',
53
+ 'û' => 'û',
54
+ 'ü' => 'ü',
55
+ 'ý' => 'ý',
56
+ 'ÿ' => 'ÿ',
57
+ 'Ā' => 'Ā',
58
+ 'ā' => 'ā',
59
+ 'Ă' => 'Ă',
60
+ 'ă' => 'ă',
61
+ 'Ą' => 'Ą',
62
+ 'ą' => 'ą',
63
+ 'Ć' => 'Ć',
64
+ 'ć' => 'ć',
65
+ 'Ĉ' => 'Ĉ',
66
+ 'ĉ' => 'ĉ',
67
+ 'Ċ' => 'Ċ',
68
+ 'ċ' => 'ċ',
69
+ 'Č' => 'Č',
70
+ 'č' => 'č',
71
+ 'Ď' => 'Ď',
72
+ 'ď' => 'ď',
73
+ 'Ē' => 'Ē',
74
+ 'ē' => 'ē',
75
+ 'Ĕ' => 'Ĕ',
76
+ 'ĕ' => 'ĕ',
77
+ 'Ė' => 'Ė',
78
+ 'ė' => 'ė',
79
+ 'Ę' => 'Ę',
80
+ 'ę' => 'ę',
81
+ 'Ě' => 'Ě',
82
+ 'ě' => 'ě',
83
+ 'Ĝ' => 'Ĝ',
84
+ 'ĝ' => 'ĝ',
85
+ 'Ğ' => 'Ğ',
86
+ 'ğ' => 'ğ',
87
+ 'Ġ' => 'Ġ',
88
+ 'ġ' => 'ġ',
89
+ 'Ģ' => 'Ģ',
90
+ 'ģ' => 'ģ',
91
+ 'Ĥ' => 'Ĥ',
92
+ 'ĥ' => 'ĥ',
93
+ 'Ĩ' => 'Ĩ',
94
+ 'ĩ' => 'ĩ',
95
+ 'Ī' => 'Ī',
96
+ 'ī' => 'ī',
97
+ 'Ĭ' => 'Ĭ',
98
+ 'ĭ' => 'ĭ',
99
+ 'Į' => 'Į',
100
+ 'į' => 'į',
101
+ 'İ' => 'İ',
102
+ 'Ĵ' => 'Ĵ',
103
+ 'ĵ' => 'ĵ',
104
+ 'Ķ' => 'Ķ',
105
+ 'ķ' => 'ķ',
106
+ 'Ĺ' => 'Ĺ',
107
+ 'ĺ' => 'ĺ',
108
+ 'Ļ' => 'Ļ',
109
+ 'ļ' => 'ļ',
110
+ 'Ľ' => 'Ľ',
111
+ 'ľ' => 'ľ',
112
+ 'Ń' => 'Ń',
113
+ 'ń' => 'ń',
114
+ 'Ņ' => 'Ņ',
115
+ 'ņ' => 'ņ',
116
+ 'Ň' => 'Ň',
117
+ 'ň' => 'ň',
118
+ 'Ō' => 'Ō',
119
+ 'ō' => 'ō',
120
+ 'Ŏ' => 'Ŏ',
121
+ 'ŏ' => 'ŏ',
122
+ 'Ő' => 'Ő',
123
+ 'ő' => 'ő',
124
+ 'Ŕ' => 'Ŕ',
125
+ 'ŕ' => 'ŕ',
126
+ 'Ŗ' => 'Ŗ',
127
+ 'ŗ' => 'ŗ',
128
+ 'Ř' => 'Ř',
129
+ 'ř' => 'ř',
130
+ 'Ś' => 'Ś',
131
+ 'ś' => 'ś',
132
+ 'Ŝ' => 'Ŝ',
133
+ 'ŝ' => 'ŝ',
134
+ 'Ş' => 'Ş',
135
+ 'ş' => 'ş',
136
+ 'Š' => 'Š',
137
+ 'š' => 'š',
138
+ 'Ţ' => 'Ţ',
139
+ 'ţ' => 'ţ',
140
+ 'Ť' => 'Ť',
141
+ 'ť' => 'ť',
142
+ 'Ũ' => 'Ũ',
143
+ 'ũ' => 'ũ',
144
+ 'Ū' => 'Ū',
145
+ 'ū' => 'ū',
146
+ 'Ŭ' => 'Ŭ',
147
+ 'ŭ' => 'ŭ',
148
+ 'Ů' => 'Ů',
149
+ 'ů' => 'ů',
150
+ 'Ű' => 'Ű',
151
+ 'ű' => 'ű',
152
+ 'Ų' => 'Ų',
153
+ 'ų' => 'ų',
154
+ 'Ŵ' => 'Ŵ',
155
+ 'ŵ' => 'ŵ',
156
+ 'Ŷ' => 'Ŷ',
157
+ 'ŷ' => 'ŷ',
158
+ 'Ÿ' => 'Ÿ',
159
+ 'Ź' => 'Ź',
160
+ 'ź' => 'ź',
161
+ 'Ż' => 'Ż',
162
+ 'ż' => 'ż',
163
+ 'Ž' => 'Ž',
164
+ 'ž' => 'ž',
165
+ 'Ơ' => 'Ơ',
166
+ 'ơ' => 'ơ',
167
+ 'Ư' => 'Ư',
168
+ 'ư' => 'ư',
169
+ 'Ǎ' => 'Ǎ',
170
+ 'ǎ' => 'ǎ',
171
+ 'Ǐ' => 'Ǐ',
172
+ 'ǐ' => 'ǐ',
173
+ 'Ǒ' => 'Ǒ',
174
+ 'ǒ' => 'ǒ',
175
+ 'Ǔ' => 'Ǔ',
176
+ 'ǔ' => 'ǔ',
177
+ 'Ǖ' => 'Ǖ',
178
+ 'ǖ' => 'ǖ',
179
+ 'Ǘ' => 'Ǘ',
180
+ 'ǘ' => 'ǘ',
181
+ 'Ǚ' => 'Ǚ',
182
+ 'ǚ' => 'ǚ',
183
+ 'Ǜ' => 'Ǜ',
184
+ 'ǜ' => 'ǜ',
185
+ 'Ǟ' => 'Ǟ',
186
+ 'ǟ' => 'ǟ',
187
+ 'Ǡ' => 'Ǡ',
188
+ 'ǡ' => 'ǡ',
189
+ 'Ǣ' => 'Ǣ',
190
+ 'ǣ' => 'ǣ',
191
+ 'Ǧ' => 'Ǧ',
192
+ 'ǧ' => 'ǧ',
193
+ 'Ǩ' => 'Ǩ',
194
+ 'ǩ' => 'ǩ',
195
+ 'Ǫ' => 'Ǫ',
196
+ 'ǫ' => 'ǫ',
197
+ 'Ǭ' => 'Ǭ',
198
+ 'ǭ' => 'ǭ',
199
+ 'Ǯ' => 'Ǯ',
200
+ 'ǯ' => 'ǯ',
201
+ 'ǰ' => 'ǰ',
202
+ 'Ǵ' => 'Ǵ',
203
+ 'ǵ' => 'ǵ',
204
+ 'Ǹ' => 'Ǹ',
205
+ 'ǹ' => 'ǹ',
206
+ 'Ǻ' => 'Ǻ',
207
+ 'ǻ' => 'ǻ',
208
+ 'Ǽ' => 'Ǽ',
209
+ 'ǽ' => 'ǽ',
210
+ 'Ǿ' => 'Ǿ',
211
+ 'ǿ' => 'ǿ',
212
+ 'Ȁ' => 'Ȁ',
213
+ 'ȁ' => 'ȁ',
214
+ 'Ȃ' => 'Ȃ',
215
+ 'ȃ' => 'ȃ',
216
+ 'Ȅ' => 'Ȅ',
217
+ 'ȅ' => 'ȅ',
218
+ 'Ȇ' => 'Ȇ',
219
+ 'ȇ' => 'ȇ',
220
+ 'Ȉ' => 'Ȉ',
221
+ 'ȉ' => 'ȉ',
222
+ 'Ȋ' => 'Ȋ',
223
+ 'ȋ' => 'ȋ',
224
+ 'Ȍ' => 'Ȍ',
225
+ 'ȍ' => 'ȍ',
226
+ 'Ȏ' => 'Ȏ',
227
+ 'ȏ' => 'ȏ',
228
+ 'Ȑ' => 'Ȑ',
229
+ 'ȑ' => 'ȑ',
230
+ 'Ȓ' => 'Ȓ',
231
+ 'ȓ' => 'ȓ',
232
+ 'Ȕ' => 'Ȕ',
233
+ 'ȕ' => 'ȕ',
234
+ 'Ȗ' => 'Ȗ',
235
+ 'ȗ' => 'ȗ',
236
+ 'Ș' => 'Ș',
237
+ 'ș' => 'ș',
238
+ 'Ț' => 'Ț',
239
+ 'ț' => 'ț',
240
+ 'Ȟ' => 'Ȟ',
241
+ 'ȟ' => 'ȟ',
242
+ 'Ȧ' => 'Ȧ',
243
+ 'ȧ' => 'ȧ',
244
+ 'Ȩ' => 'Ȩ',
245
+ 'ȩ' => 'ȩ',
246
+ 'Ȫ' => 'Ȫ',
247
+ 'ȫ' => 'ȫ',
248
+ 'Ȭ' => 'Ȭ',
249
+ 'ȭ' => 'ȭ',
250
+ 'Ȯ' => 'Ȯ',
251
+ 'ȯ' => 'ȯ',
252
+ 'Ȱ' => 'Ȱ',
253
+ 'ȱ' => 'ȱ',
254
+ 'Ȳ' => 'Ȳ',
255
+ 'ȳ' => 'ȳ',
256
+ '̀' => '̀',
257
+ '́' => '́',
258
+ '̓' => '̓',
259
+ '̈́' => '̈́',
260
+ 'ʹ' => 'ʹ',
261
+ ';' => ';',
262
+ '΅' => '΅',
263
+ 'Ά' => 'Ά',
264
+ '·' => '·',
265
+ 'Έ' => 'Έ',
266
+ 'Ή' => 'Ή',
267
+ 'Ί' => 'Ί',
268
+ 'Ό' => 'Ό',
269
+ 'Ύ' => 'Ύ',
270
+ 'Ώ' => 'Ώ',
271
+ 'ΐ' => 'ΐ',
272
+ 'Ϊ' => 'Ϊ',
273
+ 'Ϋ' => 'Ϋ',
274
+ 'ά' => 'ά',
275
+ 'έ' => 'έ',
276
+ 'ή' => 'ή',
277
+ 'ί' => 'ί',
278
+ 'ΰ' => 'ΰ',
279
+ 'ϊ' => 'ϊ',
280
+ 'ϋ' => 'ϋ',
281
+ 'ό' => 'ό',
282
+ 'ύ' => 'ύ',
283
+ 'ώ' => 'ώ',
284
+ 'ϓ' => 'ϓ',
285
+ 'ϔ' => 'ϔ',
286
+ 'Ѐ' => 'Ѐ',
287
+ 'Ё' => 'Ё',
288
+ 'Ѓ' => 'Ѓ',
289
+ 'Ї' => 'Ї',
290
+ 'Ќ' => 'Ќ',
291
+ 'Ѝ' => 'Ѝ',
292
+ 'Ў' => 'Ў',
293
+ 'Й' => 'Й',
294
+ 'й' => 'й',
295
+ 'ѐ' => 'ѐ',
296
+ 'ё' => 'ё',
297
+ 'ѓ' => 'ѓ',
298
+ 'ї' => 'ї',
299
+ 'ќ' => 'ќ',
300
+ 'ѝ' => 'ѝ',
301
+ 'ў' => 'ў',
302
+ 'Ѷ' => 'Ѷ',
303
+ 'ѷ' => 'ѷ',
304
+ 'Ӂ' => 'Ӂ',
305
+ 'ӂ' => 'ӂ',
306
+ 'Ӑ' => 'Ӑ',
307
+ 'ӑ' => 'ӑ',
308
+ 'Ӓ' => 'Ӓ',
309
+ 'ӓ' => 'ӓ',
310
+ 'Ӗ' => 'Ӗ',
311
+ 'ӗ' => 'ӗ',
312
+ 'Ӛ' => 'Ӛ',
313
+ 'ӛ' => 'ӛ',
314
+ 'Ӝ' => 'Ӝ',
315
+ 'ӝ' => 'ӝ',
316
+ 'Ӟ' => 'Ӟ',
317
+ 'ӟ' => 'ӟ',
318
+ 'Ӣ' => 'Ӣ',
319
+ 'ӣ' => 'ӣ',
320
+ 'Ӥ' => 'Ӥ',
321
+ 'ӥ' => 'ӥ',
322
+ 'Ӧ' => 'Ӧ',
323
+ 'ӧ' => 'ӧ',
324
+ 'Ӫ' => 'Ӫ',
325
+ 'ӫ' => 'ӫ',
326
+ 'Ӭ' => 'Ӭ',
327
+ 'ӭ' => 'ӭ',
328
+ 'Ӯ' => 'Ӯ',
329
+ 'ӯ' => 'ӯ',
330
+ 'Ӱ' => 'Ӱ',
331
+ 'ӱ' => 'ӱ',
332
+ 'Ӳ' => 'Ӳ',
333
+ 'ӳ' => 'ӳ',
334
+ 'Ӵ' => 'Ӵ',
335
+ 'ӵ' => 'ӵ',
336
+ 'Ӹ' => 'Ӹ',
337
+ 'ӹ' => 'ӹ',
338
+ 'آ' => 'آ',
339
+ 'أ' => 'أ',
340
+ 'ؤ' => 'ؤ',
341
+ 'إ' => 'إ',
342
+ 'ئ' => 'ئ',
343
+ 'ۀ' => 'ۀ',
344
+ 'ۂ' => 'ۂ',
345
+ 'ۓ' => 'ۓ',
346
+ 'ऩ' => 'ऩ',
347
+ 'ऱ' => 'ऱ',
348
+ 'ऴ' => 'ऴ',
349
+ 'क़' => 'क़',
350
+ 'ख़' => 'ख़',
351
+ 'ग़' => 'ग़',
352
+ 'ज़' => 'ज़',
353
+ 'ड़' => 'ड़',
354
+ 'ढ़' => 'ढ़',
355
+ 'फ़' => 'फ़',
356
+ 'य़' => 'य़',
357
+ 'ো' => 'ো',
358
+ 'ৌ' => 'ৌ',
359
+ 'ড়' => 'ড়',
360
+ 'ঢ়' => 'ঢ়',
361
+ 'য়' => 'য়',
362
+ 'ਲ਼' => 'ਲ਼',
363
+ 'ਸ਼' => 'ਸ਼',
364
+ 'ਖ਼' => 'ਖ਼',
365
+ 'ਗ਼' => 'ਗ਼',
366
+ 'ਜ਼' => 'ਜ਼',
367
+ 'ਫ਼' => 'ਫ਼',
368
+ 'ୈ' => 'ୈ',
369
+ 'ୋ' => 'ୋ',
370
+ 'ୌ' => 'ୌ',
371
+ 'ଡ଼' => 'ଡ଼',
372
+ 'ଢ଼' => 'ଢ଼',
373
+ 'ஔ' => 'ஔ',
374
+ 'ொ' => 'ொ',
375
+ 'ோ' => 'ோ',
376
+ 'ௌ' => 'ௌ',
377
+ 'ై' => 'ై',
378
+ 'ೀ' => 'ೀ',
379
+ 'ೇ' => 'ೇ',
380
+ 'ೈ' => 'ೈ',
381
+ 'ೊ' => 'ೊ',
382
+ 'ೋ' => 'ೋ',
383
+ 'ൊ' => 'ൊ',
384
+ 'ോ' => 'ോ',
385
+ 'ൌ' => 'ൌ',
386
+ 'ේ' => 'ේ',
387
+ 'ො' => 'ො',
388
+ 'ෝ' => 'ෝ',
389
+ 'ෞ' => 'ෞ',
390
+ 'གྷ' => 'གྷ',
391
+ 'ཌྷ' => 'ཌྷ',
392
+ 'དྷ' => 'དྷ',
393
+ 'བྷ' => 'བྷ',
394
+ 'ཛྷ' => 'ཛྷ',
395
+ 'ཀྵ' => 'ཀྵ',
396
+ 'ཱི' => 'ཱི',
397
+ 'ཱུ' => 'ཱུ',
398
+ 'ྲྀ' => 'ྲྀ',
399
+ 'ླྀ' => 'ླྀ',
400
+ 'ཱྀ' => 'ཱྀ',
401
+ 'ྒྷ' => 'ྒྷ',
402
+ 'ྜྷ' => 'ྜྷ',
403
+ 'ྡྷ' => 'ྡྷ',
404
+ 'ྦྷ' => 'ྦྷ',
405
+ 'ྫྷ' => 'ྫྷ',
406
+ 'ྐྵ' => 'ྐྵ',
407
+ 'ဦ' => 'ဦ',
408
+ 'ᬆ' => 'ᬆ',
409
+ 'ᬈ' => 'ᬈ',
410
+ 'ᬊ' => 'ᬊ',
411
+ 'ᬌ' => 'ᬌ',
412
+ 'ᬎ' => 'ᬎ',
413
+ 'ᬒ' => 'ᬒ',
414
+ 'ᬻ' => 'ᬻ',
415
+ 'ᬽ' => 'ᬽ',
416
+ 'ᭀ' => 'ᭀ',
417
+ 'ᭁ' => 'ᭁ',
418
+ 'ᭃ' => 'ᭃ',
419
+ 'Ḁ' => 'Ḁ',
420
+ 'ḁ' => 'ḁ',
421
+ 'Ḃ' => 'Ḃ',
422
+ 'ḃ' => 'ḃ',
423
+ 'Ḅ' => 'Ḅ',
424
+ 'ḅ' => 'ḅ',
425
+ 'Ḇ' => 'Ḇ',
426
+ 'ḇ' => 'ḇ',
427
+ 'Ḉ' => 'Ḉ',
428
+ 'ḉ' => 'ḉ',
429
+ 'Ḋ' => 'Ḋ',
430
+ 'ḋ' => 'ḋ',
431
+ 'Ḍ' => 'Ḍ',
432
+ 'ḍ' => 'ḍ',
433
+ 'Ḏ' => 'Ḏ',
434
+ 'ḏ' => 'ḏ',
435
+ 'Ḑ' => 'Ḑ',
436
+ 'ḑ' => 'ḑ',
437
+ 'Ḓ' => 'Ḓ',
438
+ 'ḓ' => 'ḓ',
439
+ 'Ḕ' => 'Ḕ',
440
+ 'ḕ' => 'ḕ',
441
+ 'Ḗ' => 'Ḗ',
442
+ 'ḗ' => 'ḗ',
443
+ 'Ḙ' => 'Ḙ',
444
+ 'ḙ' => 'ḙ',
445
+ 'Ḛ' => 'Ḛ',
446
+ 'ḛ' => 'ḛ',
447
+ 'Ḝ' => 'Ḝ',
448
+ 'ḝ' => 'ḝ',
449
+ 'Ḟ' => 'Ḟ',
450
+ 'ḟ' => 'ḟ',
451
+ 'Ḡ' => 'Ḡ',
452
+ 'ḡ' => 'ḡ',
453
+ 'Ḣ' => 'Ḣ',
454
+ 'ḣ' => 'ḣ',
455
+ 'Ḥ' => 'Ḥ',
456
+ 'ḥ' => 'ḥ',
457
+ 'Ḧ' => 'Ḧ',
458
+ 'ḧ' => 'ḧ',
459
+ 'Ḩ' => 'Ḩ',
460
+ 'ḩ' => 'ḩ',
461
+ 'Ḫ' => 'Ḫ',
462
+ 'ḫ' => 'ḫ',
463
+ 'Ḭ' => 'Ḭ',
464
+ 'ḭ' => 'ḭ',
465
+ 'Ḯ' => 'Ḯ',
466
+ 'ḯ' => 'ḯ',
467
+ 'Ḱ' => 'Ḱ',
468
+ 'ḱ' => 'ḱ',
469
+ 'Ḳ' => 'Ḳ',
470
+ 'ḳ' => 'ḳ',
471
+ 'Ḵ' => 'Ḵ',
472
+ 'ḵ' => 'ḵ',
473
+ 'Ḷ' => 'Ḷ',
474
+ 'ḷ' => 'ḷ',
475
+ 'Ḹ' => 'Ḹ',
476
+ 'ḹ' => 'ḹ',
477
+ 'Ḻ' => 'Ḻ',
478
+ 'ḻ' => 'ḻ',
479
+ 'Ḽ' => 'Ḽ',
480
+ 'ḽ' => 'ḽ',
481
+ 'Ḿ' => 'Ḿ',
482
+ 'ḿ' => 'ḿ',
483
+ 'Ṁ' => 'Ṁ',
484
+ 'ṁ' => 'ṁ',
485
+ 'Ṃ' => 'Ṃ',
486
+ 'ṃ' => 'ṃ',
487
+ 'Ṅ' => 'Ṅ',
488
+ 'ṅ' => 'ṅ',
489
+ 'Ṇ' => 'Ṇ',
490
+ 'ṇ' => 'ṇ',
491
+ 'Ṉ' => 'Ṉ',
492
+ 'ṉ' => 'ṉ',
493
+ 'Ṋ' => 'Ṋ',
494
+ 'ṋ' => 'ṋ',
495
+ 'Ṍ' => 'Ṍ',
496
+ 'ṍ' => 'ṍ',
497
+ 'Ṏ' => 'Ṏ',
498
+ 'ṏ' => 'ṏ',
499
+ 'Ṑ' => 'Ṑ',
500
+ 'ṑ' => 'ṑ',
501
+ 'Ṓ' => 'Ṓ',
502
+ 'ṓ' => 'ṓ',
503
+ 'Ṕ' => 'Ṕ',
504
+ 'ṕ' => 'ṕ',
505
+ 'Ṗ' => 'Ṗ',
506
+ 'ṗ' => 'ṗ',
507
+ 'Ṙ' => 'Ṙ',
508
+ 'ṙ' => 'ṙ',
509
+ 'Ṛ' => 'Ṛ',
510
+ 'ṛ' => 'ṛ',
511
+ 'Ṝ' => 'Ṝ',
512
+ 'ṝ' => 'ṝ',
513
+ 'Ṟ' => 'Ṟ',
514
+ 'ṟ' => 'ṟ',
515
+ 'Ṡ' => 'Ṡ',
516
+ 'ṡ' => 'ṡ',
517
+ 'Ṣ' => 'Ṣ',
518
+ 'ṣ' => 'ṣ',
519
+ 'Ṥ' => 'Ṥ',
520
+ 'ṥ' => 'ṥ',
521
+ 'Ṧ' => 'Ṧ',
522
+ 'ṧ' => 'ṧ',
523
+ 'Ṩ' => 'Ṩ',
524
+ 'ṩ' => 'ṩ',
525
+ 'Ṫ' => 'Ṫ',
526
+ 'ṫ' => 'ṫ',
527
+ 'Ṭ' => 'Ṭ',
528
+ 'ṭ' => 'ṭ',
529
+ 'Ṯ' => 'Ṯ',
530
+ 'ṯ' => 'ṯ',
531
+ 'Ṱ' => 'Ṱ',
532
+ 'ṱ' => 'ṱ',
533
+ 'Ṳ' => 'Ṳ',
534
+ 'ṳ' => 'ṳ',
535
+ 'Ṵ' => 'Ṵ',
536
+ 'ṵ' => 'ṵ',
537
+ 'Ṷ' => 'Ṷ',
538
+ 'ṷ' => 'ṷ',
539
+ 'Ṹ' => 'Ṹ',
540
+ 'ṹ' => 'ṹ',
541
+ 'Ṻ' => 'Ṻ',
542
+ 'ṻ' => 'ṻ',
543
+ 'Ṽ' => 'Ṽ',
544
+ 'ṽ' => 'ṽ',
545
+ 'Ṿ' => 'Ṿ',
546
+ 'ṿ' => 'ṿ',
547
+ 'Ẁ' => 'Ẁ',
548
+ 'ẁ' => 'ẁ',
549
+ 'Ẃ' => 'Ẃ',
550
+ 'ẃ' => 'ẃ',
551
+ 'Ẅ' => 'Ẅ',
552
+ 'ẅ' => 'ẅ',
553
+ 'Ẇ' => 'Ẇ',
554
+ 'ẇ' => 'ẇ',
555
+ 'Ẉ' => 'Ẉ',
556
+ 'ẉ' => 'ẉ',
557
+ 'Ẋ' => 'Ẋ',
558
+ 'ẋ' => 'ẋ',
559
+ 'Ẍ' => 'Ẍ',
560
+ 'ẍ' => 'ẍ',
561
+ 'Ẏ' => 'Ẏ',
562
+ 'ẏ' => 'ẏ',
563
+ 'Ẑ' => 'Ẑ',
564
+ 'ẑ' => 'ẑ',
565
+ 'Ẓ' => 'Ẓ',
566
+ 'ẓ' => 'ẓ',
567
+ 'Ẕ' => 'Ẕ',
568
+ 'ẕ' => 'ẕ',
569
+ 'ẖ' => 'ẖ',
570
+ 'ẗ' => 'ẗ',
571
+ 'ẘ' => 'ẘ',
572
+ 'ẙ' => 'ẙ',
573
+ 'ẛ' => 'ẛ',
574
+ 'Ạ' => 'Ạ',
575
+ 'ạ' => 'ạ',
576
+ 'Ả' => 'Ả',
577
+ 'ả' => 'ả',
578
+ 'Ấ' => 'Ấ',
579
+ 'ấ' => 'ấ',
580
+ 'Ầ' => 'Ầ',
581
+ 'ầ' => 'ầ',
582
+ 'Ẩ' => 'Ẩ',
583
+ 'ẩ' => 'ẩ',
584
+ 'Ẫ' => 'Ẫ',
585
+ 'ẫ' => 'ẫ',
586
+ 'Ậ' => 'Ậ',
587
+ 'ậ' => 'ậ',
588
+ 'Ắ' => 'Ắ',
589
+ 'ắ' => 'ắ',
590
+ 'Ằ' => 'Ằ',
591
+ 'ằ' => 'ằ',
592
+ 'Ẳ' => 'Ẳ',
593
+ 'ẳ' => 'ẳ',
594
+ 'Ẵ' => 'Ẵ',
595
+ 'ẵ' => 'ẵ',
596
+ 'Ặ' => 'Ặ',
597
+ 'ặ' => 'ặ',
598
+ 'Ẹ' => 'Ẹ',
599
+ 'ẹ' => 'ẹ',
600
+ 'Ẻ' => 'Ẻ',
601
+ 'ẻ' => 'ẻ',
602
+ 'Ẽ' => 'Ẽ',
603
+ 'ẽ' => 'ẽ',
604
+ 'Ế' => 'Ế',
605
+ 'ế' => 'ế',
606
+ 'Ề' => 'Ề',
607
+ 'ề' => 'ề',
608
+ 'Ể' => 'Ể',
609
+ 'ể' => 'ể',
610
+ 'Ễ' => 'Ễ',
611
+ 'ễ' => 'ễ',
612
+ 'Ệ' => 'Ệ',
613
+ 'ệ' => 'ệ',
614
+ 'Ỉ' => 'Ỉ',
615
+ 'ỉ' => 'ỉ',
616
+ 'Ị' => 'Ị',
617
+ 'ị' => 'ị',
618
+ 'Ọ' => 'Ọ',
619
+ 'ọ' => 'ọ',
620
+ 'Ỏ' => 'Ỏ',
621
+ 'ỏ' => 'ỏ',
622
+ 'Ố' => 'Ố',
623
+ 'ố' => 'ố',
624
+ 'Ồ' => 'Ồ',
625
+ 'ồ' => 'ồ',
626
+ 'Ổ' => 'Ổ',
627
+ 'ổ' => 'ổ',
628
+ 'Ỗ' => 'Ỗ',
629
+ 'ỗ' => 'ỗ',
630
+ 'Ộ' => 'Ộ',
631
+ 'ộ' => 'ộ',
632
+ 'Ớ' => 'Ớ',
633
+ 'ớ' => 'ớ',
634
+ 'Ờ' => 'Ờ',
635
+ 'ờ' => 'ờ',
636
+ 'Ở' => 'Ở',
637
+ 'ở' => 'ở',
638
+ 'Ỡ' => 'Ỡ',
639
+ 'ỡ' => 'ỡ',
640
+ 'Ợ' => 'Ợ',
641
+ 'ợ' => 'ợ',
642
+ 'Ụ' => 'Ụ',
643
+ 'ụ' => 'ụ',
644
+ 'Ủ' => 'Ủ',
645
+ 'ủ' => 'ủ',
646
+ 'Ứ' => 'Ứ',
647
+ 'ứ' => 'ứ',
648
+ 'Ừ' => 'Ừ',
649
+ 'ừ' => 'ừ',
650
+ 'Ử' => 'Ử',
651
+ 'ử' => 'ử',
652
+ 'Ữ' => 'Ữ',
653
+ 'ữ' => 'ữ',
654
+ 'Ự' => 'Ự',
655
+ 'ự' => 'ự',
656
+ 'Ỳ' => 'Ỳ',
657
+ 'ỳ' => 'ỳ',
658
+ 'Ỵ' => 'Ỵ',
659
+ 'ỵ' => 'ỵ',
660
+ 'Ỷ' => 'Ỷ',
661
+ 'ỷ' => 'ỷ',
662
+ 'Ỹ' => 'Ỹ',
663
+ 'ỹ' => 'ỹ',
664
+ 'ἀ' => 'ἀ',
665
+ 'ἁ' => 'ἁ',
666
+ 'ἂ' => 'ἂ',
667
+ 'ἃ' => 'ἃ',
668
+ 'ἄ' => 'ἄ',
669
+ 'ἅ' => 'ἅ',
670
+ 'ἆ' => 'ἆ',
671
+ 'ἇ' => 'ἇ',
672
+ 'Ἀ' => 'Ἀ',
673
+ 'Ἁ' => 'Ἁ',
674
+ 'Ἂ' => 'Ἂ',
675
+ 'Ἃ' => 'Ἃ',
676
+ 'Ἄ' => 'Ἄ',
677
+ 'Ἅ' => 'Ἅ',
678
+ 'Ἆ' => 'Ἆ',
679
+ 'Ἇ' => 'Ἇ',
680
+ 'ἐ' => 'ἐ',
681
+ 'ἑ' => 'ἑ',
682
+ 'ἒ' => 'ἒ',
683
+ 'ἓ' => 'ἓ',
684
+ 'ἔ' => 'ἔ',
685
+ 'ἕ' => 'ἕ',
686
+ 'Ἐ' => 'Ἐ',
687
+ 'Ἑ' => 'Ἑ',
688
+ 'Ἒ' => 'Ἒ',
689
+ 'Ἓ' => 'Ἓ',
690
+ 'Ἔ' => 'Ἔ',
691
+ 'Ἕ' => 'Ἕ',
692
+ 'ἠ' => 'ἠ',
693
+ 'ἡ' => 'ἡ',
694
+ 'ἢ' => 'ἢ',
695
+ 'ἣ' => 'ἣ',
696
+ 'ἤ' => 'ἤ',
697
+ 'ἥ' => 'ἥ',
698
+ 'ἦ' => 'ἦ',
699
+ 'ἧ' => 'ἧ',
700
+ 'Ἠ' => 'Ἠ',
701
+ 'Ἡ' => 'Ἡ',
702
+ 'Ἢ' => 'Ἢ',
703
+ 'Ἣ' => 'Ἣ',
704
+ 'Ἤ' => 'Ἤ',
705
+ 'Ἥ' => 'Ἥ',
706
+ 'Ἦ' => 'Ἦ',
707
+ 'Ἧ' => 'Ἧ',
708
+ 'ἰ' => 'ἰ',
709
+ 'ἱ' => 'ἱ',
710
+ 'ἲ' => 'ἲ',
711
+ 'ἳ' => 'ἳ',
712
+ 'ἴ' => 'ἴ',
713
+ 'ἵ' => 'ἵ',
714
+ 'ἶ' => 'ἶ',
715
+ 'ἷ' => 'ἷ',
716
+ 'Ἰ' => 'Ἰ',
717
+ 'Ἱ' => 'Ἱ',
718
+ 'Ἲ' => 'Ἲ',
719
+ 'Ἳ' => 'Ἳ',
720
+ 'Ἴ' => 'Ἴ',
721
+ 'Ἵ' => 'Ἵ',
722
+ 'Ἶ' => 'Ἶ',
723
+ 'Ἷ' => 'Ἷ',
724
+ 'ὀ' => 'ὀ',
725
+ 'ὁ' => 'ὁ',
726
+ 'ὂ' => 'ὂ',
727
+ 'ὃ' => 'ὃ',
728
+ 'ὄ' => 'ὄ',
729
+ 'ὅ' => 'ὅ',
730
+ 'Ὀ' => 'Ὀ',
731
+ 'Ὁ' => 'Ὁ',
732
+ 'Ὂ' => 'Ὂ',
733
+ 'Ὃ' => 'Ὃ',
734
+ 'Ὄ' => 'Ὄ',
735
+ 'Ὅ' => 'Ὅ',
736
+ 'ὐ' => 'ὐ',
737
+ 'ὑ' => 'ὑ',
738
+ 'ὒ' => 'ὒ',
739
+ 'ὓ' => 'ὓ',
740
+ 'ὔ' => 'ὔ',
741
+ 'ὕ' => 'ὕ',
742
+ 'ὖ' => 'ὖ',
743
+ 'ὗ' => 'ὗ',
744
+ 'Ὑ' => 'Ὑ',
745
+ 'Ὓ' => 'Ὓ',
746
+ 'Ὕ' => 'Ὕ',
747
+ 'Ὗ' => 'Ὗ',
748
+ 'ὠ' => 'ὠ',
749
+ 'ὡ' => 'ὡ',
750
+ 'ὢ' => 'ὢ',
751
+ 'ὣ' => 'ὣ',
752
+ 'ὤ' => 'ὤ',
753
+ 'ὥ' => 'ὥ',
754
+ 'ὦ' => 'ὦ',
755
+ 'ὧ' => 'ὧ',
756
+ 'Ὠ' => 'Ὠ',
757
+ 'Ὡ' => 'Ὡ',
758
+ 'Ὢ' => 'Ὢ',
759
+ 'Ὣ' => 'Ὣ',
760
+ 'Ὤ' => 'Ὤ',
761
+ 'Ὥ' => 'Ὥ',
762
+ 'Ὦ' => 'Ὦ',
763
+ 'Ὧ' => 'Ὧ',
764
+ 'ὰ' => 'ὰ',
765
+ 'ά' => 'ά',
766
+ 'ὲ' => 'ὲ',
767
+ 'έ' => 'έ',
768
+ 'ὴ' => 'ὴ',
769
+ 'ή' => 'ή',
770
+ 'ὶ' => 'ὶ',
771
+ 'ί' => 'ί',
772
+ 'ὸ' => 'ὸ',
773
+ 'ό' => 'ό',
774
+ 'ὺ' => 'ὺ',
775
+ 'ύ' => 'ύ',
776
+ 'ὼ' => 'ὼ',
777
+ 'ώ' => 'ώ',
778
+ 'ᾀ' => 'ᾀ',
779
+ 'ᾁ' => 'ᾁ',
780
+ 'ᾂ' => 'ᾂ',
781
+ 'ᾃ' => 'ᾃ',
782
+ 'ᾄ' => 'ᾄ',
783
+ 'ᾅ' => 'ᾅ',
784
+ 'ᾆ' => 'ᾆ',
785
+ 'ᾇ' => 'ᾇ',
786
+ 'ᾈ' => 'ᾈ',
787
+ 'ᾉ' => 'ᾉ',
788
+ 'ᾊ' => 'ᾊ',
789
+ 'ᾋ' => 'ᾋ',
790
+ 'ᾌ' => 'ᾌ',
791
+ 'ᾍ' => 'ᾍ',
792
+ 'ᾎ' => 'ᾎ',
793
+ 'ᾏ' => 'ᾏ',
794
+ 'ᾐ' => 'ᾐ',
795
+ 'ᾑ' => 'ᾑ',
796
+ 'ᾒ' => 'ᾒ',
797
+ 'ᾓ' => 'ᾓ',
798
+ 'ᾔ' => 'ᾔ',
799
+ 'ᾕ' => 'ᾕ',
800
+ 'ᾖ' => 'ᾖ',
801
+ 'ᾗ' => 'ᾗ',
802
+ 'ᾘ' => 'ᾘ',
803
+ 'ᾙ' => 'ᾙ',
804
+ 'ᾚ' => 'ᾚ',
805
+ 'ᾛ' => 'ᾛ',
806
+ 'ᾜ' => 'ᾜ',
807
+ 'ᾝ' => 'ᾝ',
808
+ 'ᾞ' => 'ᾞ',
809
+ 'ᾟ' => 'ᾟ',
810
+ 'ᾠ' => 'ᾠ',
811
+ 'ᾡ' => 'ᾡ',
812
+ 'ᾢ' => 'ᾢ',
813
+ 'ᾣ' => 'ᾣ',
814
+ 'ᾤ' => 'ᾤ',
815
+ 'ᾥ' => 'ᾥ',
816
+ 'ᾦ' => 'ᾦ',
817
+ 'ᾧ' => 'ᾧ',
818
+ 'ᾨ' => 'ᾨ',
819
+ 'ᾩ' => 'ᾩ',
820
+ 'ᾪ' => 'ᾪ',
821
+ 'ᾫ' => 'ᾫ',
822
+ 'ᾬ' => 'ᾬ',
823
+ 'ᾭ' => 'ᾭ',
824
+ 'ᾮ' => 'ᾮ',
825
+ 'ᾯ' => 'ᾯ',
826
+ 'ᾰ' => 'ᾰ',
827
+ 'ᾱ' => 'ᾱ',
828
+ 'ᾲ' => 'ᾲ',
829
+ 'ᾳ' => 'ᾳ',
830
+ 'ᾴ' => 'ᾴ',
831
+ 'ᾶ' => 'ᾶ',
832
+ 'ᾷ' => 'ᾷ',
833
+ 'Ᾰ' => 'Ᾰ',
834
+ 'Ᾱ' => 'Ᾱ',
835
+ 'Ὰ' => 'Ὰ',
836
+ 'Ά' => 'Ά',
837
+ 'ᾼ' => 'ᾼ',
838
+ 'ι' => 'ι',
839
+ '῁' => '῁',
840
+ 'ῂ' => 'ῂ',
841
+ 'ῃ' => 'ῃ',
842
+ 'ῄ' => 'ῄ',
843
+ 'ῆ' => 'ῆ',
844
+ 'ῇ' => 'ῇ',
845
+ 'Ὲ' => 'Ὲ',
846
+ 'Έ' => 'Έ',
847
+ 'Ὴ' => 'Ὴ',
848
+ 'Ή' => 'Ή',
849
+ 'ῌ' => 'ῌ',
850
+ '῍' => '῍',
851
+ '῎' => '῎',
852
+ '῏' => '῏',
853
+ 'ῐ' => 'ῐ',
854
+ 'ῑ' => 'ῑ',
855
+ 'ῒ' => 'ῒ',
856
+ 'ΐ' => 'ΐ',
857
+ 'ῖ' => 'ῖ',
858
+ 'ῗ' => 'ῗ',
859
+ 'Ῐ' => 'Ῐ',
860
+ 'Ῑ' => 'Ῑ',
861
+ 'Ὶ' => 'Ὶ',
862
+ 'Ί' => 'Ί',
863
+ '῝' => '῝',
864
+ '῞' => '῞',
865
+ '῟' => '῟',
866
+ 'ῠ' => 'ῠ',
867
+ 'ῡ' => 'ῡ',
868
+ 'ῢ' => 'ῢ',
869
+ 'ΰ' => 'ΰ',
870
+ 'ῤ' => 'ῤ',
871
+ 'ῥ' => 'ῥ',
872
+ 'ῦ' => 'ῦ',
873
+ 'ῧ' => 'ῧ',
874
+ 'Ῠ' => 'Ῠ',
875
+ 'Ῡ' => 'Ῡ',
876
+ 'Ὺ' => 'Ὺ',
877
+ 'Ύ' => 'Ύ',
878
+ 'Ῥ' => 'Ῥ',
879
+ '῭' => '῭',
880
+ '΅' => '΅',
881
+ '`' => '`',
882
+ 'ῲ' => 'ῲ',
883
+ 'ῳ' => 'ῳ',
884
+ 'ῴ' => 'ῴ',
885
+ 'ῶ' => 'ῶ',
886
+ 'ῷ' => 'ῷ',
887
+ 'Ὸ' => 'Ὸ',
888
+ 'Ό' => 'Ό',
889
+ 'Ὼ' => 'Ὼ',
890
+ 'Ώ' => 'Ώ',
891
+ 'ῼ' => 'ῼ',
892
+ '´' => '´',
893
+ ' ' => ' ',
894
+ ' ' => ' ',
895
+ 'Ω' => 'Ω',
896
+ 'K' => 'K',
897
+ 'Å' => 'Å',
898
+ '↚' => '↚',
899
+ '↛' => '↛',
900
+ '↮' => '↮',
901
+ '⇍' => '⇍',
902
+ '⇎' => '⇎',
903
+ '⇏' => '⇏',
904
+ '∄' => '∄',
905
+ '∉' => '∉',
906
+ '∌' => '∌',
907
+ '∤' => '∤',
908
+ '∦' => '∦',
909
+ '≁' => '≁',
910
+ '≄' => '≄',
911
+ '≇' => '≇',
912
+ '≉' => '≉',
913
+ '≠' => '≠',
914
+ '≢' => '≢',
915
+ '≭' => '≭',
916
+ '≮' => '≮',
917
+ '≯' => '≯',
918
+ '≰' => '≰',
919
+ '≱' => '≱',
920
+ '≴' => '≴',
921
+ '≵' => '≵',
922
+ '≸' => '≸',
923
+ '≹' => '≹',
924
+ '⊀' => '⊀',
925
+ '⊁' => '⊁',
926
+ '⊄' => '⊄',
927
+ '⊅' => '⊅',
928
+ '⊈' => '⊈',
929
+ '⊉' => '⊉',
930
+ '⊬' => '⊬',
931
+ '⊭' => '⊭',
932
+ '⊮' => '⊮',
933
+ '⊯' => '⊯',
934
+ '⋠' => '⋠',
935
+ '⋡' => '⋡',
936
+ '⋢' => '⋢',
937
+ '⋣' => '⋣',
938
+ '⋪' => '⋪',
939
+ '⋫' => '⋫',
940
+ '⋬' => '⋬',
941
+ '⋭' => '⋭',
942
+ '〈' => '〈',
943
+ '〉' => '〉',
944
+ '⫝̸' => '⫝̸',
945
+ 'が' => 'が',
946
+ 'ぎ' => 'ぎ',
947
+ 'ぐ' => 'ぐ',
948
+ 'げ' => 'げ',
949
+ 'ご' => 'ご',
950
+ 'ざ' => 'ざ',
951
+ 'じ' => 'じ',
952
+ 'ず' => 'ず',
953
+ 'ぜ' => 'ぜ',
954
+ 'ぞ' => 'ぞ',
955
+ 'だ' => 'だ',
956
+ 'ぢ' => 'ぢ',
957
+ 'づ' => 'づ',
958
+ 'で' => 'で',
959
+ 'ど' => 'ど',
960
+ 'ば' => 'ば',
961
+ 'ぱ' => 'ぱ',
962
+ 'び' => 'び',
963
+ 'ぴ' => 'ぴ',
964
+ 'ぶ' => 'ぶ',
965
+ 'ぷ' => 'ぷ',
966
+ 'べ' => 'べ',
967
+ 'ぺ' => 'ぺ',
968
+ 'ぼ' => 'ぼ',
969
+ 'ぽ' => 'ぽ',
970
+ 'ゔ' => 'ゔ',
971
+ 'ゞ' => 'ゞ',
972
+ 'ガ' => 'ガ',
973
+ 'ギ' => 'ギ',
974
+ 'グ' => 'グ',
975
+ 'ゲ' => 'ゲ',
976
+ 'ゴ' => 'ゴ',
977
+ 'ザ' => 'ザ',
978
+ 'ジ' => 'ジ',
979
+ 'ズ' => 'ズ',
980
+ 'ゼ' => 'ゼ',
981
+ 'ゾ' => 'ゾ',
982
+ 'ダ' => 'ダ',
983
+ 'ヂ' => 'ヂ',
984
+ 'ヅ' => 'ヅ',
985
+ 'デ' => 'デ',
986
+ 'ド' => 'ド',
987
+ 'バ' => 'バ',
988
+ 'パ' => 'パ',
989
+ 'ビ' => 'ビ',
990
+ 'ピ' => 'ピ',
991
+ 'ブ' => 'ブ',
992
+ 'プ' => 'プ',
993
+ 'ベ' => 'ベ',
994
+ 'ペ' => 'ペ',
995
+ 'ボ' => 'ボ',
996
+ 'ポ' => 'ポ',
997
+ 'ヴ' => 'ヴ',
998
+ 'ヷ' => 'ヷ',
999
+ 'ヸ' => 'ヸ',
1000
+ 'ヹ' => 'ヹ',
1001
+ 'ヺ' => 'ヺ',
1002
+ 'ヾ' => 'ヾ',
1003
+ '豈' => '豈',
1004
+ '更' => '更',
1005
+ '車' => '車',
1006
+ '賈' => '賈',
1007
+ '滑' => '滑',
1008
+ '串' => '串',
1009
+ '句' => '句',
1010
+ '龜' => '龜',
1011
+ '龜' => '龜',
1012
+ '契' => '契',
1013
+ '金' => '金',
1014
+ '喇' => '喇',
1015
+ '奈' => '奈',
1016
+ '懶' => '懶',
1017
+ '癩' => '癩',
1018
+ '羅' => '羅',
1019
+ '蘿' => '蘿',
1020
+ '螺' => '螺',
1021
+ '裸' => '裸',
1022
+ '邏' => '邏',
1023
+ '樂' => '樂',
1024
+ '洛' => '洛',
1025
+ '烙' => '烙',
1026
+ '珞' => '珞',
1027
+ '落' => '落',
1028
+ '酪' => '酪',
1029
+ '駱' => '駱',
1030
+ '亂' => '亂',
1031
+ '卵' => '卵',
1032
+ '欄' => '欄',
1033
+ '爛' => '爛',
1034
+ '蘭' => '蘭',
1035
+ '鸞' => '鸞',
1036
+ '嵐' => '嵐',
1037
+ '濫' => '濫',
1038
+ '藍' => '藍',
1039
+ '襤' => '襤',
1040
+ '拉' => '拉',
1041
+ '臘' => '臘',
1042
+ '蠟' => '蠟',
1043
+ '廊' => '廊',
1044
+ '朗' => '朗',
1045
+ '浪' => '浪',
1046
+ '狼' => '狼',
1047
+ '郎' => '郎',
1048
+ '來' => '來',
1049
+ '冷' => '冷',
1050
+ '勞' => '勞',
1051
+ '擄' => '擄',
1052
+ '櫓' => '櫓',
1053
+ '爐' => '爐',
1054
+ '盧' => '盧',
1055
+ '老' => '老',
1056
+ '蘆' => '蘆',
1057
+ '虜' => '虜',
1058
+ '路' => '路',
1059
+ '露' => '露',
1060
+ '魯' => '魯',
1061
+ '鷺' => '鷺',
1062
+ '碌' => '碌',
1063
+ '祿' => '祿',
1064
+ '綠' => '綠',
1065
+ '菉' => '菉',
1066
+ '錄' => '錄',
1067
+ '鹿' => '鹿',
1068
+ '論' => '論',
1069
+ '壟' => '壟',
1070
+ '弄' => '弄',
1071
+ '籠' => '籠',
1072
+ '聾' => '聾',
1073
+ '牢' => '牢',
1074
+ '磊' => '磊',
1075
+ '賂' => '賂',
1076
+ '雷' => '雷',
1077
+ '壘' => '壘',
1078
+ '屢' => '屢',
1079
+ '樓' => '樓',
1080
+ '淚' => '淚',
1081
+ '漏' => '漏',
1082
+ '累' => '累',
1083
+ '縷' => '縷',
1084
+ '陋' => '陋',
1085
+ '勒' => '勒',
1086
+ '肋' => '肋',
1087
+ '凜' => '凜',
1088
+ '凌' => '凌',
1089
+ '稜' => '稜',
1090
+ '綾' => '綾',
1091
+ '菱' => '菱',
1092
+ '陵' => '陵',
1093
+ '讀' => '讀',
1094
+ '拏' => '拏',
1095
+ '樂' => '樂',
1096
+ '諾' => '諾',
1097
+ '丹' => '丹',
1098
+ '寧' => '寧',
1099
+ '怒' => '怒',
1100
+ '率' => '率',
1101
+ '異' => '異',
1102
+ '北' => '北',
1103
+ '磻' => '磻',
1104
+ '便' => '便',
1105
+ '復' => '復',
1106
+ '不' => '不',
1107
+ '泌' => '泌',
1108
+ '數' => '數',
1109
+ '索' => '索',
1110
+ '參' => '參',
1111
+ '塞' => '塞',
1112
+ '省' => '省',
1113
+ '葉' => '葉',
1114
+ '說' => '說',
1115
+ '殺' => '殺',
1116
+ '辰' => '辰',
1117
+ '沈' => '沈',
1118
+ '拾' => '拾',
1119
+ '若' => '若',
1120
+ '掠' => '掠',
1121
+ '略' => '略',
1122
+ '亮' => '亮',
1123
+ '兩' => '兩',
1124
+ '凉' => '凉',
1125
+ '梁' => '梁',
1126
+ '糧' => '糧',
1127
+ '良' => '良',
1128
+ '諒' => '諒',
1129
+ '量' => '量',
1130
+ '勵' => '勵',
1131
+ '呂' => '呂',
1132
+ '女' => '女',
1133
+ '廬' => '廬',
1134
+ '旅' => '旅',
1135
+ '濾' => '濾',
1136
+ '礪' => '礪',
1137
+ '閭' => '閭',
1138
+ '驪' => '驪',
1139
+ '麗' => '麗',
1140
+ '黎' => '黎',
1141
+ '力' => '力',
1142
+ '曆' => '曆',
1143
+ '歷' => '歷',
1144
+ '轢' => '轢',
1145
+ '年' => '年',
1146
+ '憐' => '憐',
1147
+ '戀' => '戀',
1148
+ '撚' => '撚',
1149
+ '漣' => '漣',
1150
+ '煉' => '煉',
1151
+ '璉' => '璉',
1152
+ '秊' => '秊',
1153
+ '練' => '練',
1154
+ '聯' => '聯',
1155
+ '輦' => '輦',
1156
+ '蓮' => '蓮',
1157
+ '連' => '連',
1158
+ '鍊' => '鍊',
1159
+ '列' => '列',
1160
+ '劣' => '劣',
1161
+ '咽' => '咽',
1162
+ '烈' => '烈',
1163
+ '裂' => '裂',
1164
+ '說' => '說',
1165
+ '廉' => '廉',
1166
+ '念' => '念',
1167
+ '捻' => '捻',
1168
+ '殮' => '殮',
1169
+ '簾' => '簾',
1170
+ '獵' => '獵',
1171
+ '令' => '令',
1172
+ '囹' => '囹',
1173
+ '寧' => '寧',
1174
+ '嶺' => '嶺',
1175
+ '怜' => '怜',
1176
+ '玲' => '玲',
1177
+ '瑩' => '瑩',
1178
+ '羚' => '羚',
1179
+ '聆' => '聆',
1180
+ '鈴' => '鈴',
1181
+ '零' => '零',
1182
+ '靈' => '靈',
1183
+ '領' => '領',
1184
+ '例' => '例',
1185
+ '禮' => '禮',
1186
+ '醴' => '醴',
1187
+ '隸' => '隸',
1188
+ '惡' => '惡',
1189
+ '了' => '了',
1190
+ '僚' => '僚',
1191
+ '寮' => '寮',
1192
+ '尿' => '尿',
1193
+ '料' => '料',
1194
+ '樂' => '樂',
1195
+ '燎' => '燎',
1196
+ '療' => '療',
1197
+ '蓼' => '蓼',
1198
+ '遼' => '遼',
1199
+ '龍' => '龍',
1200
+ '暈' => '暈',
1201
+ '阮' => '阮',
1202
+ '劉' => '劉',
1203
+ '杻' => '杻',
1204
+ '柳' => '柳',
1205
+ '流' => '流',
1206
+ '溜' => '溜',
1207
+ '琉' => '琉',
1208
+ '留' => '留',
1209
+ '硫' => '硫',
1210
+ '紐' => '紐',
1211
+ '類' => '類',
1212
+ '六' => '六',
1213
+ '戮' => '戮',
1214
+ '陸' => '陸',
1215
+ '倫' => '倫',
1216
+ '崙' => '崙',
1217
+ '淪' => '淪',
1218
+ '輪' => '輪',
1219
+ '律' => '律',
1220
+ '慄' => '慄',
1221
+ '栗' => '栗',
1222
+ '率' => '率',
1223
+ '隆' => '隆',
1224
+ '利' => '利',
1225
+ '吏' => '吏',
1226
+ '履' => '履',
1227
+ '易' => '易',
1228
+ '李' => '李',
1229
+ '梨' => '梨',
1230
+ '泥' => '泥',
1231
+ '理' => '理',
1232
+ '痢' => '痢',
1233
+ '罹' => '罹',
1234
+ '裏' => '裏',
1235
+ '裡' => '裡',
1236
+ '里' => '里',
1237
+ '離' => '離',
1238
+ '匿' => '匿',
1239
+ '溺' => '溺',
1240
+ '吝' => '吝',
1241
+ '燐' => '燐',
1242
+ '璘' => '璘',
1243
+ '藺' => '藺',
1244
+ '隣' => '隣',
1245
+ '鱗' => '鱗',
1246
+ '麟' => '麟',
1247
+ '林' => '林',
1248
+ '淋' => '淋',
1249
+ '臨' => '臨',
1250
+ '立' => '立',
1251
+ '笠' => '笠',
1252
+ '粒' => '粒',
1253
+ '狀' => '狀',
1254
+ '炙' => '炙',
1255
+ '識' => '識',
1256
+ '什' => '什',
1257
+ '茶' => '茶',
1258
+ '刺' => '刺',
1259
+ '切' => '切',
1260
+ '度' => '度',
1261
+ '拓' => '拓',
1262
+ '糖' => '糖',
1263
+ '宅' => '宅',
1264
+ '洞' => '洞',
1265
+ '暴' => '暴',
1266
+ '輻' => '輻',
1267
+ '行' => '行',
1268
+ '降' => '降',
1269
+ '見' => '見',
1270
+ '廓' => '廓',
1271
+ '兀' => '兀',
1272
+ '嗀' => '嗀',
1273
+ '塚' => '塚',
1274
+ '晴' => '晴',
1275
+ '凞' => '凞',
1276
+ '猪' => '猪',
1277
+ '益' => '益',
1278
+ '礼' => '礼',
1279
+ '神' => '神',
1280
+ '祥' => '祥',
1281
+ '福' => '福',
1282
+ '靖' => '靖',
1283
+ '精' => '精',
1284
+ '羽' => '羽',
1285
+ '蘒' => '蘒',
1286
+ '諸' => '諸',
1287
+ '逸' => '逸',
1288
+ '都' => '都',
1289
+ '飯' => '飯',
1290
+ '飼' => '飼',
1291
+ '館' => '館',
1292
+ '鶴' => '鶴',
1293
+ '郞' => '郞',
1294
+ '隷' => '隷',
1295
+ '侮' => '侮',
1296
+ '僧' => '僧',
1297
+ '免' => '免',
1298
+ '勉' => '勉',
1299
+ '勤' => '勤',
1300
+ '卑' => '卑',
1301
+ '喝' => '喝',
1302
+ '嘆' => '嘆',
1303
+ '器' => '器',
1304
+ '塀' => '塀',
1305
+ '墨' => '墨',
1306
+ '層' => '層',
1307
+ '屮' => '屮',
1308
+ '悔' => '悔',
1309
+ '慨' => '慨',
1310
+ '憎' => '憎',
1311
+ '懲' => '懲',
1312
+ '敏' => '敏',
1313
+ '既' => '既',
1314
+ '暑' => '暑',
1315
+ '梅' => '梅',
1316
+ '海' => '海',
1317
+ '渚' => '渚',
1318
+ '漢' => '漢',
1319
+ '煮' => '煮',
1320
+ '爫' => '爫',
1321
+ '琢' => '琢',
1322
+ '碑' => '碑',
1323
+ '社' => '社',
1324
+ '祉' => '祉',
1325
+ '祈' => '祈',
1326
+ '祐' => '祐',
1327
+ '祖' => '祖',
1328
+ '祝' => '祝',
1329
+ '禍' => '禍',
1330
+ '禎' => '禎',
1331
+ '穀' => '穀',
1332
+ '突' => '突',
1333
+ '節' => '節',
1334
+ '練' => '練',
1335
+ '縉' => '縉',
1336
+ '繁' => '繁',
1337
+ '署' => '署',
1338
+ '者' => '者',
1339
+ '臭' => '臭',
1340
+ '艹' => '艹',
1341
+ '艹' => '艹',
1342
+ '著' => '著',
1343
+ '褐' => '褐',
1344
+ '視' => '視',
1345
+ '謁' => '謁',
1346
+ '謹' => '謹',
1347
+ '賓' => '賓',
1348
+ '贈' => '贈',
1349
+ '辶' => '辶',
1350
+ '逸' => '逸',
1351
+ '難' => '難',
1352
+ '響' => '響',
1353
+ '頻' => '頻',
1354
+ '恵' => '恵',
1355
+ '𤋮' => '𤋮',
1356
+ '舘' => '舘',
1357
+ '並' => '並',
1358
+ '况' => '况',
1359
+ '全' => '全',
1360
+ '侀' => '侀',
1361
+ '充' => '充',
1362
+ '冀' => '冀',
1363
+ '勇' => '勇',
1364
+ '勺' => '勺',
1365
+ '喝' => '喝',
1366
+ '啕' => '啕',
1367
+ '喙' => '喙',
1368
+ '嗢' => '嗢',
1369
+ '塚' => '塚',
1370
+ '墳' => '墳',
1371
+ '奄' => '奄',
1372
+ '奔' => '奔',
1373
+ '婢' => '婢',
1374
+ '嬨' => '嬨',
1375
+ '廒' => '廒',
1376
+ '廙' => '廙',
1377
+ '彩' => '彩',
1378
+ '徭' => '徭',
1379
+ '惘' => '惘',
1380
+ '慎' => '慎',
1381
+ '愈' => '愈',
1382
+ '憎' => '憎',
1383
+ '慠' => '慠',
1384
+ '懲' => '懲',
1385
+ '戴' => '戴',
1386
+ '揄' => '揄',
1387
+ '搜' => '搜',
1388
+ '摒' => '摒',
1389
+ '敖' => '敖',
1390
+ '晴' => '晴',
1391
+ '朗' => '朗',
1392
+ '望' => '望',
1393
+ '杖' => '杖',
1394
+ '歹' => '歹',
1395
+ '殺' => '殺',
1396
+ '流' => '流',
1397
+ '滛' => '滛',
1398
+ '滋' => '滋',
1399
+ '漢' => '漢',
1400
+ '瀞' => '瀞',
1401
+ '煮' => '煮',
1402
+ '瞧' => '瞧',
1403
+ '爵' => '爵',
1404
+ '犯' => '犯',
1405
+ '猪' => '猪',
1406
+ '瑱' => '瑱',
1407
+ '甆' => '甆',
1408
+ '画' => '画',
1409
+ '瘝' => '瘝',
1410
+ '瘟' => '瘟',
1411
+ '益' => '益',
1412
+ '盛' => '盛',
1413
+ '直' => '直',
1414
+ '睊' => '睊',
1415
+ '着' => '着',
1416
+ '磌' => '磌',
1417
+ '窱' => '窱',
1418
+ '節' => '節',
1419
+ '类' => '类',
1420
+ '絛' => '絛',
1421
+ '練' => '練',
1422
+ '缾' => '缾',
1423
+ '者' => '者',
1424
+ '荒' => '荒',
1425
+ '華' => '華',
1426
+ '蝹' => '蝹',
1427
+ '襁' => '襁',
1428
+ '覆' => '覆',
1429
+ '視' => '視',
1430
+ '調' => '調',
1431
+ '諸' => '諸',
1432
+ '請' => '請',
1433
+ '謁' => '謁',
1434
+ '諾' => '諾',
1435
+ '諭' => '諭',
1436
+ '謹' => '謹',
1437
+ '變' => '變',
1438
+ '贈' => '贈',
1439
+ '輸' => '輸',
1440
+ '遲' => '遲',
1441
+ '醙' => '醙',
1442
+ '鉶' => '鉶',
1443
+ '陼' => '陼',
1444
+ '難' => '難',
1445
+ '靖' => '靖',
1446
+ '韛' => '韛',
1447
+ '響' => '響',
1448
+ '頋' => '頋',
1449
+ '頻' => '頻',
1450
+ '鬒' => '鬒',
1451
+ '龜' => '龜',
1452
+ '𢡊' => '𢡊',
1453
+ '𢡄' => '𢡄',
1454
+ '𣏕' => '𣏕',
1455
+ '㮝' => '㮝',
1456
+ '䀘' => '䀘',
1457
+ '䀹' => '䀹',
1458
+ '𥉉' => '𥉉',
1459
+ '𥳐' => '𥳐',
1460
+ '𧻓' => '𧻓',
1461
+ '齃' => '齃',
1462
+ '龎' => '龎',
1463
+ 'יִ' => 'יִ',
1464
+ 'ײַ' => 'ײַ',
1465
+ 'שׁ' => 'שׁ',
1466
+ 'שׂ' => 'שׂ',
1467
+ 'שּׁ' => 'שּׁ',
1468
+ 'שּׂ' => 'שּׂ',
1469
+ 'אַ' => 'אַ',
1470
+ 'אָ' => 'אָ',
1471
+ 'אּ' => 'אּ',
1472
+ 'בּ' => 'בּ',
1473
+ 'גּ' => 'גּ',
1474
+ 'דּ' => 'דּ',
1475
+ 'הּ' => 'הּ',
1476
+ 'וּ' => 'וּ',
1477
+ 'זּ' => 'זּ',
1478
+ 'טּ' => 'טּ',
1479
+ 'יּ' => 'יּ',
1480
+ 'ךּ' => 'ךּ',
1481
+ 'כּ' => 'כּ',
1482
+ 'לּ' => 'לּ',
1483
+ 'מּ' => 'מּ',
1484
+ 'נּ' => 'נּ',
1485
+ 'סּ' => 'סּ',
1486
+ 'ףּ' => 'ףּ',
1487
+ 'פּ' => 'פּ',
1488
+ 'צּ' => 'צּ',
1489
+ 'קּ' => 'קּ',
1490
+ 'רּ' => 'רּ',
1491
+ 'שּ' => 'שּ',
1492
+ 'תּ' => 'תּ',
1493
+ 'וֹ' => 'וֹ',
1494
+ 'בֿ' => 'בֿ',
1495
+ 'כֿ' => 'כֿ',
1496
+ 'פֿ' => 'פֿ',
1497
+ '𑂚' => '𑂚',
1498
+ '𑂜' => '𑂜',
1499
+ '𑂫' => '𑂫',
1500
+ '𑄮' => '𑄮',
1501
+ '𑄯' => '𑄯',
1502
+ '𑍋' => '𑍋',
1503
+ '𑍌' => '𑍌',
1504
+ '𑒻' => '𑒻',
1505
+ '𑒼' => '𑒼',
1506
+ '𑒾' => '𑒾',
1507
+ '𑖺' => '𑖺',
1508
+ '𑖻' => '𑖻',
1509
+ '𑤸' => '𑤸',
1510
+ '𝅗𝅥' => '𝅗𝅥',
1511
+ '𝅘𝅥' => '𝅘𝅥',
1512
+ '𝅘𝅥𝅮' => '𝅘𝅥𝅮',
1513
+ '𝅘𝅥𝅯' => '𝅘𝅥𝅯',
1514
+ '𝅘𝅥𝅰' => '𝅘𝅥𝅰',
1515
+ '𝅘𝅥𝅱' => '𝅘𝅥𝅱',
1516
+ '𝅘𝅥𝅲' => '𝅘𝅥𝅲',
1517
+ '𝆹𝅥' => '𝆹𝅥',
1518
+ '𝆺𝅥' => '𝆺𝅥',
1519
+ '𝆹𝅥𝅮' => '𝆹𝅥𝅮',
1520
+ '𝆺𝅥𝅮' => '𝆺𝅥𝅮',
1521
+ '𝆹𝅥𝅯' => '𝆹𝅥𝅯',
1522
+ '𝆺𝅥𝅯' => '𝆺𝅥𝅯',
1523
+ '丽' => '丽',
1524
+ '丸' => '丸',
1525
+ '乁' => '乁',
1526
+ '𠄢' => '𠄢',
1527
+ '你' => '你',
1528
+ '侮' => '侮',
1529
+ '侻' => '侻',
1530
+ '倂' => '倂',
1531
+ '偺' => '偺',
1532
+ '備' => '備',
1533
+ '僧' => '僧',
1534
+ '像' => '像',
1535
+ '㒞' => '㒞',
1536
+ '𠘺' => '𠘺',
1537
+ '免' => '免',
1538
+ '兔' => '兔',
1539
+ '兤' => '兤',
1540
+ '具' => '具',
1541
+ '𠔜' => '𠔜',
1542
+ '㒹' => '㒹',
1543
+ '內' => '內',
1544
+ '再' => '再',
1545
+ '𠕋' => '𠕋',
1546
+ '冗' => '冗',
1547
+ '冤' => '冤',
1548
+ '仌' => '仌',
1549
+ '冬' => '冬',
1550
+ '况' => '况',
1551
+ '𩇟' => '𩇟',
1552
+ '凵' => '凵',
1553
+ '刃' => '刃',
1554
+ '㓟' => '㓟',
1555
+ '刻' => '刻',
1556
+ '剆' => '剆',
1557
+ '割' => '割',
1558
+ '剷' => '剷',
1559
+ '㔕' => '㔕',
1560
+ '勇' => '勇',
1561
+ '勉' => '勉',
1562
+ '勤' => '勤',
1563
+ '勺' => '勺',
1564
+ '包' => '包',
1565
+ '匆' => '匆',
1566
+ '北' => '北',
1567
+ '卉' => '卉',
1568
+ '卑' => '卑',
1569
+ '博' => '博',
1570
+ '即' => '即',
1571
+ '卽' => '卽',
1572
+ '卿' => '卿',
1573
+ '卿' => '卿',
1574
+ '卿' => '卿',
1575
+ '𠨬' => '𠨬',
1576
+ '灰' => '灰',
1577
+ '及' => '及',
1578
+ '叟' => '叟',
1579
+ '𠭣' => '𠭣',
1580
+ '叫' => '叫',
1581
+ '叱' => '叱',
1582
+ '吆' => '吆',
1583
+ '咞' => '咞',
1584
+ '吸' => '吸',
1585
+ '呈' => '呈',
1586
+ '周' => '周',
1587
+ '咢' => '咢',
1588
+ '哶' => '哶',
1589
+ '唐' => '唐',
1590
+ '啓' => '啓',
1591
+ '啣' => '啣',
1592
+ '善' => '善',
1593
+ '善' => '善',
1594
+ '喙' => '喙',
1595
+ '喫' => '喫',
1596
+ '喳' => '喳',
1597
+ '嗂' => '嗂',
1598
+ '圖' => '圖',
1599
+ '嘆' => '嘆',
1600
+ '圗' => '圗',
1601
+ '噑' => '噑',
1602
+ '噴' => '噴',
1603
+ '切' => '切',
1604
+ '壮' => '壮',
1605
+ '城' => '城',
1606
+ '埴' => '埴',
1607
+ '堍' => '堍',
1608
+ '型' => '型',
1609
+ '堲' => '堲',
1610
+ '報' => '報',
1611
+ '墬' => '墬',
1612
+ '𡓤' => '𡓤',
1613
+ '売' => '売',
1614
+ '壷' => '壷',
1615
+ '夆' => '夆',
1616
+ '多' => '多',
1617
+ '夢' => '夢',
1618
+ '奢' => '奢',
1619
+ '𡚨' => '𡚨',
1620
+ '𡛪' => '𡛪',
1621
+ '姬' => '姬',
1622
+ '娛' => '娛',
1623
+ '娧' => '娧',
1624
+ '姘' => '姘',
1625
+ '婦' => '婦',
1626
+ '㛮' => '㛮',
1627
+ '㛼' => '㛼',
1628
+ '嬈' => '嬈',
1629
+ '嬾' => '嬾',
1630
+ '嬾' => '嬾',
1631
+ '𡧈' => '𡧈',
1632
+ '寃' => '寃',
1633
+ '寘' => '寘',
1634
+ '寧' => '寧',
1635
+ '寳' => '寳',
1636
+ '𡬘' => '𡬘',
1637
+ '寿' => '寿',
1638
+ '将' => '将',
1639
+ '当' => '当',
1640
+ '尢' => '尢',
1641
+ '㞁' => '㞁',
1642
+ '屠' => '屠',
1643
+ '屮' => '屮',
1644
+ '峀' => '峀',
1645
+ '岍' => '岍',
1646
+ '𡷤' => '𡷤',
1647
+ '嵃' => '嵃',
1648
+ '𡷦' => '𡷦',
1649
+ '嵮' => '嵮',
1650
+ '嵫' => '嵫',
1651
+ '嵼' => '嵼',
1652
+ '巡' => '巡',
1653
+ '巢' => '巢',
1654
+ '㠯' => '㠯',
1655
+ '巽' => '巽',
1656
+ '帨' => '帨',
1657
+ '帽' => '帽',
1658
+ '幩' => '幩',
1659
+ '㡢' => '㡢',
1660
+ '𢆃' => '𢆃',
1661
+ '㡼' => '㡼',
1662
+ '庰' => '庰',
1663
+ '庳' => '庳',
1664
+ '庶' => '庶',
1665
+ '廊' => '廊',
1666
+ '𪎒' => '𪎒',
1667
+ '廾' => '廾',
1668
+ '𢌱' => '𢌱',
1669
+ '𢌱' => '𢌱',
1670
+ '舁' => '舁',
1671
+ '弢' => '弢',
1672
+ '弢' => '弢',
1673
+ '㣇' => '㣇',
1674
+ '𣊸' => '𣊸',
1675
+ '𦇚' => '𦇚',
1676
+ '形' => '形',
1677
+ '彫' => '彫',
1678
+ '㣣' => '㣣',
1679
+ '徚' => '徚',
1680
+ '忍' => '忍',
1681
+ '志' => '志',
1682
+ '忹' => '忹',
1683
+ '悁' => '悁',
1684
+ '㤺' => '㤺',
1685
+ '㤜' => '㤜',
1686
+ '悔' => '悔',
1687
+ '𢛔' => '𢛔',
1688
+ '惇' => '惇',
1689
+ '慈' => '慈',
1690
+ '慌' => '慌',
1691
+ '慎' => '慎',
1692
+ '慌' => '慌',
1693
+ '慺' => '慺',
1694
+ '憎' => '憎',
1695
+ '憲' => '憲',
1696
+ '憤' => '憤',
1697
+ '憯' => '憯',
1698
+ '懞' => '懞',
1699
+ '懲' => '懲',
1700
+ '懶' => '懶',
1701
+ '成' => '成',
1702
+ '戛' => '戛',
1703
+ '扝' => '扝',
1704
+ '抱' => '抱',
1705
+ '拔' => '拔',
1706
+ '捐' => '捐',
1707
+ '𢬌' => '𢬌',
1708
+ '挽' => '挽',
1709
+ '拼' => '拼',
1710
+ '捨' => '捨',
1711
+ '掃' => '掃',
1712
+ '揤' => '揤',
1713
+ '𢯱' => '𢯱',
1714
+ '搢' => '搢',
1715
+ '揅' => '揅',
1716
+ '掩' => '掩',
1717
+ '㨮' => '㨮',
1718
+ '摩' => '摩',
1719
+ '摾' => '摾',
1720
+ '撝' => '撝',
1721
+ '摷' => '摷',
1722
+ '㩬' => '㩬',
1723
+ '敏' => '敏',
1724
+ '敬' => '敬',
1725
+ '𣀊' => '𣀊',
1726
+ '旣' => '旣',
1727
+ '書' => '書',
1728
+ '晉' => '晉',
1729
+ '㬙' => '㬙',
1730
+ '暑' => '暑',
1731
+ '㬈' => '㬈',
1732
+ '㫤' => '㫤',
1733
+ '冒' => '冒',
1734
+ '冕' => '冕',
1735
+ '最' => '最',
1736
+ '暜' => '暜',
1737
+ '肭' => '肭',
1738
+ '䏙' => '䏙',
1739
+ '朗' => '朗',
1740
+ '望' => '望',
1741
+ '朡' => '朡',
1742
+ '杞' => '杞',
1743
+ '杓' => '杓',
1744
+ '𣏃' => '𣏃',
1745
+ '㭉' => '㭉',
1746
+ '柺' => '柺',
1747
+ '枅' => '枅',
1748
+ '桒' => '桒',
1749
+ '梅' => '梅',
1750
+ '𣑭' => '𣑭',
1751
+ '梎' => '梎',
1752
+ '栟' => '栟',
1753
+ '椔' => '椔',
1754
+ '㮝' => '㮝',
1755
+ '楂' => '楂',
1756
+ '榣' => '榣',
1757
+ '槪' => '槪',
1758
+ '檨' => '檨',
1759
+ '𣚣' => '𣚣',
1760
+ '櫛' => '櫛',
1761
+ '㰘' => '㰘',
1762
+ '次' => '次',
1763
+ '𣢧' => '𣢧',
1764
+ '歔' => '歔',
1765
+ '㱎' => '㱎',
1766
+ '歲' => '歲',
1767
+ '殟' => '殟',
1768
+ '殺' => '殺',
1769
+ '殻' => '殻',
1770
+ '𣪍' => '𣪍',
1771
+ '𡴋' => '𡴋',
1772
+ '𣫺' => '𣫺',
1773
+ '汎' => '汎',
1774
+ '𣲼' => '𣲼',
1775
+ '沿' => '沿',
1776
+ '泍' => '泍',
1777
+ '汧' => '汧',
1778
+ '洖' => '洖',
1779
+ '派' => '派',
1780
+ '海' => '海',
1781
+ '流' => '流',
1782
+ '浩' => '浩',
1783
+ '浸' => '浸',
1784
+ '涅' => '涅',
1785
+ '𣴞' => '𣴞',
1786
+ '洴' => '洴',
1787
+ '港' => '港',
1788
+ '湮' => '湮',
1789
+ '㴳' => '㴳',
1790
+ '滋' => '滋',
1791
+ '滇' => '滇',
1792
+ '𣻑' => '𣻑',
1793
+ '淹' => '淹',
1794
+ '潮' => '潮',
1795
+ '𣽞' => '𣽞',
1796
+ '𣾎' => '𣾎',
1797
+ '濆' => '濆',
1798
+ '瀹' => '瀹',
1799
+ '瀞' => '瀞',
1800
+ '瀛' => '瀛',
1801
+ '㶖' => '㶖',
1802
+ '灊' => '灊',
1803
+ '災' => '災',
1804
+ '灷' => '灷',
1805
+ '炭' => '炭',
1806
+ '𠔥' => '𠔥',
1807
+ '煅' => '煅',
1808
+ '𤉣' => '𤉣',
1809
+ '熜' => '熜',
1810
+ '𤎫' => '𤎫',
1811
+ '爨' => '爨',
1812
+ '爵' => '爵',
1813
+ '牐' => '牐',
1814
+ '𤘈' => '𤘈',
1815
+ '犀' => '犀',
1816
+ '犕' => '犕',
1817
+ '𤜵' => '𤜵',
1818
+ '𤠔' => '𤠔',
1819
+ '獺' => '獺',
1820
+ '王' => '王',
1821
+ '㺬' => '㺬',
1822
+ '玥' => '玥',
1823
+ '㺸' => '㺸',
1824
+ '㺸' => '㺸',
1825
+ '瑇' => '瑇',
1826
+ '瑜' => '瑜',
1827
+ '瑱' => '瑱',
1828
+ '璅' => '璅',
1829
+ '瓊' => '瓊',
1830
+ '㼛' => '㼛',
1831
+ '甤' => '甤',
1832
+ '𤰶' => '𤰶',
1833
+ '甾' => '甾',
1834
+ '𤲒' => '𤲒',
1835
+ '異' => '異',
1836
+ '𢆟' => '𢆟',
1837
+ '瘐' => '瘐',
1838
+ '𤾡' => '𤾡',
1839
+ '𤾸' => '𤾸',
1840
+ '𥁄' => '𥁄',
1841
+ '㿼' => '㿼',
1842
+ '䀈' => '䀈',
1843
+ '直' => '直',
1844
+ '𥃳' => '𥃳',
1845
+ '𥃲' => '𥃲',
1846
+ '𥄙' => '𥄙',
1847
+ '𥄳' => '𥄳',
1848
+ '眞' => '眞',
1849
+ '真' => '真',
1850
+ '真' => '真',
1851
+ '睊' => '睊',
1852
+ '䀹' => '䀹',
1853
+ '瞋' => '瞋',
1854
+ '䁆' => '䁆',
1855
+ '䂖' => '䂖',
1856
+ '𥐝' => '𥐝',
1857
+ '硎' => '硎',
1858
+ '碌' => '碌',
1859
+ '磌' => '磌',
1860
+ '䃣' => '䃣',
1861
+ '𥘦' => '𥘦',
1862
+ '祖' => '祖',
1863
+ '𥚚' => '𥚚',
1864
+ '𥛅' => '𥛅',
1865
+ '福' => '福',
1866
+ '秫' => '秫',
1867
+ '䄯' => '䄯',
1868
+ '穀' => '穀',
1869
+ '穊' => '穊',
1870
+ '穏' => '穏',
1871
+ '𥥼' => '𥥼',
1872
+ '𥪧' => '𥪧',
1873
+ '𥪧' => '𥪧',
1874
+ '竮' => '竮',
1875
+ '䈂' => '䈂',
1876
+ '𥮫' => '𥮫',
1877
+ '篆' => '篆',
1878
+ '築' => '築',
1879
+ '䈧' => '䈧',
1880
+ '𥲀' => '𥲀',
1881
+ '糒' => '糒',
1882
+ '䊠' => '䊠',
1883
+ '糨' => '糨',
1884
+ '糣' => '糣',
1885
+ '紀' => '紀',
1886
+ '𥾆' => '𥾆',
1887
+ '絣' => '絣',
1888
+ '䌁' => '䌁',
1889
+ '緇' => '緇',
1890
+ '縂' => '縂',
1891
+ '繅' => '繅',
1892
+ '䌴' => '䌴',
1893
+ '𦈨' => '𦈨',
1894
+ '𦉇' => '𦉇',
1895
+ '䍙' => '䍙',
1896
+ '𦋙' => '𦋙',
1897
+ '罺' => '罺',
1898
+ '𦌾' => '𦌾',
1899
+ '羕' => '羕',
1900
+ '翺' => '翺',
1901
+ '者' => '者',
1902
+ '𦓚' => '𦓚',
1903
+ '𦔣' => '𦔣',
1904
+ '聠' => '聠',
1905
+ '𦖨' => '𦖨',
1906
+ '聰' => '聰',
1907
+ '𣍟' => '𣍟',
1908
+ '䏕' => '䏕',
1909
+ '育' => '育',
1910
+ '脃' => '脃',
1911
+ '䐋' => '䐋',
1912
+ '脾' => '脾',
1913
+ '媵' => '媵',
1914
+ '𦞧' => '𦞧',
1915
+ '𦞵' => '𦞵',
1916
+ '𣎓' => '𣎓',
1917
+ '𣎜' => '𣎜',
1918
+ '舁' => '舁',
1919
+ '舄' => '舄',
1920
+ '辞' => '辞',
1921
+ '䑫' => '䑫',
1922
+ '芑' => '芑',
1923
+ '芋' => '芋',
1924
+ '芝' => '芝',
1925
+ '劳' => '劳',
1926
+ '花' => '花',
1927
+ '芳' => '芳',
1928
+ '芽' => '芽',
1929
+ '苦' => '苦',
1930
+ '𦬼' => '𦬼',
1931
+ '若' => '若',
1932
+ '茝' => '茝',
1933
+ '荣' => '荣',
1934
+ '莭' => '莭',
1935
+ '茣' => '茣',
1936
+ '莽' => '莽',
1937
+ '菧' => '菧',
1938
+ '著' => '著',
1939
+ '荓' => '荓',
1940
+ '菊' => '菊',
1941
+ '菌' => '菌',
1942
+ '菜' => '菜',
1943
+ '𦰶' => '𦰶',
1944
+ '𦵫' => '𦵫',
1945
+ '𦳕' => '𦳕',
1946
+ '䔫' => '䔫',
1947
+ '蓱' => '蓱',
1948
+ '蓳' => '蓳',
1949
+ '蔖' => '蔖',
1950
+ '𧏊' => '𧏊',
1951
+ '蕤' => '蕤',
1952
+ '𦼬' => '𦼬',
1953
+ '䕝' => '䕝',
1954
+ '䕡' => '䕡',
1955
+ '𦾱' => '𦾱',
1956
+ '𧃒' => '𧃒',
1957
+ '䕫' => '䕫',
1958
+ '虐' => '虐',
1959
+ '虜' => '虜',
1960
+ '虧' => '虧',
1961
+ '虩' => '虩',
1962
+ '蚩' => '蚩',
1963
+ '蚈' => '蚈',
1964
+ '蜎' => '蜎',
1965
+ '蛢' => '蛢',
1966
+ '蝹' => '蝹',
1967
+ '蜨' => '蜨',
1968
+ '蝫' => '蝫',
1969
+ '螆' => '螆',
1970
+ '䗗' => '䗗',
1971
+ '蟡' => '蟡',
1972
+ '蠁' => '蠁',
1973
+ '䗹' => '䗹',
1974
+ '衠' => '衠',
1975
+ '衣' => '衣',
1976
+ '𧙧' => '𧙧',
1977
+ '裗' => '裗',
1978
+ '裞' => '裞',
1979
+ '䘵' => '䘵',
1980
+ '裺' => '裺',
1981
+ '㒻' => '㒻',
1982
+ '𧢮' => '𧢮',
1983
+ '𧥦' => '𧥦',
1984
+ '䚾' => '䚾',
1985
+ '䛇' => '䛇',
1986
+ '誠' => '誠',
1987
+ '諭' => '諭',
1988
+ '變' => '變',
1989
+ '豕' => '豕',
1990
+ '𧲨' => '𧲨',
1991
+ '貫' => '貫',
1992
+ '賁' => '賁',
1993
+ '贛' => '贛',
1994
+ '起' => '起',
1995
+ '𧼯' => '𧼯',
1996
+ '𠠄' => '𠠄',
1997
+ '跋' => '跋',
1998
+ '趼' => '趼',
1999
+ '跰' => '跰',
2000
+ '𠣞' => '𠣞',
2001
+ '軔' => '軔',
2002
+ '輸' => '輸',
2003
+ '𨗒' => '𨗒',
2004
+ '𨗭' => '𨗭',
2005
+ '邔' => '邔',
2006
+ '郱' => '郱',
2007
+ '鄑' => '鄑',
2008
+ '𨜮' => '𨜮',
2009
+ '鄛' => '鄛',
2010
+ '鈸' => '鈸',
2011
+ '鋗' => '鋗',
2012
+ '鋘' => '鋘',
2013
+ '鉼' => '鉼',
2014
+ '鏹' => '鏹',
2015
+ '鐕' => '鐕',
2016
+ '𨯺' => '𨯺',
2017
+ '開' => '開',
2018
+ '䦕' => '䦕',
2019
+ '閷' => '閷',
2020
+ '𨵷' => '𨵷',
2021
+ '䧦' => '䧦',
2022
+ '雃' => '雃',
2023
+ '嶲' => '嶲',
2024
+ '霣' => '霣',
2025
+ '𩅅' => '𩅅',
2026
+ '𩈚' => '𩈚',
2027
+ '䩮' => '䩮',
2028
+ '䩶' => '䩶',
2029
+ '韠' => '韠',
2030
+ '𩐊' => '𩐊',
2031
+ '䪲' => '䪲',
2032
+ '𩒖' => '𩒖',
2033
+ '頋' => '頋',
2034
+ '頋' => '頋',
2035
+ '頩' => '頩',
2036
+ '𩖶' => '𩖶',
2037
+ '飢' => '飢',
2038
+ '䬳' => '䬳',
2039
+ '餩' => '餩',
2040
+ '馧' => '馧',
2041
+ '駂' => '駂',
2042
+ '駾' => '駾',
2043
+ '䯎' => '䯎',
2044
+ '𩬰' => '𩬰',
2045
+ '鬒' => '鬒',
2046
+ '鱀' => '鱀',
2047
+ '鳽' => '鳽',
2048
+ '䳎' => '䳎',
2049
+ '䳭' => '䳭',
2050
+ '鵧' => '鵧',
2051
+ '𪃎' => '𪃎',
2052
+ '䳸' => '䳸',
2053
+ '𪄅' => '𪄅',
2054
+ '𪈎' => '𪈎',
2055
+ '𪊑' => '𪊑',
2056
+ '麻' => '麻',
2057
+ '䵖' => '䵖',
2058
+ '黹' => '黹',
2059
+ '黾' => '黾',
2060
+ '鼅' => '鼅',
2061
+ '鼏' => '鼏',
2062
+ '鼖' => '鼖',
2063
+ '鼻' => '鼻',
2064
+ '𪘀' => '𪘀',
2065
+ );
vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php ADDED
@@ -0,0 +1,876 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return array (
4
+ '̀' => 230,
5
+ '́' => 230,
6
+ '̂' => 230,
7
+ '̃' => 230,
8
+ '̄' => 230,
9
+ '̅' => 230,
10
+ '̆' => 230,
11
+ '̇' => 230,
12
+ '̈' => 230,
13
+ '̉' => 230,
14
+ '̊' => 230,
15
+ '̋' => 230,
16
+ '̌' => 230,
17
+ '̍' => 230,
18
+ '̎' => 230,
19
+ '̏' => 230,
20
+ '̐' => 230,
21
+ '̑' => 230,
22
+ '̒' => 230,
23
+ '̓' => 230,
24
+ '̔' => 230,
25
+ '̕' => 232,
26
+ '̖' => 220,
27
+ '̗' => 220,
28
+ '̘' => 220,
29
+ '̙' => 220,
30
+ '̚' => 232,
31
+ '̛' => 216,
32
+ '̜' => 220,
33
+ '̝' => 220,
34
+ '̞' => 220,
35
+ '̟' => 220,
36
+ '̠' => 220,
37
+ '̡' => 202,
38
+ '̢' => 202,
39
+ '̣' => 220,
40
+ '̤' => 220,
41
+ '̥' => 220,
42
+ '̦' => 220,
43
+ '̧' => 202,
44
+ '̨' => 202,
45
+ '̩' => 220,
46
+ '̪' => 220,
47
+ '̫' => 220,
48
+ '̬' => 220,
49
+ '̭' => 220,
50
+ '̮' => 220,
51
+ '̯' => 220,
52
+ '̰' => 220,
53
+ '̱' => 220,
54
+ '̲' => 220,
55
+ '̳' => 220,
56
+ '̴' => 1,
57
+ '̵' => 1,
58
+ '̶' => 1,
59
+ '̷' => 1,
60
+ '̸' => 1,
61
+ '̹' => 220,
62
+ '̺' => 220,
63
+ '̻' => 220,
64
+ '̼' => 220,
65
+ '̽' => 230,
66
+ '̾' => 230,
67
+ '̿' => 230,
68
+ '̀' => 230,
69
+ '́' => 230,
70
+ '͂' => 230,
71
+ '̓' => 230,
72
+ '̈́' => 230,
73
+ 'ͅ' => 240,
74
+ '͆' => 230,
75
+ '͇' => 220,
76
+ '͈' => 220,
77
+ '͉' => 220,
78
+ '͊' => 230,
79
+ '͋' => 230,
80
+ '͌' => 230,
81
+ '͍' => 220,
82
+ '͎' => 220,
83
+ '͐' => 230,
84
+ '͑' => 230,
85
+ '͒' => 230,
86
+ '͓' => 220,
87
+ '͔' => 220,
88
+ '͕' => 220,
89
+ '͖' => 220,
90
+ '͗' => 230,
91
+ '͘' => 232,
92
+ '͙' => 220,
93
+ '͚' => 220,
94
+ '͛' => 230,
95
+ '͜' => 233,
96
+ '͝' => 234,
97
+ '͞' => 234,
98
+ '͟' => 233,
99
+ '͠' => 234,
100
+ '͡' => 234,
101
+ '͢' => 233,
102
+ 'ͣ' => 230,
103
+ 'ͤ' => 230,
104
+ 'ͥ' => 230,
105
+ 'ͦ' => 230,
106
+ 'ͧ' => 230,
107
+ 'ͨ' => 230,
108
+ 'ͩ' => 230,
109
+ 'ͪ' => 230,
110
+ 'ͫ' => 230,
111
+ 'ͬ' => 230,
112
+ 'ͭ' => 230,
113
+ 'ͮ' => 230,
114
+ 'ͯ' => 230,
115
+ '҃' => 230,
116
+ '҄' => 230,
117
+ '҅' => 230,
118
+ '҆' => 230,
119
+ '҇' => 230,
120
+ '֑' => 220,
121
+ '֒' => 230,
122
+ '֓' => 230,
123
+ '֔' => 230,
124
+ '֕' => 230,
125
+ '֖' => 220,
126
+ '֗' => 230,
127
+ '֘' => 230,
128
+ '֙' => 230,
129
+ '֚' => 222,
130
+ '֛' => 220,
131
+ '֜' => 230,
132
+ '֝' => 230,
133
+ '֞' => 230,
134
+ '֟' => 230,
135
+ '֠' => 230,
136
+ '֡' => 230,
137
+ '֢' => 220,
138
+ '֣' => 220,
139
+ '֤' => 220,
140
+ '֥' => 220,
141
+ '֦' => 220,
142
+ '֧' => 220,
143
+ '֨' => 230,
144
+ '֩' => 230,
145
+ '֪' => 220,
146
+ '֫' => 230,
147
+ '֬' => 230,
148
+ '֭' => 222,
149
+ '֮' => 228,
150
+ '֯' => 230,
151
+ 'ְ' => 10,
152
+ 'ֱ' => 11,
153
+ 'ֲ' => 12,
154
+ 'ֳ' => 13,
155
+ 'ִ' => 14,
156
+ 'ֵ' => 15,
157
+ 'ֶ' => 16,
158
+ 'ַ' => 17,
159
+ 'ָ' => 18,
160
+ 'ֹ' => 19,
161
+ 'ֺ' => 19,
162
+ 'ֻ' => 20,
163
+ 'ּ' => 21,
164
+ 'ֽ' => 22,
165
+ 'ֿ' => 23,
166
+ 'ׁ' => 24,
167
+ 'ׂ' => 25,
168
+ 'ׄ' => 230,
169
+ 'ׅ' => 220,
170
+ 'ׇ' => 18,
171
+ 'ؐ' => 230,
172
+ 'ؑ' => 230,
173
+ 'ؒ' => 230,
174
+ 'ؓ' => 230,
175
+ 'ؔ' => 230,
176
+ 'ؕ' => 230,
177
+ 'ؖ' => 230,
178
+ 'ؗ' => 230,
179
+ 'ؘ' => 30,
180
+ 'ؙ' => 31,
181
+ 'ؚ' => 32,
182
+ 'ً' => 27,
183
+ 'ٌ' => 28,
184
+ 'ٍ' => 29,
185
+ 'َ' => 30,
186
+ 'ُ' => 31,
187
+ 'ِ' => 32,
188
+ 'ّ' => 33,
189
+ 'ْ' => 34,
190
+ 'ٓ' => 230,
191
+ 'ٔ' => 230,
192
+ 'ٕ' => 220,
193
+ 'ٖ' => 220,
194
+ 'ٗ' => 230,
195
+ '٘' => 230,
196
+ 'ٙ' => 230,
197
+ 'ٚ' => 230,
198
+ 'ٛ' => 230,
199
+ 'ٜ' => 220,
200
+ 'ٝ' => 230,
201
+ 'ٞ' => 230,
202
+ 'ٟ' => 220,
203
+ 'ٰ' => 35,
204
+ 'ۖ' => 230,
205
+ 'ۗ' => 230,
206
+ 'ۘ' => 230,
207
+ 'ۙ' => 230,
208
+ 'ۚ' => 230,
209
+ 'ۛ' => 230,
210
+ 'ۜ' => 230,
211
+ '۟' => 230,
212
+ '۠' => 230,
213
+ 'ۡ' => 230,
214
+ 'ۢ' => 230,
215
+ 'ۣ' => 220,
216
+ 'ۤ' => 230,
217
+ 'ۧ' => 230,
218
+ 'ۨ' => 230,
219
+ '۪' => 220,
220
+ '۫' => 230,
221
+ '۬' => 230,
222
+ 'ۭ' => 220,
223
+ 'ܑ' => 36,
224
+ 'ܰ' => 230,
225
+ 'ܱ' => 220,
226
+ 'ܲ' => 230,
227
+ 'ܳ' => 230,
228
+ 'ܴ' => 220,
229
+ 'ܵ' => 230,
230
+ 'ܶ' => 230,
231
+ 'ܷ' => 220,
232
+ 'ܸ' => 220,
233
+ 'ܹ' => 220,
234
+ 'ܺ' => 230,
235
+ 'ܻ' => 220,
236
+ 'ܼ' => 220,
237
+ 'ܽ' => 230,
238
+ 'ܾ' => 220,
239
+ 'ܿ' => 230,
240
+ '݀' => 230,
241
+ '݁' => 230,
242
+ '݂' => 220,
243
+ '݃' => 230,
244
+ '݄' => 220,
245
+ '݅' => 230,
246
+ '݆' => 220,
247
+ '݇' => 230,
248
+ '݈' => 220,
249
+ '݉' => 230,
250
+ '݊' => 230,
251
+ '߫' => 230,
252
+ '߬' => 230,
253
+ '߭' => 230,
254
+ '߮' => 230,
255
+ '߯' => 230,
256
+ '߰' => 230,
257
+ '߱' => 230,
258
+ '߲' => 220,
259
+ '߳' => 230,
260
+ '߽' => 220,
261
+ 'ࠖ' => 230,
262
+ 'ࠗ' => 230,
263
+ '࠘' => 230,
264
+ '࠙' => 230,
265
+ 'ࠛ' => 230,
266
+ 'ࠜ' => 230,
267
+ 'ࠝ' => 230,
268
+ 'ࠞ' => 230,
269
+ 'ࠟ' => 230,
270
+ 'ࠠ' => 230,
271
+ 'ࠡ' => 230,
272
+ 'ࠢ' => 230,
273
+ 'ࠣ' => 230,
274
+ 'ࠥ' => 230,
275
+ 'ࠦ' => 230,
276
+ 'ࠧ' => 230,
277
+ 'ࠩ' => 230,
278
+ 'ࠪ' => 230,
279
+ 'ࠫ' => 230,
280
+ 'ࠬ' => 230,
281
+ '࠭' => 230,
282
+ '࡙' => 220,
283
+ '࡚' => 220,
284
+ '࡛' => 220,
285
+ '࣓' => 220,
286
+ 'ࣔ' => 230,
287
+ 'ࣕ' => 230,
288
+ 'ࣖ' => 230,
289
+ 'ࣗ' => 230,
290
+ 'ࣘ' => 230,
291
+ 'ࣙ' => 230,
292
+ 'ࣚ' => 230,
293
+ 'ࣛ' => 230,
294
+ 'ࣜ' => 230,
295
+ 'ࣝ' => 230,
296
+ 'ࣞ' => 230,
297
+ 'ࣟ' => 230,
298
+ '࣠' => 230,
299
+ '࣡' => 230,
300
+ 'ࣣ' => 220,
301
+ 'ࣤ' => 230,
302
+ 'ࣥ' => 230,
303
+ 'ࣦ' => 220,
304
+ 'ࣧ' => 230,
305
+ 'ࣨ' => 230,
306
+ 'ࣩ' => 220,
307
+ '࣪' => 230,
308
+ '࣫' => 230,
309
+ '࣬' => 230,
310
+ '࣭' => 220,
311
+ '࣮' => 220,
312
+ '࣯' => 220,
313
+ 'ࣰ' => 27,
314
+ 'ࣱ' => 28,
315
+ 'ࣲ' => 29,
316
+ 'ࣳ' => 230,
317
+ 'ࣴ' => 230,
318
+ 'ࣵ' => 230,
319
+ 'ࣶ' => 220,
320
+ 'ࣷ' => 230,
321
+ 'ࣸ' => 230,
322
+ 'ࣹ' => 220,
323
+ 'ࣺ' => 220,
324
+ 'ࣻ' => 230,
325
+ 'ࣼ' => 230,
326
+ 'ࣽ' => 230,
327
+ 'ࣾ' => 230,
328
+ 'ࣿ' => 230,
329
+ '़' => 7,
330
+ '्' => 9,
331
+ '॑' => 230,
332
+ '॒' => 220,
333
+ '॓' => 230,
334
+ '॔' => 230,
335
+ '়' => 7,
336
+ '্' => 9,
337
+ '৾' => 230,
338
+ '਼' => 7,
339
+ '੍' => 9,
340
+ '઼' => 7,
341
+ '્' => 9,
342
+ '଼' => 7,
343
+ '୍' => 9,
344
+ '்' => 9,
345
+ '్' => 9,
346
+ 'ౕ' => 84,
347
+ 'ౖ' => 91,
348
+ '಼' => 7,
349
+ '್' => 9,
350
+ '഻' => 9,
351
+ '഼' => 9,
352
+ '്' => 9,
353
+ '්' => 9,
354
+ 'ุ' => 103,
355
+ 'ู' => 103,
356
+ 'ฺ' => 9,
357
+ '่' => 107,
358
+ '้' => 107,
359
+ '๊' => 107,
360
+ '๋' => 107,
361
+ 'ຸ' => 118,
362
+ 'ູ' => 118,
363
+ '຺' => 9,
364
+ '່' => 122,
365
+ '້' => 122,
366
+ '໊' => 122,
367
+ '໋' => 122,
368
+ '༘' => 220,
369
+ '༙' => 220,
370
+ '༵' => 220,
371
+ '༷' => 220,
372
+ '༹' => 216,
373
+ 'ཱ' => 129,
374
+ 'ི' => 130,
375
+ 'ུ' => 132,
376
+ 'ེ' => 130,
377
+ 'ཻ' => 130,
378
+ 'ོ' => 130,
379
+ 'ཽ' => 130,
380
+ 'ྀ' => 130,
381
+ 'ྂ' => 230,
382
+ 'ྃ' => 230,
383
+ '྄' => 9,
384
+ '྆' => 230,
385
+ '྇' => 230,
386
+ '࿆' => 220,
387
+ '့' => 7,
388
+ '္' => 9,
389
+ '်' => 9,
390
+ 'ႍ' => 220,
391
+ '፝' => 230,
392
+ '፞' => 230,
393
+ '፟' => 230,
394
+ '᜔' => 9,
395
+ '᜴' => 9,
396
+ '្' => 9,
397
+ '៝' => 230,
398
+ 'ᢩ' => 228,
399
+ '᤹' => 222,
400
+ '᤺' => 230,
401
+ '᤻' => 220,
402
+ 'ᨗ' => 230,
403
+ 'ᨘ' => 220,
404
+ '᩠' => 9,
405
+ '᩵' => 230,
406
+ '᩶' => 230,
407
+ '᩷' => 230,
408
+ '᩸' => 230,
409
+ '᩹' => 230,
410
+ '᩺' => 230,
411
+ '᩻' => 230,
412
+ '᩼' => 230,
413
+ '᩿' => 220,
414
+ '᪰' => 230,
415
+ '᪱' => 230,
416
+ '᪲' => 230,
417
+ '᪳' => 230,
418
+ '᪴' => 230,
419
+ '᪵' => 220,
420
+ '᪶' => 220,
421
+ '᪷' => 220,
422
+ '᪸' => 220,
423
+ '᪹' => 220,
424
+ '᪺' => 220,
425
+ '᪻' => 230,
426
+ '᪼' => 230,
427
+ '᪽' => 220,
428
+ 'ᪿ' => 220,
429
+ 'ᫀ' => 220,
430
+ '᬴' => 7,
431
+ '᭄' => 9,
432
+ '᭫' => 230,
433
+ '᭬' => 220,
434
+ '᭭' => 230,
435
+ '᭮' => 230,
436
+ '᭯' => 230,
437
+ '᭰' => 230,
438
+ '᭱' => 230,
439
+ '᭲' => 230,
440
+ '᭳' => 230,
441
+ '᮪' => 9,
442
+ '᮫' => 9,
443
+ '᯦' => 7,
444
+ '᯲' => 9,
445
+ '᯳' => 9,
446
+ '᰷' => 7,
447
+ '᳐' => 230,
448
+ '᳑' => 230,
449
+ '᳒' => 230,
450
+ '᳔' => 1,
451
+ '᳕' => 220,
452
+ '᳖' => 220,
453
+ '᳗' => 220,
454
+ '᳘' => 220,
455
+ '᳙' => 220,
456
+ '᳚' => 230,
457
+ '᳛' => 230,
458
+ '᳜' => 220,
459
+ '᳝' => 220,
460
+ '᳞' => 220,
461
+ '᳟' => 220,
462
+ '᳠' => 230,
463
+ '᳢' => 1,
464
+ '᳣' => 1,
465
+ '᳤' => 1,
466
+ '᳥' => 1,
467
+ '᳦' => 1,
468
+ '᳧' => 1,
469
+ '᳨' => 1,
470
+ '᳭' => 220,
471
+ '᳴' => 230,
472
+ '᳸' => 230,
473
+ '᳹' => 230,
474
+ '᷀' => 230,
475
+ '᷁' => 230,
476
+ '᷂' => 220,
477
+ '᷃' => 230,
478
+ '᷄' => 230,
479
+ '᷅' => 230,
480
+ '᷆' => 230,
481
+ '᷇' => 230,
482
+ '᷈' => 230,
483
+ '᷉' => 230,
484
+ '᷊' => 220,
485
+ '᷋' => 230,
486
+ '᷌' => 230,
487
+ '᷍' => 234,
488
+ '᷎' => 214,
489
+ '᷏' => 220,
490
+ '᷐' => 202,
491
+ '᷑' => 230,
492
+ '᷒' => 230,
493
+ 'ᷓ' => 230,
494
+ 'ᷔ' => 230,
495
+ 'ᷕ' => 230,
496
+ 'ᷖ' => 230,
497
+ 'ᷗ' => 230,
498
+ 'ᷘ' => 230,
499
+ 'ᷙ' => 230,
500
+ 'ᷚ' => 230,
501
+ 'ᷛ' => 230,
502
+ 'ᷜ' => 230,
503
+ 'ᷝ' => 230,
504
+ 'ᷞ' => 230,
505
+ 'ᷟ' => 230,
506
+ 'ᷠ' => 230,
507
+ 'ᷡ' => 230,
508
+ 'ᷢ' => 230,
509
+ 'ᷣ' => 230,
510
+ 'ᷤ' => 230,
511
+ 'ᷥ' => 230,
512
+ 'ᷦ' => 230,
513
+ 'ᷧ' => 230,
514
+ 'ᷨ' => 230,
515
+ 'ᷩ' => 230,
516
+ 'ᷪ' => 230,
517
+ 'ᷫ' => 230,
518
+ 'ᷬ' => 230,
519
+ 'ᷭ' => 230,
520
+ 'ᷮ' => 230,
521
+ 'ᷯ' => 230,
522
+ 'ᷰ' => 230,
523
+ 'ᷱ' => 230,
524
+ 'ᷲ' => 230,
525
+ 'ᷳ' => 230,
526
+ 'ᷴ' => 230,
527
+ '᷵' => 230,
528
+ '᷶' => 232,
529
+ '᷷' => 228,
530
+ '᷸' => 228,
531
+ '᷹' => 220,
532
+ '᷻' => 230,
533
+ '᷼' => 233,
534
+ '᷽' => 220,
535
+ '᷾' => 230,
536
+ '᷿' => 220,
537
+ '⃐' => 230,
538
+ '⃑' => 230,
539
+ '⃒' => 1,
540
+ '⃓' => 1,
541
+ '⃔' => 230,
542
+ '⃕' => 230,
543
+ '⃖' => 230,
544
+ '⃗' => 230,
545
+ '⃘' => 1,
546
+ '⃙' => 1,
547
+ '⃚' => 1,
548
+ '⃛' => 230,
549
+ '⃜' => 230,
550
+ '⃡' => 230,
551
+ '⃥' => 1,
552
+ '⃦' => 1,
553
+ '⃧' => 230,
554
+ '⃨' => 220,
555
+ '⃩' => 230,
556
+ '⃪' => 1,
557
+ '⃫' => 1,
558
+ '⃬' => 220,
559
+ '⃭' => 220,
560
+ '⃮' => 220,
561
+ '⃯' => 220,
562
+ '⃰' => 230,
563
+ '⳯' => 230,
564
+ '⳰' => 230,
565
+ '⳱' => 230,
566
+ '⵿' => 9,
567
+ 'ⷠ' => 230,
568
+ 'ⷡ' => 230,
569
+ 'ⷢ' => 230,
570
+ 'ⷣ' => 230,
571
+ 'ⷤ' => 230,
572
+ 'ⷥ' => 230,
573
+ 'ⷦ' => 230,
574
+ 'ⷧ' => 230,
575
+ 'ⷨ' => 230,
576
+ 'ⷩ' => 230,
577
+ 'ⷪ' => 230,
578
+ 'ⷫ' => 230,
579
+ 'ⷬ' => 230,
580
+ 'ⷭ' => 230,
581
+ 'ⷮ' => 230,
582
+ 'ⷯ' => 230,
583
+ 'ⷰ' => 230,
584
+ 'ⷱ' => 230,
585
+ 'ⷲ' => 230,
586
+ 'ⷳ' => 230,
587
+ 'ⷴ' => 230,
588
+ 'ⷵ' => 230,
589
+ 'ⷶ' => 230,
590
+ 'ⷷ' => 230,
591
+ 'ⷸ' => 230,
592
+ 'ⷹ' => 230,
593
+ 'ⷺ' => 230,
594
+ 'ⷻ' => 230,
595
+ 'ⷼ' => 230,
596
+ 'ⷽ' => 230,
597
+ 'ⷾ' => 230,
598
+ 'ⷿ' => 230,
599
+ '〪' => 218,
600
+ '〫' => 228,
601
+ '〬' => 232,
602
+ '〭' => 222,
603
+ '〮' => 224,
604
+ '〯' => 224,
605
+ '゙' => 8,
606
+ '゚' => 8,
607
+ '꙯' => 230,
608
+ 'ꙴ' => 230,
609
+ 'ꙵ' => 230,
610
+ 'ꙶ' => 230,
611
+ 'ꙷ' => 230,
612
+ 'ꙸ' => 230,
613
+ 'ꙹ' => 230,
614
+ 'ꙺ' => 230,
615
+ 'ꙻ' => 230,
616
+ '꙼' => 230,
617
+ '꙽' => 230,
618
+ 'ꚞ' => 230,
619
+ 'ꚟ' => 230,
620
+ '꛰' => 230,
621
+ '꛱' => 230,
622
+ '꠆' => 9,
623
+ '꠬' => 9,
624
+ '꣄' => 9,
625
+ '꣠' => 230,
626
+ '꣡' => 230,
627
+ '꣢' => 230,
628
+ '꣣' => 230,
629
+ '꣤' => 230,
630
+ '꣥' => 230,
631
+ '꣦' => 230,
632
+ '꣧' => 230,
633
+ '꣨' => 230,
634
+ '꣩' => 230,
635
+ '꣪' => 230,
636
+ '꣫' => 230,
637
+ '꣬' => 230,
638
+ '꣭' => 230,
639
+ '꣮' => 230,
640
+ '꣯' => 230,
641
+ '꣰' => 230,
642
+ '꣱' => 230,
643
+ '꤫' => 220,
644
+ '꤬' => 220,
645
+ '꤭' => 220,
646
+ '꥓' => 9,
647
+ '꦳' => 7,
648
+ '꧀' => 9,
649
+ 'ꪰ' => 230,
650
+ 'ꪲ' => 230,
651
+ 'ꪳ' => 230,
652
+ 'ꪴ' => 220,
653
+ 'ꪷ' => 230,
654
+ 'ꪸ' => 230,
655
+ 'ꪾ' => 230,
656
+ '꪿' => 230,
657
+ '꫁' => 230,
658
+ '꫶' => 9,
659
+ '꯭' => 9,
660
+ 'ﬞ' => 26,
661
+ '︠' => 230,
662
+ '︡' => 230,
663
+ '︢' => 230,
664
+ '︣' => 230,
665
+ '︤' => 230,
666
+ '︥' => 230,
667
+ '︦' => 230,
668
+ '︧' => 220,
669
+ '︨' => 220,
670
+ '︩' => 220,
671
+ '︪' => 220,
672
+ '︫' => 220,
673
+ '︬' => 220,
674
+ '︭' => 220,
675
+ '︮' => 230,
676
+ '︯' => 230,
677
+ '𐇽' => 220,
678
+ '𐋠' => 220,
679
+ '𐍶' => 230,
680
+ '𐍷' => 230,
681
+ '𐍸' => 230,
682
+ '𐍹' => 230,
683
+ '𐍺' => 230,
684
+ '𐨍' => 220,
685
+ '𐨏' => 230,
686
+ '𐨸' => 230,
687
+ '𐨹' => 1,
688
+ '𐨺' => 220,
689
+ '𐨿' => 9,
690
+ '𐫥' => 230,
691
+ '𐫦' => 220,
692
+ '𐴤' => 230,
693
+ '𐴥' => 230,
694
+ '𐴦' => 230,
695
+ '𐴧' => 230,
696
+ '𐺫' => 230,
697
+ '𐺬' => 230,
698
+ '𐽆' => 220,
699
+ '𐽇' => 220,
700
+ '𐽈' => 230,
701
+ '𐽉' => 230,
702
+ '𐽊' => 230,
703
+ '𐽋' => 220,
704
+ '𐽌' => 230,
705
+ '𐽍' => 220,
706
+ '𐽎' => 220,
707
+ '𐽏' => 220,
708
+ '𐽐' => 220,
709
+ '𑁆' => 9,
710
+ '𑁿' => 9,
711
+ '𑂹' => 9,
712
+ '𑂺' => 7,
713
+ '𑄀' => 230,
714
+ '𑄁' => 230,
715
+ '𑄂' => 230,
716
+ '𑄳' => 9,
717
+ '𑄴' => 9,
718
+ '𑅳' => 7,
719
+ '𑇀' => 9,
720
+ '𑇊' => 7,
721
+ '𑈵' => 9,
722
+ '𑈶' => 7,
723
+ '𑋩' => 7,
724
+ '𑋪' => 9,
725
+ '𑌻' => 7,
726
+ '𑌼' => 7,
727
+ '𑍍' => 9,
728
+ '𑍦' => 230,
729
+ '𑍧' => 230,
730
+ '𑍨' => 230,
731
+ '𑍩' => 230,
732
+ '𑍪' => 230,
733
+ '𑍫' => 230,
734
+ '𑍬' => 230,
735
+ '𑍰' => 230,
736
+ '𑍱' => 230,
737
+ '𑍲' => 230,
738
+ '𑍳' => 230,
739
+ '𑍴' => 230,
740
+ '𑑂' => 9,
741
+ '𑑆' => 7,
742
+ '𑑞' => 230,
743
+ '𑓂' => 9,
744
+ '𑓃' => 7,
745
+ '𑖿' => 9,
746
+ '𑗀' => 7,
747
+ '𑘿' => 9,
748
+ '𑚶' => 9,
749
+ '𑚷' => 7,
750
+ '𑜫' => 9,
751
+ '𑠹' => 9,
752
+ '𑠺' => 7,
753
+ '𑤽' => 9,
754
+ '𑤾' => 9,
755
+ '𑥃' => 7,
756
+ '𑧠' => 9,
757
+ '𑨴' => 9,
758
+ '𑩇' => 9,
759
+ '𑪙' => 9,
760
+ '𑰿' => 9,
761
+ '𑵂' => 7,
762
+ '𑵄' => 9,
763
+ '𑵅' => 9,
764
+ '𑶗' => 9,
765
+ '𖫰' => 1,
766
+ '𖫱' => 1,
767
+ '𖫲' => 1,
768
+ '𖫳' => 1,
769
+ '𖫴' => 1,
770
+ '𖬰' => 230,
771
+ '𖬱' => 230,
772
+ '𖬲' => 230,
773
+ '𖬳' => 230,
774
+ '𖬴' => 230,
775
+ '𖬵' => 230,
776
+ '𖬶' => 230,
777
+ '𖿰' => 6,
778
+ '𖿱' => 6,
779
+ '𛲞' => 1,
780
+ '𝅥' => 216,
781
+ '𝅦' => 216,
782
+ '𝅧' => 1,
783
+ '𝅨' => 1,
784
+ '𝅩' => 1,
785
+ '𝅭' => 226,
786
+ '𝅮' => 216,
787
+ '𝅯' => 216,
788
+ '𝅰' => 216,
789
+ '𝅱' => 216,
790
+ '𝅲' => 216,
791
+ '𝅻' => 220,
792
+ '𝅼' => 220,
793
+ '𝅽' => 220,
794
+ '𝅾' => 220,
795
+ '𝅿' => 220,
796
+ '𝆀' => 220,
797
+ '𝆁' => 220,
798
+ '𝆂' => 220,
799
+ '𝆅' => 230,
800
+ '𝆆' => 230,
801
+ '𝆇' => 230,
802
+ '𝆈' => 230,
803
+ '𝆉' => 230,
804
+ '𝆊' => 220,
805
+ '𝆋' => 220,
806
+ '𝆪' => 230,
807
+ '𝆫' => 230,
808
+ '𝆬' => 230,
809
+ '𝆭' => 230,
810
+ '𝉂' => 230,
811
+ '𝉃' => 230,
812
+ '𝉄' => 230,
813
+ '𞀀' => 230,
814
+ '𞀁' => 230,
815
+ '𞀂' => 230,
816
+ '𞀃' => 230,
817
+ '𞀄' => 230,
818
+ '𞀅' => 230,
819
+ '𞀆' => 230,
820
+ '𞀈' => 230,
821
+ '𞀉' => 230,
822
+ '𞀊' => 230,
823
+ '𞀋' => 230,
824
+ '𞀌' => 230,
825
+ '𞀍' => 230,
826
+ '𞀎' => 230,
827
+ '𞀏' => 230,
828
+ '𞀐' => 230,
829
+ '𞀑' => 230,
830
+ '𞀒' => 230,
831
+ '𞀓' => 230,
832
+ '𞀔' => 230,
833
+ '𞀕' => 230,
834
+ '𞀖' => 230,
835
+ '𞀗' => 230,
836
+ '𞀘' => 230,
837
+ '𞀛' => 230,
838
+ '𞀜' => 230,
839
+ '𞀝' => 230,
840
+ '𞀞' => 230,
841
+ '𞀟' => 230,
842
+ '𞀠' => 230,
843
+ '𞀡' => 230,
844
+ '𞀣' => 230,
845
+ '𞀤' => 230,
846
+ '𞀦' => 230,
847
+ '𞀧' => 230,
848
+ '𞀨' => 230,
849
+ '𞀩' => 230,
850
+ '𞀪' => 230,
851
+ '𞄰' => 230,
852
+ '𞄱' => 230,
853
+ '𞄲' => 230,
854
+ '𞄳' => 230,
855
+ '𞄴' => 230,
856
+ '𞄵' => 230,
857
+ '𞄶' => 230,
858
+ '𞋬' => 230,
859
+ '𞋭' => 230,
860
+ '𞋮' => 230,
861
+ '𞋯' => 230,
862
+ '𞣐' => 220,
863
+ '𞣑' => 220,
864
+ '𞣒' => 220,
865
+ '𞣓' => 220,
866
+ '𞣔' => 220,
867
+ '𞣕' => 220,
868
+ '𞣖' => 220,
869
+ '𞥄' => 230,
870
+ '𞥅' => 230,
871
+ '𞥆' => 230,
872
+ '𞥇' => 230,
873
+ '𞥈' => 230,
874
+ '𞥉' => 230,
875
+ '𞥊' => 7,
876
+ );
vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php ADDED
@@ -0,0 +1,3695 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return array (
4
+ ' ' => ' ',
5
+ '¨' => ' ̈',
6
+ 'ª' => 'a',
7
+ '¯' => ' ̄',
8
+ '²' => '2',
9
+ '³' => '3',
10
+ '´' => ' ́',
11
+ 'µ' => 'μ',
12
+ '¸' => ' ̧',
13
+ '¹' => '1',
14
+ 'º' => 'o',
15
+ '¼' => '1⁄4',
16
+ '½' => '1⁄2',
17
+ '¾' => '3⁄4',
18
+ 'IJ' => 'IJ',
19
+ 'ij' => 'ij',
20
+ 'Ŀ' => 'L·',
21
+ 'ŀ' => 'l·',
22
+ 'ʼn' => 'ʼn',
23
+ 'ſ' => 's',
24
+ 'DŽ' => 'DŽ',
25
+ 'Dž' => 'Dž',
26
+ 'dž' => 'dž',
27
+ 'LJ' => 'LJ',
28
+ 'Lj' => 'Lj',
29
+ 'lj' => 'lj',
30
+ 'NJ' => 'NJ',
31
+ 'Nj' => 'Nj',
32
+ 'nj' => 'nj',
33
+ 'DZ' => 'DZ',
34
+ 'Dz' => 'Dz',
35
+ 'dz' => 'dz',
36
+ 'ʰ' => 'h',
37
+ 'ʱ' => 'ɦ',
38
+ 'ʲ' => 'j',
39
+ 'ʳ' => 'r',
40
+ 'ʴ' => 'ɹ',
41
+ 'ʵ' => 'ɻ',
42
+ 'ʶ' => 'ʁ',
43
+ 'ʷ' => 'w',
44
+ 'ʸ' => 'y',
45
+ '˘' => ' ̆',
46
+ '˙' => ' ̇',
47
+ '˚' => ' ̊',
48
+ '˛' => ' ̨',
49
+ '˜' => ' ̃',
50
+ '˝' => ' ̋',
51
+ 'ˠ' => 'ɣ',
52
+ 'ˡ' => 'l',
53
+ 'ˢ' => 's',
54
+ 'ˣ' => 'x',
55
+ 'ˤ' => 'ʕ',
56
+ 'ͺ' => ' ͅ',
57
+ '΄' => ' ́',
58
+ '΅' => ' ̈́',
59
+ 'ϐ' => 'β',
60
+ 'ϑ' => 'θ',
61
+ 'ϒ' => 'Υ',
62
+ 'ϓ' => 'Ύ',
63
+ 'ϔ' => 'Ϋ',
64
+ 'ϕ' => 'φ',
65
+ 'ϖ' => 'π',
66
+ 'ϰ' => 'κ',
67
+ 'ϱ' => 'ρ',
68
+ 'ϲ' => 'ς',
69
+ 'ϴ' => 'Θ',
70
+ 'ϵ' => 'ε',
71
+ 'Ϲ' => 'Σ',
72
+ 'և' => 'եւ',
73
+ 'ٵ' => 'اٴ',
74
+ 'ٶ' => 'وٴ',
75
+ 'ٷ' => 'ۇٴ',
76
+ 'ٸ' => 'يٴ',
77
+ 'ำ' => 'ํา',
78
+ 'ຳ' => 'ໍາ',
79
+ 'ໜ' => 'ຫນ',
80
+ 'ໝ' => 'ຫມ',
81
+ '༌' => '་',
82
+ 'ཷ' => 'ྲཱྀ',
83
+ 'ཹ' => 'ླཱྀ',
84
+ 'ჼ' => 'ნ',
85
+ 'ᴬ' => 'A',
86
+ 'ᴭ' => 'Æ',
87
+ 'ᴮ' => 'B',
88
+ 'ᴰ' => 'D',
89
+ 'ᴱ' => 'E',
90
+ 'ᴲ' => 'Ǝ',
91
+ 'ᴳ' => 'G',
92
+ 'ᴴ' => 'H',
93
+ 'ᴵ' => 'I',
94
+ 'ᴶ' => 'J',
95
+ 'ᴷ' => 'K',
96
+ 'ᴸ' => 'L',
97
+ 'ᴹ' => 'M',
98
+ 'ᴺ' => 'N',
99
+ 'ᴼ' => 'O',
100
+ 'ᴽ' => 'Ȣ',
101
+ 'ᴾ' => 'P',
102
+ 'ᴿ' => 'R',
103
+ 'ᵀ' => 'T',
104
+ 'ᵁ' => 'U',
105
+ 'ᵂ' => 'W',
106
+ 'ᵃ' => 'a',
107
+ 'ᵄ' => 'ɐ',
108
+ 'ᵅ' => 'ɑ',
109
+ 'ᵆ' => 'ᴂ',
110
+ 'ᵇ' => 'b',
111
+ 'ᵈ' => 'd',
112
+ 'ᵉ' => 'e',
113
+ 'ᵊ' => 'ə',
114
+ 'ᵋ' => 'ɛ',
115
+ 'ᵌ' => 'ɜ',
116
+ 'ᵍ' => 'g',
117
+ 'ᵏ' => 'k',
118
+ 'ᵐ' => 'm',
119
+ 'ᵑ' => 'ŋ',
120
+ 'ᵒ' => 'o',
121
+ 'ᵓ' => 'ɔ',
122
+ 'ᵔ' => 'ᴖ',
123
+ 'ᵕ' => 'ᴗ',
124
+ 'ᵖ' => 'p',
125
+ 'ᵗ' => 't',
126
+ 'ᵘ' => 'u',
127
+ 'ᵙ' => 'ᴝ',
128
+ 'ᵚ' => 'ɯ',
129
+ 'ᵛ' => 'v',
130
+ 'ᵜ' => 'ᴥ',
131
+ 'ᵝ' => 'β',
132
+ 'ᵞ' => 'γ',
133
+ 'ᵟ' => 'δ',
134
+ 'ᵠ' => 'φ',
135
+ 'ᵡ' => 'χ',
136
+ 'ᵢ' => 'i',
137
+ 'ᵣ' => 'r',
138
+ 'ᵤ' => 'u',
139
+ 'ᵥ' => 'v',
140
+ 'ᵦ' => 'β',
141
+ 'ᵧ' => 'γ',
142
+ 'ᵨ' => 'ρ',
143
+ 'ᵩ' => 'φ',
144
+ 'ᵪ' => 'χ',
145
+ 'ᵸ' => 'н',
146
+ 'ᶛ' => 'ɒ',
147
+ 'ᶜ' => 'c',
148
+ 'ᶝ' => 'ɕ',
149
+ 'ᶞ' => 'ð',
150
+ 'ᶟ' => 'ɜ',
151
+ 'ᶠ' => 'f',
152
+ 'ᶡ' => 'ɟ',
153
+ 'ᶢ' => 'ɡ',
154
+ 'ᶣ' => 'ɥ',
155
+ 'ᶤ' => 'ɨ',
156
+ 'ᶥ' => 'ɩ',
157
+ 'ᶦ' => 'ɪ',
158
+ 'ᶧ' => 'ᵻ',
159
+ 'ᶨ' => 'ʝ',
160
+ 'ᶩ' => 'ɭ',
161
+ 'ᶪ' => 'ᶅ',
162
+ 'ᶫ' => 'ʟ',
163
+ 'ᶬ' => 'ɱ',
164
+ 'ᶭ' => 'ɰ',
165
+ 'ᶮ' => 'ɲ',
166
+ 'ᶯ' => 'ɳ',
167
+ 'ᶰ' => 'ɴ',
168
+ 'ᶱ' => 'ɵ',
169
+ 'ᶲ' => 'ɸ',
170
+ 'ᶳ' => 'ʂ',
171
+ 'ᶴ' => 'ʃ',
172
+ 'ᶵ' => 'ƫ',
173
+ 'ᶶ' => 'ʉ',
174
+ 'ᶷ' => 'ʊ',
175
+ 'ᶸ' => 'ᴜ',
176
+ 'ᶹ' => 'ʋ',
177
+ 'ᶺ' => 'ʌ',
178
+ 'ᶻ' => 'z',
179
+ 'ᶼ' => 'ʐ',
180
+ 'ᶽ' => 'ʑ',
181
+ 'ᶾ' => 'ʒ',
182
+ 'ᶿ' => 'θ',
183
+ 'ẚ' => 'aʾ',
184
+ 'ẛ' => 'ṡ',
185
+ '᾽' => ' ̓',
186
+ '᾿' => ' ̓',
187
+ '῀' => ' ͂',
188
+ '῁' => ' ̈͂',
189
+ '῍' => ' ̓̀',
190
+ '῎' => ' ̓́',
191
+ '῏' => ' ̓͂',
192
+ '῝' => ' ̔̀',
193
+ '῞' => ' ̔́',
194
+ '῟' => ' ̔͂',
195
+ '῭' => ' ̈̀',
196
+ '΅' => ' ̈́',
197
+ '´' => ' ́',
198
+ '῾' => ' ̔',
199
+ ' ' => ' ',
200
+ ' ' => ' ',
201
+ ' ' => ' ',
202
+ ' ' => ' ',
203
+ ' ' => ' ',
204
+ ' ' => ' ',
205
+ ' ' => ' ',
206
+ ' ' => ' ',
207
+ ' ' => ' ',
208
+ ' ' => ' ',
209
+ ' ' => ' ',
210
+ '‑' => '‐',
211
+ '‗' => ' ̳',
212
+ '․' => '.',
213
+ '‥' => '..',
214
+ '…' => '...',
215
+ ' ' => ' ',
216
+ '″' => '′′',
217
+ '‴' => '′′′',
218
+ '‶' => '‵‵',
219
+ '‷' => '‵‵‵',
220
+ '‼' => '!!',
221
+ '‾' => ' ̅',
222
+ '⁇' => '??',
223
+ '⁈' => '?!',
224
+ '⁉' => '!?',
225
+ '⁗' => '′′′′',
226
+ ' ' => ' ',
227
+ '⁰' => '0',
228
+ 'ⁱ' => 'i',
229
+ '⁴' => '4',
230
+ '⁵' => '5',
231
+ '⁶' => '6',
232
+ '⁷' => '7',
233
+ '⁸' => '8',
234
+ '⁹' => '9',
235
+ '⁺' => '+',
236
+ '⁻' => '−',
237
+ '⁼' => '=',
238
+ '⁽' => '(',
239
+ '⁾' => ')',
240
+ 'ⁿ' => 'n',
241
+ '₀' => '0',
242
+ '₁' => '1',
243
+ '₂' => '2',
244
+ '₃' => '3',
245
+ '₄' => '4',
246
+ '₅' => '5',
247
+ '₆' => '6',
248
+ '₇' => '7',
249
+ '₈' => '8',
250
+ '₉' => '9',
251
+ '₊' => '+',
252
+ '₋' => '−',
253
+ '₌' => '=',
254
+ '₍' => '(',
255
+ '₎' => ')',
256
+ 'ₐ' => 'a',
257
+ 'ₑ' => 'e',
258
+ 'ₒ' => 'o',
259
+ 'ₓ' => 'x',
260
+ 'ₔ' => 'ə',
261
+ 'ₕ' => 'h',
262
+ 'ₖ' => 'k',
263
+ 'ₗ' => 'l',
264
+ 'ₘ' => 'm',
265
+ 'ₙ' => 'n',
266
+ 'ₚ' => 'p',
267
+ 'ₛ' => 's',
268
+ 'ₜ' => 't',
269
+ '₨' => 'Rs',
270
+ '℀' => 'a/c',
271
+ '℁' => 'a/s',
272
+ 'ℂ' => 'C',
273
+ '℃' => '°C',
274
+ '℅' => 'c/o',
275
+ '℆' => 'c/u',
276
+ 'ℇ' => 'Ɛ',
277
+ '℉' => '°F',
278
+ 'ℊ' => 'g',
279
+ 'ℋ' => 'H',
280
+ 'ℌ' => 'H',
281
+ 'ℍ' => 'H',
282
+ 'ℎ' => 'h',
283
+ 'ℏ' => 'ħ',
284
+ 'ℐ' => 'I',
285
+ 'ℑ' => 'I',
286
+ 'ℒ' => 'L',
287
+ 'ℓ' => 'l',
288
+ 'ℕ' => 'N',
289
+ '№' => 'No',
290
+ 'ℙ' => 'P',
291
+ 'ℚ' => 'Q',
292
+ 'ℛ' => 'R',
293
+ 'ℜ' => 'R',
294
+ 'ℝ' => 'R',
295
+ '℠' => 'SM',
296
+ '℡' => 'TEL',
297
+ '™' => 'TM',
298
+ 'ℤ' => 'Z',
299
+ 'ℨ' => 'Z',
300
+ 'ℬ' => 'B',
301
+ 'ℭ' => 'C',
302
+ 'ℯ' => 'e',
303
+ 'ℰ' => 'E',
304
+ 'ℱ' => 'F',
305
+ 'ℳ' => 'M',
306
+ 'ℴ' => 'o',
307
+ 'ℵ' => 'א',
308
+ 'ℶ' => 'ב',
309
+ 'ℷ' => 'ג',
310
+ 'ℸ' => 'ד',
311
+ 'ℹ' => 'i',
312
+ '℻' => 'FAX',
313
+ 'ℼ' => 'π',
314
+ 'ℽ' => 'γ',
315
+ 'ℾ' => 'Γ',
316
+ 'ℿ' => 'Π',
317
+ '⅀' => '∑',
318
+ 'ⅅ' => 'D',
319
+ 'ⅆ' => 'd',
320
+ 'ⅇ' => 'e',
321
+ 'ⅈ' => 'i',
322
+ 'ⅉ' => 'j',
323
+ '⅐' => '1⁄7',
324
+ '⅑' => '1⁄9',
325
+ '⅒' => '1⁄10',
326
+ '⅓' => '1⁄3',
327
+ '⅔' => '2⁄3',
328
+ '⅕' => '1⁄5',
329
+ '⅖' => '2⁄5',
330
+ '⅗' => '3⁄5',
331
+ '⅘' => '4⁄5',
332
+ '⅙' => '1⁄6',
333
+ '⅚' => '5⁄6',
334
+ '⅛' => '1⁄8',
335
+ '⅜' => '3⁄8',
336
+ '⅝' => '5⁄8',
337
+ '⅞' => '7⁄8',
338
+ '⅟' => '1⁄',
339
+ 'Ⅰ' => 'I',
340
+ 'Ⅱ' => 'II',
341
+ 'Ⅲ' => 'III',
342
+ 'Ⅳ' => 'IV',
343
+ 'Ⅴ' => 'V',
344
+ 'Ⅵ' => 'VI',
345
+ 'Ⅶ' => 'VII',
346
+ 'Ⅷ' => 'VIII',
347
+ 'Ⅸ' => 'IX',
348
+ 'Ⅹ' => 'X',
349
+ 'Ⅺ' => 'XI',
350
+ 'Ⅻ' => 'XII',
351
+ 'Ⅼ' => 'L',
352
+ 'Ⅽ' => 'C',
353
+ 'Ⅾ' => 'D',
354
+ 'Ⅿ' => 'M',
355
+ 'ⅰ' => 'i',
356
+ 'ⅱ' => 'ii',
357
+ 'ⅲ' => 'iii',
358
+ 'ⅳ' => 'iv',
359
+ 'ⅴ' => 'v',
360
+ 'ⅵ' => 'vi',
361
+ 'ⅶ' => 'vii',
362
+ 'ⅷ' => 'viii',
363
+ 'ⅸ' => 'ix',
364
+ 'ⅹ' => 'x',
365
+ 'ⅺ' => 'xi',
366
+ 'ⅻ' => 'xii',
367
+ 'ⅼ' => 'l',
368
+ 'ⅽ' => 'c',
369
+ 'ⅾ' => 'd',
370
+ 'ⅿ' => 'm',
371
+ '↉' => '0⁄3',
372
+ '∬' => '∫∫',
373
+ '∭' => '∫∫∫',
374
+ '∯' => '∮∮',
375
+ '∰' => '∮∮∮',
376
+ '①' => '1',
377
+ '②' => '2',
378
+ '③' => '3',
379
+ '④' => '4',
380
+ '⑤' => '5',
381
+ '⑥' => '6',
382
+ '⑦' => '7',
383
+ '⑧' => '8',
384
+ '⑨' => '9',
385
+ '⑩' => '10',
386
+ '⑪' => '11',
387
+ '⑫' => '12',
388
+ '⑬' => '13',
389
+ '⑭' => '14',
390
+ '⑮' => '15',
391
+ '⑯' => '16',
392
+ '⑰' => '17',
393
+ '⑱' => '18',
394
+ '⑲' => '19',
395
+ '⑳' => '20',
396
+ '⑴' => '(1)',
397
+ '⑵' => '(2)',
398
+ '⑶' => '(3)',
399
+ '⑷' => '(4)',
400
+ '⑸' => '(5)',
401
+ '⑹' => '(6)',
402
+ '⑺' => '(7)',
403
+ '⑻' => '(8)',
404
+ '⑼' => '(9)',
405
+ '⑽' => '(10)',
406
+ '⑾' => '(11)',
407
+ '⑿' => '(12)',
408
+ '⒀' => '(13)',
409
+ '⒁' => '(14)',
410
+ '⒂' => '(15)',
411
+ '⒃' => '(16)',
412
+ '⒄' => '(17)',
413
+ '⒅' => '(18)',
414
+ '⒆' => '(19)',
415
+ '⒇' => '(20)',
416
+ '⒈' => '1.',
417
+ '⒉' => '2.',
418
+ '⒊' => '3.',
419
+ '⒋' => '4.',
420
+ '⒌' => '5.',
421
+ '⒍' => '6.',
422
+ '⒎' => '7.',
423
+ '⒏' => '8.',
424
+ '⒐' => '9.',
425
+ '⒑' => '10.',
426
+ '⒒' => '11.',
427
+ '⒓' => '12.',
428
+ '⒔' => '13.',
429
+ '⒕' => '14.',
430
+ '⒖' => '15.',
431
+ '⒗' => '16.',
432
+ '⒘' => '17.',
433
+ '⒙' => '18.',
434
+ '⒚' => '19.',
435
+ '⒛' => '20.',
436
+ '⒜' => '(a)',
437
+ '⒝' => '(b)',
438
+ '⒞' => '(c)',
439
+ '⒟' => '(d)',
440
+ '⒠' => '(e)',
441
+ '⒡' => '(f)',
442
+ '⒢' => '(g)',
443
+ '⒣' => '(h)',
444
+ '⒤' => '(i)',
445
+ '⒥' => '(j)',
446
+ '⒦' => '(k)',
447
+ '⒧' => '(l)',
448
+ '⒨' => '(m)',
449
+ '⒩' => '(n)',
450
+ '⒪' => '(o)',
451
+ '⒫' => '(p)',
452
+ '⒬' => '(q)',
453
+ '⒭' => '(r)',
454
+ '⒮' => '(s)',
455
+ '⒯' => '(t)',
456
+ '⒰' => '(u)',
457
+ '⒱' => '(v)',
458
+ '⒲' => '(w)',
459
+ '⒳' => '(x)',
460
+ '⒴' => '(y)',
461
+ '⒵' => '(z)',
462
+ 'Ⓐ' => 'A',
463
+ 'Ⓑ' => 'B',
464
+ 'Ⓒ' => 'C',
465
+ 'Ⓓ' => 'D',
466
+ 'Ⓔ' => 'E',
467
+ 'Ⓕ' => 'F',
468
+ 'Ⓖ' => 'G',
469
+ 'Ⓗ' => 'H',
470
+ 'Ⓘ' => 'I',
471
+ 'Ⓙ' => 'J',
472
+ 'Ⓚ' => 'K',
473
+ 'Ⓛ' => 'L',
474
+ 'Ⓜ' => 'M',
475
+ 'Ⓝ' => 'N',
476
+ 'Ⓞ' => 'O',
477
+ 'Ⓟ' => 'P',
478
+ 'Ⓠ' => 'Q',
479
+ 'Ⓡ' => 'R',
480
+ 'Ⓢ' => 'S',
481
+ 'Ⓣ' => 'T',
482
+ 'Ⓤ' => 'U',
483
+ 'Ⓥ' => 'V',
484
+ 'Ⓦ' => 'W',
485
+ 'Ⓧ' => 'X',
486
+ 'Ⓨ' => 'Y',
487
+ 'Ⓩ' => 'Z',
488
+ 'ⓐ' => 'a',
489
+ 'ⓑ' => 'b',
490
+ 'ⓒ' => 'c',
491
+ 'ⓓ' => 'd',
492
+ 'ⓔ' => 'e',
493
+ 'ⓕ' => 'f',
494
+ 'ⓖ' => 'g',
495
+ 'ⓗ' => 'h',
496
+ 'ⓘ' => 'i',
497
+ 'ⓙ' => 'j',
498
+ 'ⓚ' => 'k',
499
+ 'ⓛ' => 'l',
500
+ 'ⓜ' => 'm',
501
+ 'ⓝ' => 'n',
502
+ 'ⓞ' => 'o',
503
+ 'ⓟ' => 'p',
504
+ 'ⓠ' => 'q',
505
+ 'ⓡ' => 'r',
506
+ 'ⓢ' => 's',
507
+ 'ⓣ' => 't',
508
+ 'ⓤ' => 'u',
509
+ 'ⓥ' => 'v',
510
+ 'ⓦ' => 'w',
511
+ 'ⓧ' => 'x',
512
+ 'ⓨ' => 'y',
513
+ 'ⓩ' => 'z',
514
+ '⓪' => '0',
515
+ '⨌' => '∫∫∫∫',
516
+ '⩴' => '::=',
517
+ '⩵' => '==',
518
+ '⩶' => '===',
519
+ 'ⱼ' => 'j',
520
+ 'ⱽ' => 'V',
521
+ 'ⵯ' => 'ⵡ',
522
+ '⺟' => '母',
523
+ '⻳' => '龟',
524
+ '⼀' => '一',
525
+ '⼁' => '丨',
526
+ '⼂' => '丶',
527
+ '⼃' => '丿',
528
+ '⼄' => '乙',
529
+ '⼅' => '亅',
530
+ '⼆' => '二',
531
+ '⼇' => '亠',
532
+ '⼈' => '人',
533
+ '⼉' => '儿',
534
+ '⼊' => '入',
535
+ '⼋' => '八',
536
+ '⼌' => '冂',
537
+ '⼍' => '冖',
538
+ '⼎' => '冫',
539
+ '⼏' => '几',
540
+ '⼐' => '凵',
541
+ '⼑' => '刀',
542
+ '⼒' => '力',
543
+ '⼓' => '勹',
544
+ '⼔' => '匕',
545
+ '⼕' => '匚',
546
+ '⼖' => '匸',
547
+ '⼗' => '十',
548
+ '⼘' => '卜',
549
+ '⼙' => '卩',
550
+ '⼚' => '厂',
551
+ '⼛' => '厶',
552
+ '⼜' => '又',
553
+ '⼝' => '口',
554
+ '⼞' => '囗',
555
+ '⼟' => '土',
556
+ '⼠' => '士',
557
+ '⼡' => '夂',
558
+ '⼢' => '夊',
559
+ '⼣' => '夕',
560
+ '⼤' => '大',
561
+ '⼥' => '女',
562
+ '⼦' => '子',
563
+ '⼧' => '宀',
564
+ '⼨' => '寸',
565
+ '⼩' => '小',
566
+ '⼪' => '尢',
567
+ '⼫' => '尸',
568
+ '⼬' => '屮',
569
+ '⼭' => '山',
570
+ '⼮' => '巛',
571
+ '⼯' => '工',
572
+ '⼰' => '己',
573
+ '⼱' => '巾',
574
+ '⼲' => '干',
575
+ '⼳' => '幺',
576
+ '⼴' => '广',
577
+ '⼵' => '廴',
578
+ '⼶' => '廾',
579
+ '⼷' => '弋',
580
+ '⼸' => '弓',
581
+ '⼹' => '彐',
582
+ '⼺' => '彡',
583
+ '⼻' => '彳',
584
+ '⼼' => '心',
585
+ '⼽' => '戈',
586
+ '⼾' => '戶',
587
+ '⼿' => '手',
588
+ '⽀' => '支',
589
+ '⽁' => '攴',
590
+ '⽂' => '文',
591
+ '⽃' => '斗',
592
+ '⽄' => '斤',
593
+ '⽅' => '方',
594
+ '⽆' => '无',
595
+ '⽇' => '日',
596
+ '⽈' => '曰',
597
+ '⽉' => '月',
598
+ '⽊' => '木',
599
+ '⽋' => '欠',
600
+ '⽌' => '止',
601
+ '⽍' => '歹',
602
+ '⽎' => '殳',
603
+ '⽏' => '毋',
604
+ '⽐' => '比',
605
+ '⽑' => '毛',
606
+ '⽒' => '氏',
607
+ '⽓' => '气',
608
+ '⽔' => '水',
609
+ '⽕' => '火',
610
+ '⽖' => '爪',
611
+ '⽗' => '父',
612
+ '⽘' => '爻',
613
+ '⽙' => '爿',
614
+ '⽚' => '片',
615
+ '⽛' => '牙',
616
+ '⽜' => '牛',
617
+ '⽝' => '犬',
618
+ '⽞' => '玄',
619
+ '⽟' => '玉',
620
+ '⽠' => '瓜',
621
+ '⽡' => '瓦',
622
+ '⽢' => '甘',
623
+ '⽣' => '生',
624
+ '⽤' => '用',
625
+ '⽥' => '田',
626
+ '⽦' => '疋',
627
+ '⽧' => '疒',
628
+ '⽨' => '癶',
629
+ '⽩' => '白',
630
+ '⽪' => '皮',
631
+ '⽫' => '皿',
632
+ '⽬' => '目',
633
+ '⽭' => '矛',
634
+ '⽮' => '矢',
635
+ '⽯' => '石',
636
+ '⽰' => '示',
637
+ '⽱' => '禸',
638
+ '⽲' => '禾',
639
+ '⽳' => '穴',
640
+ '⽴' => '立',
641
+ '⽵' => '竹',
642
+ '⽶' => '米',
643
+ '⽷' => '糸',
644
+ '⽸' => '缶',
645
+ '⽹' => '网',
646
+ '⽺' => '羊',
647
+ '⽻' => '羽',
648
+ '⽼' => '老',
649
+ '⽽' => '而',
650
+ '⽾' => '耒',
651
+ '⽿' => '耳',
652
+ '⾀' => '聿',
653
+ '⾁' => '肉',
654
+ '⾂' => '臣',
655
+ '⾃' => '自',
656
+ '⾄' => '至',
657
+ '⾅' => '臼',
658
+ '⾆' => '舌',
659
+ '⾇' => '舛',
660
+ '⾈' => '舟',
661
+ '⾉' => '艮',
662
+ '⾊' => '色',
663
+ '⾋' => '艸',
664
+ '⾌' => '虍',
665
+ '⾍' => '虫',
666
+ '⾎' => '血',
667
+ '⾏' => '行',
668
+ '⾐' => '衣',
669
+ '⾑' => '襾',
670
+ '⾒' => '見',
671
+ '⾓' => '角',
672
+ '⾔' => '言',
673
+ '⾕' => '谷',
674
+ '⾖' => '豆',
675
+ '⾗' => '豕',
676
+ '⾘' => '豸',
677
+ '⾙' => '貝',
678
+ '⾚' => '赤',
679
+ '⾛' => '走',
680
+ '⾜' => '足',
681
+ '⾝' => '身',
682
+ '⾞' => '車',
683
+ '⾟' => '辛',
684
+ '⾠' => '辰',
685
+ '⾡' => '辵',
686
+ '⾢' => '邑',
687
+ '⾣' => '酉',
688
+ '⾤' => '釆',
689
+ '⾥' => '里',
690
+ '⾦' => '金',
691
+ '⾧' => '長',
692
+ '⾨' => '門',
693
+ '⾩' => '阜',
694
+ '⾪' => '隶',
695
+ '⾫' => '隹',
696
+ '⾬' => '雨',
697
+ '⾭' => '靑',
698
+ '⾮' => '非',
699
+ '⾯' => '面',
700
+ '⾰' => '革',
701
+ '⾱' => '韋',
702
+ '⾲' => '韭',
703
+ '⾳' => '音',
704
+ '⾴' => '頁',
705
+ '⾵' => '風',
706
+ '⾶' => '飛',
707
+ '⾷' => '食',
708
+ '⾸' => '首',
709
+ '⾹' => '香',
710
+ '⾺' => '馬',
711
+ '⾻' => '骨',
712
+ '⾼' => '高',
713
+ '⾽' => '髟',
714
+ '⾾' => '鬥',
715
+ '⾿' => '鬯',
716
+ '⿀' => '鬲',
717
+ '⿁' => '鬼',
718
+ '⿂' => '魚',
719
+ '⿃' => '鳥',
720
+ '⿄' => '鹵',
721
+ '⿅' => '鹿',
722
+ '⿆' => '麥',
723
+ '⿇' => '麻',
724
+ '⿈' => '黃',
725
+ '⿉' => '黍',
726
+ '⿊' => '黑',
727
+ '⿋' => '黹',
728
+ '⿌' => '黽',
729
+ '⿍' => '鼎',
730
+ '⿎' => '鼓',
731
+ '⿏' => '鼠',
732
+ '⿐' => '鼻',
733
+ '⿑' => '齊',
734
+ '⿒' => '齒',
735
+ '⿓' => '龍',
736
+ '⿔' => '龜',
737
+ '⿕' => '龠',
738
+ ' ' => ' ',
739
+ '〶' => '〒',
740
+ '〸' => '十',
741
+ '〹' => '卄',
742
+ '〺' => '卅',
743
+ '゛' => ' ゙',
744
+ '゜' => ' ゚',
745
+ 'ゟ' => 'より',
746
+ 'ヿ' => 'コト',
747
+ 'ㄱ' => 'ᄀ',
748
+ 'ㄲ' => 'ᄁ',
749
+ 'ㄳ' => 'ᆪ',
750
+ 'ㄴ' => 'ᄂ',
751
+ 'ㄵ' => 'ᆬ',
752
+ 'ㄶ' => 'ᆭ',
753
+ 'ㄷ' => 'ᄃ',
754
+ 'ㄸ' => 'ᄄ',
755
+ 'ㄹ' => 'ᄅ',
756
+ 'ㄺ' => 'ᆰ',
757
+ 'ㄻ' => 'ᆱ',
758
+ 'ㄼ' => 'ᆲ',
759
+ 'ㄽ' => 'ᆳ',
760
+ 'ㄾ' => 'ᆴ',
761
+ 'ㄿ' => 'ᆵ',
762
+ 'ㅀ' => 'ᄚ',
763
+ 'ㅁ' => 'ᄆ',
764
+ 'ㅂ' => 'ᄇ',
765
+ 'ㅃ' => 'ᄈ',
766
+ 'ㅄ' => 'ᄡ',
767
+ 'ㅅ' => 'ᄉ',
768
+ 'ㅆ' => 'ᄊ',
769
+ 'ㅇ' => 'ᄋ',
770
+ 'ㅈ' => 'ᄌ',
771
+ 'ㅉ' => 'ᄍ',
772
+ 'ㅊ' => 'ᄎ',
773
+ 'ㅋ' => 'ᄏ',
774
+ 'ㅌ' => 'ᄐ',
775
+ 'ㅍ' => 'ᄑ',
776
+ 'ㅎ' => 'ᄒ',
777
+ 'ㅏ' => 'ᅡ',
778
+ 'ㅐ' => 'ᅢ',
779
+ 'ㅑ' => 'ᅣ',
780
+ 'ㅒ' => 'ᅤ',
781
+ 'ㅓ' => 'ᅥ',
782
+ 'ㅔ' => 'ᅦ',
783
+ 'ㅕ' => 'ᅧ',
784
+ 'ㅖ' => 'ᅨ',
785
+ 'ㅗ' => 'ᅩ',
786
+ 'ㅘ' => 'ᅪ',
787
+ 'ㅙ' => 'ᅫ',
788
+ 'ㅚ' => 'ᅬ',
789
+ 'ㅛ' => 'ᅭ',
790
+ 'ㅜ' => 'ᅮ',
791
+ 'ㅝ' => 'ᅯ',
792
+ 'ㅞ' => 'ᅰ',
793
+ 'ㅟ' => 'ᅱ',
794
+ 'ㅠ' => 'ᅲ',
795
+ 'ㅡ' => 'ᅳ',
796
+ 'ㅢ' => 'ᅴ',
797
+ 'ㅣ' => 'ᅵ',
798
+ 'ㅤ' => 'ᅠ',
799
+ 'ㅥ' => 'ᄔ',
800
+ 'ㅦ' => 'ᄕ',
801
+ 'ㅧ' => 'ᇇ',
802
+ 'ㅨ' => 'ᇈ',
803
+ 'ㅩ' => 'ᇌ',
804
+ 'ㅪ' => 'ᇎ',
805
+ 'ㅫ' => 'ᇓ',
806
+ 'ㅬ' => 'ᇗ',
807
+ 'ㅭ' => 'ᇙ',
808
+ 'ㅮ' => 'ᄜ',
809
+ 'ㅯ' => 'ᇝ',
810
+ 'ㅰ' => 'ᇟ',
811
+ 'ㅱ' => 'ᄝ',
812
+ 'ㅲ' => 'ᄞ',
813
+ 'ㅳ' => 'ᄠ',
814
+ 'ㅴ' => 'ᄢ',
815
+ 'ㅵ' => 'ᄣ',
816
+ 'ㅶ' => 'ᄧ',
817
+ 'ㅷ' => 'ᄩ',
818
+ 'ㅸ' => 'ᄫ',
819
+ 'ㅹ' => 'ᄬ',
820
+ 'ㅺ' => 'ᄭ',
821
+ 'ㅻ' => 'ᄮ',
822
+ 'ㅼ' => 'ᄯ',
823
+ 'ㅽ' => 'ᄲ',
824
+ 'ㅾ' => 'ᄶ',
825
+ 'ㅿ' => 'ᅀ',
826
+ 'ㆀ' => 'ᅇ',
827
+ 'ㆁ' => 'ᅌ',
828
+ 'ㆂ' => 'ᇱ',
829
+ 'ㆃ' => 'ᇲ',
830
+ 'ㆄ' => 'ᅗ',
831
+ 'ㆅ' => 'ᅘ',
832
+ 'ㆆ' => 'ᅙ',
833
+ 'ㆇ' => 'ᆄ',
834
+ 'ㆈ' => 'ᆅ',
835
+ 'ㆉ' => 'ᆈ',
836
+ 'ㆊ' => 'ᆑ',
837
+ 'ㆋ' => 'ᆒ',
838
+ 'ㆌ' => 'ᆔ',
839
+ 'ㆍ' => 'ᆞ',
840
+ 'ㆎ' => 'ᆡ',
841
+ '㆒' => '一',
842
+ '㆓' => '二',
843
+ '㆔' => '三',
844
+ '㆕' => '四',
845
+ '㆖' => '上',
846
+ '㆗' => '中',
847
+ '㆘' => '下',
848
+ '㆙' => '甲',
849
+ '㆚' => '乙',
850
+ '㆛' => '丙',
851
+ '㆜' => '丁',
852
+ '㆝' => '天',
853
+ '㆞' => '地',
854
+ '㆟' => '人',
855
+ '㈀' => '(ᄀ)',
856
+ '㈁' => '(ᄂ)',
857
+ '㈂' => '(ᄃ)',
858
+ '㈃' => '(ᄅ)',
859
+ '㈄' => '(ᄆ)',
860
+ '㈅' => '(ᄇ)',
861
+ '㈆' => '(ᄉ)',
862
+ '㈇' => '(ᄋ)',
863
+ '㈈' => '(ᄌ)',
864
+ '㈉' => '(ᄎ)',
865
+ '㈊' => '(ᄏ)',
866
+ '㈋' => '(ᄐ)',
867
+ '㈌' => '(ᄑ)',
868
+ '㈍' => '(ᄒ)',
869
+ '㈎' => '(가)',
870
+ '㈏' => '(나)',
871
+ '㈐' => '(다)',
872
+ '㈑' => '(라)',
873
+ '㈒' => '(마)',
874
+ '㈓' => '(바)',
875
+ '㈔' => '(사)',
876
+ '㈕' => '(아)',
877
+ '㈖' => '(자)',
878
+ '㈗' => '(차)',
879
+ '㈘' => '(카)',
880
+ '㈙' => '(타)',
881
+ '㈚' => '(파)',
882
+ '㈛' => '(하)',
883
+ '㈜' => '(주)',
884
+ '㈝' => '(오전)',
885
+ '㈞' => '(오후)',
886
+ '㈠' => '(一)',
887
+ '㈡' => '(二)',
888
+ '㈢' => '(三)',
889
+ '㈣' => '(四)',
890
+ '㈤' => '(五)',
891
+ '㈥' => '(六)',
892
+ '㈦' => '(七)',
893
+ '㈧' => '(八)',
894
+ '㈨' => '(九)',
895
+ '㈩' => '(十)',
896
+ '㈪' => '(月)',
897
+ '㈫' => '(火)',
898
+ '㈬' => '(水)',
899
+ '㈭' => '(木)',
900
+ '㈮' => '(金)',
901
+ '㈯' => '(土)',
902
+ '㈰' => '(日)',
903
+ '㈱' => '(株)',
904
+ '㈲' => '(有)',
905
+ '㈳' => '(社)',
906
+ '㈴' => '(名)',
907
+ '㈵' => '(特)',
908
+ '㈶' => '(財)',
909
+ '㈷' => '(祝)',
910
+ '㈸' => '(労)',
911
+ '㈹' => '(代)',
912
+ '㈺' => '(呼)',
913
+ '㈻' => '(学)',
914
+ '㈼' => '(監)',
915
+ '㈽' => '(企)',
916
+ '㈾' => '(資)',
917
+ '㈿' => '(協)',
918
+ '㉀' => '(祭)',
919
+ '㉁' => '(休)',
920
+ '㉂' => '(自)',
921
+ '㉃' => '(至)',
922
+ '㉄' => '問',
923
+ '㉅' => '幼',
924
+ '㉆' => '文',
925
+ '㉇' => '箏',
926
+ '㉐' => 'PTE',
927
+ '㉑' => '21',
928
+ '㉒' => '22',
929
+ '㉓' => '23',
930
+ '㉔' => '24',
931
+ '㉕' => '25',
932
+ '㉖' => '26',
933
+ '㉗' => '27',
934
+ '㉘' => '28',
935
+ '㉙' => '29',
936
+ '㉚' => '30',
937
+ '㉛' => '31',
938
+ '㉜' => '32',
939
+ '㉝' => '33',
940
+ '㉞' => '34',
941
+ '㉟' => '35',
942
+ '㉠' => 'ᄀ',
943
+ '㉡' => 'ᄂ',
944
+ '㉢' => 'ᄃ',
945
+ '㉣' => 'ᄅ',
946
+ '㉤' => 'ᄆ',
947
+ '㉥' => 'ᄇ',
948
+ '㉦' => 'ᄉ',
949
+ '㉧' => 'ᄋ',
950
+ '㉨' => 'ᄌ',
951
+ '㉩' => 'ᄎ',
952
+ '㉪' => 'ᄏ',
953
+ '㉫' => 'ᄐ',
954
+ '㉬' => 'ᄑ',
955
+ '㉭' => 'ᄒ',
956
+ '㉮' => '가',
957
+ '㉯' => '나',
958
+ '㉰' => '다',
959
+ '㉱' => '라',
960
+ '㉲' => '마',
961
+ '㉳' => '바',
962
+ '㉴' => '사',
963
+ '㉵' => '아',
964
+ '㉶' => '자',
965
+ '㉷' => '차',
966
+ '㉸' => '카',
967
+ '㉹' => '타',
968
+ '㉺' => '파',
969
+ '㉻' => '하',
970
+ '㉼' => '참고',
971
+ '㉽' => '주의',
972
+ '㉾' => '우',
973
+ '㊀' => '一',
974
+ '㊁' => '二',
975
+ '㊂' => '三',
976
+ '㊃' => '四',
977
+ '㊄' => '五',
978
+ '㊅' => '六',
979
+ '㊆' => '七',
980
+ '㊇' => '八',
981
+ '㊈' => '九',
982
+ '㊉' => '十',
983
+ '㊊' => '月',
984
+ '㊋' => '火',
985
+ '㊌' => '水',
986
+ '㊍' => '木',
987
+ '㊎' => '金',
988
+ '㊏' => '土',
989
+ '㊐' => '日',
990
+ '㊑' => '株',
991
+ '㊒' => '有',
992
+ '㊓' => '社',
993
+ '㊔' => '名',
994
+ '㊕' => '特',
995
+ '㊖' => '財',
996
+ '㊗' => '祝',
997
+ '㊘' => '労',
998
+ '㊙' => '秘',
999
+ '㊚' => '男',
1000
+ '㊛' => '女',
1001
+ '㊜' => '適',
1002
+ '㊝' => '優',
1003
+ '㊞' => '印',
1004
+ '㊟' => '注',
1005
+ '㊠' => '項',
1006
+ '㊡' => '休',
1007
+ '㊢' => '写',
1008
+ '㊣' => '正',
1009
+ '㊤' => '上',
1010
+ '㊥' => '中',
1011
+ '㊦' => '下',
1012
+ '㊧' => '左',
1013
+ '㊨' => '右',
1014
+ '㊩' => '医',
1015
+ '㊪' => '宗',
1016
+ '㊫' => '学',
1017
+ '㊬' => '監',
1018
+ '㊭' => '企',
1019
+ '㊮' => '資',
1020
+ '㊯' => '協',
1021
+ '㊰' => '夜',
1022
+ '㊱' => '36',
1023
+ '㊲' => '37',
1024
+ '㊳' => '38',
1025
+ '㊴' => '39',
1026
+ '㊵' => '40',
1027
+ '㊶' => '41',
1028
+ '㊷' => '42',
1029
+ '㊸' => '43',
1030
+ '㊹' => '44',
1031
+ '㊺' => '45',
1032
+ '㊻' => '46',
1033
+ '㊼' => '47',
1034
+ '㊽' => '48',
1035
+ '㊾' => '49',
1036
+ '㊿' => '50',
1037
+ '㋀' => '1月',
1038
+ '㋁' => '2月',
1039
+ '㋂' => '3月',
1040
+ '㋃' => '4月',
1041
+ '㋄' => '5月',
1042
+ '㋅' => '6月',
1043
+ '㋆' => '7月',
1044
+ '㋇' => '8月',
1045
+ '㋈' => '9月',
1046
+ '㋉' => '10月',
1047
+ '㋊' => '11月',
1048
+ '㋋' => '12月',
1049
+ '㋌' => 'Hg',
1050
+ '㋍' => 'erg',
1051
+ '㋎' => 'eV',
1052
+ '㋏' => 'LTD',
1053
+ '㋐' => 'ア',
1054
+ '㋑' => 'イ',
1055
+ '㋒' => 'ウ',
1056
+ '㋓' => 'エ',
1057
+ '㋔' => 'オ',
1058
+ '㋕' => 'カ',
1059
+ '㋖' => 'キ',
1060
+ '㋗' => 'ク',
1061
+ '㋘' => 'ケ',
1062
+ '㋙' => 'コ',
1063
+ '㋚' => 'サ',
1064
+ '㋛' => 'シ',
1065
+ '㋜' => 'ス',
1066
+ '㋝' => 'セ',
1067
+ '㋞' => 'ソ',
1068
+ '㋟' => 'タ',
1069
+ '㋠' => 'チ',
1070
+ '㋡' => 'ツ',
1071
+ '㋢' => 'テ',
1072
+ '㋣' => 'ト',
1073
+ '㋤' => 'ナ',
1074
+ '㋥' => 'ニ',
1075
+ '㋦' => 'ヌ',
1076
+ '㋧' => 'ネ',
1077
+ '㋨' => 'ノ',
1078
+ '㋩' => 'ハ',
1079
+ '㋪' => 'ヒ',
1080
+ '㋫' => 'フ',
1081
+ '㋬' => 'ヘ',
1082
+ '㋭' => 'ホ',
1083
+ '㋮' => 'マ',
1084
+ '㋯' => 'ミ',
1085
+ '㋰' => 'ム',
1086
+ '㋱' => 'メ',
1087
+ '㋲' => 'モ',
1088
+ '㋳' => 'ヤ',
1089
+ '㋴' => 'ユ',
1090
+ '㋵' => 'ヨ',
1091
+ '㋶' => 'ラ',
1092
+ '㋷' => 'リ',
1093
+ '㋸' => 'ル',
1094
+ '㋹' => 'レ',
1095
+ '㋺' => 'ロ',
1096
+ '㋻' => 'ワ',
1097
+ '㋼' => 'ヰ',
1098
+ '㋽' => 'ヱ',
1099
+ '㋾' => 'ヲ',
1100
+ '㋿' => '令和',
1101
+ '㌀' => 'アパート',
1102
+ '㌁' => 'アルファ',
1103
+ '㌂' => 'アンペア',
1104
+ '㌃' => 'アール',
1105
+ '㌄' => 'イニング',
1106
+ '㌅' => 'インチ',
1107
+ '㌆' => 'ウォン',
1108
+ '㌇' => 'エスクード',
1109
+ '㌈' => 'エーカー',
1110
+ '㌉' => 'オンス',
1111
+ '㌊' => 'オーム',
1112
+ '㌋' => 'カイリ',
1113
+ '㌌' => 'カラット',
1114
+ '㌍' => 'カロリー',
1115
+ '㌎' => 'ガロン',
1116
+ '㌏' => 'ガンマ',
1117
+ '㌐' => 'ギガ',
1118
+ '㌑' => 'ギニー',
1119
+ '㌒' => 'キュリー',
1120
+ '㌓' => 'ギルダー',
1121
+ '㌔' => 'キロ',
1122
+ '㌕' => 'キログラム',
1123
+ '㌖' => 'キロメートル',
1124
+ '㌗' => 'キロワット',
1125
+ '㌘' => 'グラム',
1126
+ '㌙' => 'グラムトン',
1127
+ '㌚' => 'クルゼイロ',
1128
+ '㌛' => 'クローネ',
1129
+ '㌜' => 'ケース',
1130
+ '㌝' => 'コルナ',
1131
+ '㌞' => 'コーポ',
1132
+ '㌟' => 'サイクル',
1133
+ '㌠' => 'サンチーム',
1134
+ '㌡' => 'シリング',
1135
+ '㌢' => 'センチ',
1136
+ '㌣' => 'セント',
1137
+ '㌤' => 'ダース',
1138
+ '㌥' => 'デシ',
1139
+ '㌦' => 'ドル',
1140
+ '㌧' => 'トン',
1141
+ '㌨' => 'ナノ',
1142
+ '㌩' => 'ノット',
1143
+ '㌪' => 'ハイツ',
1144
+ '㌫' => 'パーセント',
1145
+ '㌬' => 'パーツ',
1146
+ '㌭' => 'バーレル',
1147
+ '㌮' => 'ピアストル',
1148
+ '㌯' => 'ピクル',
1149
+ '㌰' => 'ピコ',
1150
+ '㌱' => 'ビル',
1151
+ '㌲' => 'ファラッド',
1152
+ '㌳' => 'フィート',
1153
+ '㌴' => 'ブッシェル',
1154
+ '㌵' => 'フラン',
1155
+ '㌶' => 'ヘクタール',
1156
+ '㌷' => 'ペソ',
1157
+ '㌸' => 'ペニヒ',
1158
+ '㌹' => 'ヘルツ',
1159
+ '㌺' => 'ペンス',
1160
+ '㌻' => 'ページ',
1161
+ '㌼' => 'ベータ',
1162
+ '㌽' => 'ポイント',
1163
+ '㌾' => 'ボルト',
1164
+ '㌿' => 'ホン',
1165
+ '㍀' => 'ポンド',
1166
+ '㍁' => 'ホール',
1167
+ '㍂' => 'ホーン',
1168
+ '㍃' => 'マイクロ',
1169
+ '㍄' => 'マイル',
1170
+ '㍅' => 'マッハ',
1171
+ '㍆' => 'マルク',
1172
+ '㍇' => 'マンション',
1173
+ '㍈' => 'ミクロン',
1174
+ '㍉' => 'ミリ',
1175
+ '㍊' => 'ミリバール',
1176
+ '㍋' => 'メガ',
1177
+ '㍌' => 'メガトン',
1178
+ '㍍' => 'メートル',
1179
+ '㍎' => 'ヤード',
1180
+ '㍏' => 'ヤール',
1181
+ '㍐' => 'ユアン',
1182
+ '㍑' => 'リットル',
1183
+ '㍒' => 'リラ',
1184
+ '㍓' => 'ルピー',
1185
+ '㍔' => 'ルーブル',
1186
+ '㍕' => 'レム',
1187
+ '㍖' => 'レントゲン',
1188
+ '㍗' => 'ワット',
1189
+ '㍘' => '0点',
1190
+ '㍙' => '1点',
1191
+ '㍚' => '2点',
1192
+ '㍛' => '3点',
1193
+ '㍜' => '4点',
1194
+ '㍝' => '5点',
1195
+ '㍞' => '6点',
1196
+ '㍟' => '7点',
1197
+ '㍠' => '8点',
1198
+ '㍡' => '9点',
1199
+ '㍢' => '10点',
1200
+ '㍣' => '11点',
1201
+ '㍤' => '12点',
1202
+ '㍥' => '13点',
1203
+ '㍦' => '14点',
1204
+ '㍧' => '15点',
1205
+ '㍨' => '16点',
1206
+ '㍩' => '17点',
1207
+ '㍪' => '18点',
1208
+ '㍫' => '19点',
1209
+ '㍬' => '20点',
1210
+ '㍭' => '21点',
1211
+ '㍮' => '22点',
1212
+ '㍯' => '23点',
1213
+ '㍰' => '24点',
1214
+ '㍱' => 'hPa',
1215
+ '㍲' => 'da',
1216
+ '㍳' => 'AU',
1217
+ '㍴' => 'bar',
1218
+ '㍵' => 'oV',
1219
+ '㍶' => 'pc',
1220
+ '㍷' => 'dm',
1221
+ '㍸' => 'dm2',
1222
+ '㍹' => 'dm3',
1223
+ '㍺' => 'IU',
1224
+ '㍻' => '平成',
1225
+ '㍼' => '昭和',
1226
+ '㍽' => '大正',
1227
+ '㍾' => '明治',
1228
+ '㍿' => '株式会社',
1229
+ '㎀' => 'pA',
1230
+ '㎁' => 'nA',
1231
+ '㎂' => 'μA',
1232
+ '㎃' => 'mA',
1233
+ '㎄' => 'kA',
1234
+ '㎅' => 'KB',
1235
+ '㎆' => 'MB',
1236
+ '㎇' => 'GB',
1237
+ '㎈' => 'cal',
1238
+ '㎉' => 'kcal',
1239
+ '㎊' => 'pF',
1240
+ '㎋' => 'nF',
1241
+ '㎌' => 'μF',
1242
+ '㎍' => 'μg',
1243
+ '㎎' => 'mg',
1244
+ '㎏' => 'kg',
1245
+ '㎐' => 'Hz',
1246
+ '㎑' => 'kHz',
1247
+ '㎒' => 'MHz',
1248
+ '㎓' => 'GHz',
1249
+ '㎔' => 'THz',
1250
+ '㎕' => 'μl',
1251
+ '㎖' => 'ml',
1252
+ '㎗' => 'dl',
1253
+ '㎘' => 'kl',
1254
+ '㎙' => 'fm',
1255
+ '㎚' => 'nm',
1256
+ '㎛' => 'μm',
1257
+ '㎜' => 'mm',
1258
+ '㎝' => 'cm',
1259
+ '㎞' => 'km',
1260
+ '㎟' => 'mm2',
1261
+ '㎠' => 'cm2',
1262
+ '㎡' => 'm2',
1263
+ '㎢' => 'km2',
1264
+ '㎣' => 'mm3',
1265
+ '㎤' => 'cm3',
1266
+ '㎥' => 'm3',
1267
+ '㎦' => 'km3',
1268
+ '㎧' => 'm∕s',
1269
+ '㎨' => 'm∕s2',
1270
+ '㎩' => 'Pa',
1271
+ '㎪' => 'kPa',
1272
+ '㎫' => 'MPa',
1273
+ '㎬' => 'GPa',
1274
+ '㎭' => 'rad',
1275
+ '㎮' => 'rad∕s',
1276
+ '㎯' => 'rad∕s2',
1277
+ '㎰' => 'ps',
1278
+ '㎱' => 'ns',
1279
+ '㎲' => 'μs',
1280
+ '㎳' => 'ms',
1281
+ '㎴' => 'pV',
1282
+ '㎵' => 'nV',
1283
+ '㎶' => 'μV',
1284
+ '㎷' => 'mV',
1285
+ '㎸' => 'kV',
1286
+ '㎹' => 'MV',
1287
+ '㎺' => 'pW',
1288
+ '㎻' => 'nW',
1289
+ '㎼' => 'μW',
1290
+ '㎽' => 'mW',
1291
+ '㎾' => 'kW',
1292
+ '㎿' => 'MW',
1293
+ '㏀' => 'kΩ',
1294
+ '㏁' => 'MΩ',
1295
+ '㏂' => 'a.m.',
1296
+ '㏃' => 'Bq',
1297
+ '㏄' => 'cc',
1298
+ '㏅' => 'cd',
1299
+ '㏆' => 'C∕kg',
1300
+ '㏇' => 'Co.',
1301
+ '㏈' => 'dB',
1302
+ '㏉' => 'Gy',
1303
+ '㏊' => 'ha',
1304
+ '㏋' => 'HP',
1305
+ '㏌' => 'in',
1306
+ '㏍' => 'KK',
1307
+ '㏎' => 'KM',
1308
+ '㏏' => 'kt',
1309
+ '㏐' => 'lm',
1310
+ '㏑' => 'ln',
1311
+ '㏒' => 'log',
1312
+ '㏓' => 'lx',
1313
+ '㏔' => 'mb',
1314
+ '㏕' => 'mil',
1315
+ '㏖' => 'mol',
1316
+ '㏗' => 'PH',
1317
+ '㏘' => 'p.m.',
1318
+ '㏙' => 'PPM',
1319
+ '㏚' => 'PR',
1320
+ '㏛' => 'sr',
1321
+ '㏜' => 'Sv',
1322
+ '㏝' => 'Wb',
1323
+ '㏞' => 'V∕m',
1324
+ '㏟' => 'A∕m',
1325
+ '㏠' => '1日',
1326
+ '㏡' => '2日',
1327
+ '㏢' => '3日',
1328
+ '㏣' => '4日',
1329
+ '㏤' => '5日',
1330
+ '㏥' => '6日',
1331
+ '㏦' => '7日',
1332
+ '㏧' => '8日',
1333
+ '㏨' => '9日',
1334
+ '㏩' => '10日',
1335
+ '㏪' => '11日',
1336
+ '㏫' => '12日',
1337
+ '㏬' => '13日',
1338
+ '㏭' => '14日',
1339
+ '㏮' => '15日',
1340
+ '㏯' => '16日',
1341
+ '㏰' => '17日',
1342
+ '㏱' => '18日',
1343
+ '㏲' => '19日',
1344
+ '㏳' => '20日',
1345
+ '㏴' => '21日',
1346
+ '㏵' => '22日',
1347
+ '㏶' => '23日',
1348
+ '㏷' => '24日',
1349
+ '㏸' => '25日',
1350
+ '㏹' => '26日',
1351
+ '㏺' => '27日',
1352
+ '㏻' => '28日',
1353
+ '㏼' => '29日',
1354
+ '㏽' => '30日',
1355
+ '㏾' => '31日',
1356
+ '㏿' => 'gal',
1357
+ 'ꚜ' => 'ъ',
1358
+ 'ꚝ' => 'ь',
1359
+ 'ꝰ' => 'ꝯ',
1360
+ 'ꟸ' => 'Ħ',
1361
+ 'ꟹ' => 'œ',
1362
+ 'ꭜ' => 'ꜧ',
1363
+ 'ꭝ' => 'ꬷ',
1364
+ 'ꭞ' => 'ɫ',
1365
+ 'ꭟ' => 'ꭒ',
1366
+ 'ꭩ' => 'ʍ',
1367
+ 'ff' => 'ff',
1368
+ 'fi' => 'fi',
1369
+ 'fl' => 'fl',
1370
+ 'ffi' => 'ffi',
1371
+ 'ffl' => 'ffl',
1372
+ 'ſt' => 'st',
1373
+ 'st' => 'st',
1374
+ 'ﬓ' => 'մն',
1375
+ 'ﬔ' => 'մե',
1376
+ 'ﬕ' => 'մի',
1377
+ 'ﬖ' => 'վն',
1378
+ 'ﬗ' => 'մխ',
1379
+ 'ﬠ' => 'ע',
1380
+ 'ﬡ' => 'א',
1381
+ 'ﬢ' => 'ד',
1382
+ 'ﬣ' => 'ה',
1383
+ 'ﬤ' => 'כ',
1384
+ 'ﬥ' => 'ל',
1385
+ 'ﬦ' => 'ם',
1386
+ 'ﬧ' => 'ר',
1387
+ 'ﬨ' => 'ת',
1388
+ '﬩' => '+',
1389
+ 'ﭏ' => 'אל',
1390
+ 'ﭐ' => 'ٱ',
1391
+ 'ﭑ' => 'ٱ',
1392
+ 'ﭒ' => 'ٻ',
1393
+ 'ﭓ' => 'ٻ',
1394
+ 'ﭔ' => 'ٻ',
1395
+ 'ﭕ' => 'ٻ',
1396
+ 'ﭖ' => 'پ',
1397
+ 'ﭗ' => 'پ',
1398
+ 'ﭘ' => 'پ',
1399
+ 'ﭙ' => 'پ',
1400
+ 'ﭚ' => 'ڀ',
1401
+ 'ﭛ' => 'ڀ',
1402
+ 'ﭜ' => 'ڀ',
1403
+ 'ﭝ' => 'ڀ',
1404
+ 'ﭞ' => 'ٺ',
1405
+ 'ﭟ' => 'ٺ',
1406
+ 'ﭠ' => 'ٺ',
1407
+ 'ﭡ' => 'ٺ',
1408
+ 'ﭢ' => 'ٿ',
1409
+ 'ﭣ' => 'ٿ',
1410
+ 'ﭤ' => 'ٿ',
1411
+ 'ﭥ' => 'ٿ',
1412
+ 'ﭦ' => 'ٹ',
1413
+ 'ﭧ' => 'ٹ',
1414
+ 'ﭨ' => 'ٹ',
1415
+ 'ﭩ' => 'ٹ',
1416
+ 'ﭪ' => 'ڤ',
1417
+ 'ﭫ' => 'ڤ',
1418
+ 'ﭬ' => 'ڤ',
1419
+ 'ﭭ' => 'ڤ',
1420
+ 'ﭮ' => 'ڦ',
1421
+ 'ﭯ' => 'ڦ',
1422
+ 'ﭰ' => 'ڦ',
1423
+ 'ﭱ' => 'ڦ',
1424
+ 'ﭲ' => 'ڄ',
1425
+ 'ﭳ' => 'ڄ',
1426
+ 'ﭴ' => 'ڄ',
1427
+ 'ﭵ' => 'ڄ',
1428
+ 'ﭶ' => 'ڃ',
1429
+ 'ﭷ' => 'ڃ',
1430
+ 'ﭸ' => 'ڃ',
1431
+ 'ﭹ' => 'ڃ',
1432
+ 'ﭺ' => 'چ',
1433
+ 'ﭻ' => 'چ',
1434
+ 'ﭼ' => 'چ',
1435
+ 'ﭽ' => 'چ',
1436
+ 'ﭾ' => 'ڇ',
1437
+ 'ﭿ' => 'ڇ',
1438
+ 'ﮀ' => 'ڇ',
1439
+ 'ﮁ' => 'ڇ',
1440
+ 'ﮂ' => 'ڍ',
1441
+ 'ﮃ' => 'ڍ',
1442
+ 'ﮄ' => 'ڌ',
1443
+ 'ﮅ' => 'ڌ',
1444
+ 'ﮆ' => 'ڎ',
1445
+ 'ﮇ' => 'ڎ',
1446
+ 'ﮈ' => 'ڈ',
1447
+ 'ﮉ' => 'ڈ',
1448
+ 'ﮊ' => 'ژ',
1449
+ 'ﮋ' => 'ژ',
1450
+ 'ﮌ' => 'ڑ',
1451
+ 'ﮍ' => 'ڑ',
1452
+ 'ﮎ' => 'ک',
1453
+ 'ﮏ' => 'ک',
1454
+ 'ﮐ' => 'ک',
1455
+ 'ﮑ' => 'ک',
1456
+ 'ﮒ' => 'گ',
1457
+ 'ﮓ' => 'گ',
1458
+ 'ﮔ' => 'گ',
1459
+ 'ﮕ' => 'گ',
1460
+ 'ﮖ' => 'ڳ',
1461
+ 'ﮗ' => 'ڳ',
1462
+ 'ﮘ' => 'ڳ',
1463
+ 'ﮙ' => 'ڳ',
1464
+ 'ﮚ' => 'ڱ',
1465
+ 'ﮛ' => 'ڱ',
1466
+ 'ﮜ' => 'ڱ',
1467
+ 'ﮝ' => 'ڱ',
1468
+ 'ﮞ' => 'ں',
1469
+ 'ﮟ' => 'ں',
1470
+ 'ﮠ' => 'ڻ',
1471
+ 'ﮡ' => 'ڻ',
1472
+ 'ﮢ' => 'ڻ',
1473
+ 'ﮣ' => 'ڻ',
1474
+ 'ﮤ' => 'ۀ',
1475
+ 'ﮥ' => 'ۀ',
1476
+ 'ﮦ' => 'ہ',
1477
+ 'ﮧ' => 'ہ',
1478
+ 'ﮨ' => 'ہ',
1479
+ 'ﮩ' => 'ہ',
1480
+ 'ﮪ' => 'ھ',
1481
+ 'ﮫ' => 'ھ',
1482
+ 'ﮬ' => 'ھ',
1483
+ 'ﮭ' => 'ھ',
1484
+ 'ﮮ' => 'ے',
1485
+ 'ﮯ' => 'ے',
1486
+ 'ﮰ' => 'ۓ',
1487
+ 'ﮱ' => 'ۓ',
1488
+ 'ﯓ' => 'ڭ',
1489
+ 'ﯔ' => 'ڭ',
1490
+ 'ﯕ' => 'ڭ',
1491
+ 'ﯖ' => 'ڭ',
1492
+ 'ﯗ' => 'ۇ',
1493
+ 'ﯘ' => 'ۇ',
1494
+ 'ﯙ' => 'ۆ',
1495
+ 'ﯚ' => 'ۆ',
1496
+ 'ﯛ' => 'ۈ',
1497
+ 'ﯜ' => 'ۈ',
1498
+ 'ﯝ' => 'ۇٴ',
1499
+ 'ﯞ' => 'ۋ',
1500
+ 'ﯟ' => 'ۋ',
1501
+ 'ﯠ' => 'ۅ',
1502
+ 'ﯡ' => 'ۅ',
1503
+ 'ﯢ' => 'ۉ',
1504
+ 'ﯣ' => 'ۉ',
1505
+ 'ﯤ' => 'ې',
1506
+ 'ﯥ' => 'ې',
1507
+ 'ﯦ' => 'ې',
1508
+ 'ﯧ' => 'ې',
1509
+ 'ﯨ' => 'ى',
1510
+ 'ﯩ' => 'ى',
1511
+ 'ﯪ' => 'ئا',
1512
+ 'ﯫ' => 'ئا',
1513
+ 'ﯬ' => 'ئە',
1514
+ 'ﯭ' => 'ئە',
1515
+ 'ﯮ' => 'ئو',
1516
+ 'ﯯ' => 'ئو',
1517
+ 'ﯰ' => 'ئۇ',
1518
+ 'ﯱ' => 'ئۇ',
1519
+ 'ﯲ' => 'ئۆ',
1520
+ 'ﯳ' => 'ئۆ',
1521
+ 'ﯴ' => 'ئۈ',
1522
+ 'ﯵ' => 'ئۈ',
1523
+ 'ﯶ' => 'ئې',
1524
+ 'ﯷ' => 'ئې',
1525
+ 'ﯸ' => 'ئې',
1526
+ 'ﯹ' => 'ئى',
1527
+ 'ﯺ' => 'ئى',
1528
+ 'ﯻ' => 'ئى',
1529
+ 'ﯼ' => 'ی',
1530
+ 'ﯽ' => 'ی',
1531
+ 'ﯾ' => 'ی',
1532
+ 'ﯿ' => 'ی',
1533
+ 'ﰀ' => 'ئج',
1534
+ 'ﰁ' => 'ئح',
1535
+ 'ﰂ' => 'ئم',
1536
+ 'ﰃ' => 'ئى',
1537
+ 'ﰄ' => 'ئي',
1538
+ 'ﰅ' => 'بج',
1539
+ 'ﰆ' => 'بح',
1540
+ 'ﰇ' => 'بخ',
1541
+ 'ﰈ' => 'بم',
1542
+ 'ﰉ' => 'بى',
1543
+ 'ﰊ' => 'بي',
1544
+ 'ﰋ' => 'تج',
1545
+ 'ﰌ' => 'تح',
1546
+ 'ﰍ' => 'تخ',
1547
+ 'ﰎ' => 'تم',
1548
+ 'ﰏ' => 'تى',
1549
+ 'ﰐ' => 'تي',
1550
+ 'ﰑ' => 'ثج',
1551
+ 'ﰒ' => 'ثم',
1552
+ 'ﰓ' => 'ثى',
1553
+ 'ﰔ' => 'ثي',
1554
+ 'ﰕ' => 'جح',
1555
+ 'ﰖ' => 'جم',
1556
+ 'ﰗ' => 'حج',
1557
+ 'ﰘ' => 'حم',
1558
+ 'ﰙ' => 'خج',
1559
+ 'ﰚ' => 'خح',
1560
+ 'ﰛ' => 'خم',
1561
+ 'ﰜ' => 'سج',
1562
+ 'ﰝ' => 'سح',
1563
+ 'ﰞ' => 'سخ',
1564
+ 'ﰟ' => 'سم',
1565
+ 'ﰠ' => 'صح',
1566
+ 'ﰡ' => 'صم',
1567
+ 'ﰢ' => 'ضج',
1568
+ 'ﰣ' => 'ضح',
1569
+ 'ﰤ' => 'ضخ',
1570
+ 'ﰥ' => 'ضم',
1571
+ 'ﰦ' => 'طح',
1572
+ 'ﰧ' => 'طم',
1573
+ 'ﰨ' => 'ظم',
1574
+ 'ﰩ' => 'عج',
1575
+ 'ﰪ' => 'عم',
1576
+ 'ﰫ' => 'غج',
1577
+ 'ﰬ' => 'غم',
1578
+ 'ﰭ' => 'فج',
1579
+ 'ﰮ' => 'فح',
1580
+ 'ﰯ' => 'فخ',
1581
+ 'ﰰ' => 'فم',
1582
+ 'ﰱ' => 'فى',
1583
+ 'ﰲ' => 'في',
1584
+ 'ﰳ' => 'قح',
1585
+ 'ﰴ' => 'قم',
1586
+ 'ﰵ' => 'قى',
1587
+ 'ﰶ' => 'قي',
1588
+ 'ﰷ' => 'كا',
1589
+ 'ﰸ' => 'كج',
1590
+ 'ﰹ' => 'كح',
1591
+ 'ﰺ' => 'كخ',
1592
+ 'ﰻ' => 'كل',
1593
+ 'ﰼ' => 'كم',
1594
+ 'ﰽ' => 'كى',
1595
+ 'ﰾ' => 'كي',
1596
+ 'ﰿ' => 'لج',
1597
+ 'ﱀ' => 'لح',
1598
+ 'ﱁ' => 'لخ',
1599
+ 'ﱂ' => 'لم',
1600
+ 'ﱃ' => 'لى',
1601
+ 'ﱄ' => 'لي',
1602
+ 'ﱅ' => 'مج',
1603
+ 'ﱆ' => 'مح',
1604
+ 'ﱇ' => 'مخ',
1605
+ 'ﱈ' => 'مم',
1606
+ 'ﱉ' => 'مى',
1607
+ 'ﱊ' => 'مي',
1608
+ 'ﱋ' => 'نج',
1609
+ 'ﱌ' => 'نح',
1610
+ 'ﱍ' => 'نخ',
1611
+ 'ﱎ' => 'نم',
1612
+ 'ﱏ' => 'نى',
1613
+ 'ﱐ' => 'ني',
1614
+ 'ﱑ' => 'هج',
1615
+ 'ﱒ' => 'هم',
1616
+ 'ﱓ' => 'هى',
1617
+ 'ﱔ' => 'هي',
1618
+ 'ﱕ' => 'يج',
1619
+ 'ﱖ' => 'يح',
1620
+ 'ﱗ' => 'يخ',
1621
+ 'ﱘ' => 'يم',
1622
+ 'ﱙ' => 'يى',
1623
+ 'ﱚ' => 'يي',
1624
+ 'ﱛ' => 'ذٰ',
1625
+ 'ﱜ' => 'رٰ',
1626
+ 'ﱝ' => 'ىٰ',
1627
+ 'ﱞ' => ' ٌّ',
1628
+ 'ﱟ' => ' ٍّ',
1629
+ 'ﱠ' => ' َّ',
1630
+ 'ﱡ' => ' ُّ',
1631
+ 'ﱢ' => ' ِّ',
1632
+ 'ﱣ' => ' ّٰ',
1633
+ 'ﱤ' => 'ئر',
1634
+ 'ﱥ' => 'ئز',
1635
+ 'ﱦ' => 'ئم',
1636
+ 'ﱧ' => 'ئن',
1637
+ 'ﱨ' => 'ئى',
1638
+ 'ﱩ' => 'ئي',
1639
+ 'ﱪ' => 'بر',
1640
+ 'ﱫ' => 'بز',
1641
+ 'ﱬ' => 'بم',
1642
+ 'ﱭ' => 'بن',
1643
+ 'ﱮ' => 'بى',
1644
+ 'ﱯ' => 'بي',
1645
+ 'ﱰ' => 'تر',
1646
+ 'ﱱ' => 'تز',
1647
+ 'ﱲ' => 'تم',
1648
+ 'ﱳ' => 'تن',
1649
+ 'ﱴ' => 'تى',
1650
+ 'ﱵ' => 'تي',
1651
+ 'ﱶ' => 'ثر',
1652
+ 'ﱷ' => 'ثز',
1653
+ 'ﱸ' => 'ثم',
1654
+ 'ﱹ' => 'ثن',
1655
+ 'ﱺ' => 'ثى',
1656
+ 'ﱻ' => 'ثي',
1657
+ 'ﱼ' => 'فى',
1658
+ 'ﱽ' => 'في',
1659
+ 'ﱾ' => 'قى',
1660
+ 'ﱿ' => 'قي',
1661
+ 'ﲀ' => 'كا',
1662
+ 'ﲁ' => 'كل',
1663
+ 'ﲂ' => 'كم',
1664
+ 'ﲃ' => 'كى',
1665
+ 'ﲄ' => 'كي',
1666
+ 'ﲅ' => 'لم',
1667
+ 'ﲆ' => 'لى',
1668
+ 'ﲇ' => 'لي',
1669
+ 'ﲈ' => 'ما',
1670
+ 'ﲉ' => 'مم',
1671
+ 'ﲊ' => 'نر',
1672
+ 'ﲋ' => 'نز',
1673
+ 'ﲌ' => 'نم',
1674
+ 'ﲍ' => 'نن',
1675
+ 'ﲎ' => 'نى',
1676
+ 'ﲏ' => 'ني',
1677
+ 'ﲐ' => 'ىٰ',
1678
+ 'ﲑ' => 'ير',
1679
+ 'ﲒ' => 'يز',
1680
+ 'ﲓ' => 'يم',
1681
+ 'ﲔ' => 'ين',
1682
+ 'ﲕ' => 'يى',
1683
+ 'ﲖ' => 'يي',
1684
+ 'ﲗ' => 'ئج',
1685
+ 'ﲘ' => 'ئح',
1686
+ 'ﲙ' => 'ئخ',
1687
+ 'ﲚ' => 'ئم',
1688
+ 'ﲛ' => 'ئه',
1689
+ 'ﲜ' => 'بج',
1690
+ 'ﲝ' => 'بح',
1691
+ 'ﲞ' => 'بخ',
1692
+ 'ﲟ' => 'بم',
1693
+ 'ﲠ' => 'به',
1694
+ 'ﲡ' => 'تج',
1695
+ 'ﲢ' => 'تح',
1696
+ 'ﲣ' => 'تخ',
1697
+ 'ﲤ' => 'تم',
1698
+ 'ﲥ' => 'ته',
1699
+ 'ﲦ' => 'ثم',
1700
+ 'ﲧ' => 'جح',
1701
+ 'ﲨ' => 'جم',
1702
+ 'ﲩ' => 'حج',
1703
+ 'ﲪ' => 'حم',
1704
+ 'ﲫ' => 'خج',
1705
+ 'ﲬ' => 'خم',
1706
+ 'ﲭ' => 'سج',
1707
+ 'ﲮ' => 'سح',
1708
+ 'ﲯ' => 'سخ',
1709
+ 'ﲰ' => 'سم',
1710
+ 'ﲱ' => 'صح',
1711
+ 'ﲲ' => 'صخ',
1712
+ 'ﲳ' => 'صم',
1713
+ 'ﲴ' => 'ضج',
1714
+ 'ﲵ' => 'ضح',
1715
+ 'ﲶ' => 'ضخ',
1716
+ 'ﲷ' => 'ضم',
1717
+ 'ﲸ' => 'طح',
1718
+ 'ﲹ' => 'ظم',
1719
+ 'ﲺ' => 'عج',
1720
+ 'ﲻ' => 'عم',
1721
+ 'ﲼ' => 'غج',
1722
+ 'ﲽ' => 'غم',
1723
+ 'ﲾ' => 'فج',
1724
+ 'ﲿ' => 'فح',
1725
+ 'ﳀ' => 'فخ',
1726
+ 'ﳁ' => 'فم',
1727
+ 'ﳂ' => 'قح',
1728
+ 'ﳃ' => 'قم',
1729
+ 'ﳄ' => 'كج',
1730
+ 'ﳅ' => 'كح',
1731
+ 'ﳆ' => 'كخ',
1732
+ 'ﳇ' => 'كل',
1733
+ 'ﳈ' => 'كم',
1734
+ 'ﳉ' => 'لج',
1735
+ 'ﳊ' => 'لح',
1736
+ 'ﳋ' => 'لخ',
1737
+ 'ﳌ' => 'لم',
1738
+ 'ﳍ' => 'له',
1739
+ 'ﳎ' => 'مج',
1740
+ 'ﳏ' => 'مح',
1741
+ 'ﳐ' => 'مخ',
1742
+ 'ﳑ' => 'مم',
1743
+ 'ﳒ' => 'نج',
1744
+ 'ﳓ' => 'نح',
1745
+ 'ﳔ' => 'نخ',
1746
+ 'ﳕ' => 'نم',
1747
+ 'ﳖ' => 'نه',
1748
+ 'ﳗ' => 'هج',
1749
+ 'ﳘ' => 'هم',
1750
+ 'ﳙ' => 'هٰ',
1751
+ 'ﳚ' => 'يج',
1752
+ 'ﳛ' => 'يح',
1753
+ 'ﳜ' => 'يخ',
1754
+ 'ﳝ' => 'يم',
1755
+ 'ﳞ' => 'يه',
1756
+ 'ﳟ' => 'ئم',
1757
+ 'ﳠ' => 'ئه',
1758
+ 'ﳡ' => 'بم',
1759
+ 'ﳢ' => 'به',
1760
+ 'ﳣ' => 'تم',
1761
+ 'ﳤ' => 'ته',
1762
+ 'ﳥ' => 'ثم',
1763
+ 'ﳦ' => 'ثه',
1764
+ 'ﳧ' => 'سم',
1765
+ 'ﳨ' => 'سه',
1766
+ 'ﳩ' => 'شم',
1767
+ 'ﳪ' => 'شه',
1768
+ 'ﳫ' => 'كل',
1769
+ 'ﳬ' => 'كم',
1770
+ 'ﳭ' => 'لم',
1771
+ 'ﳮ' => 'نم',
1772
+ 'ﳯ' => 'نه',
1773
+ 'ﳰ' => 'يم',
1774
+ 'ﳱ' => 'يه',
1775
+ 'ﳲ' => 'ـَّ',
1776
+ 'ﳳ' => 'ـُّ',
1777
+ 'ﳴ' => 'ـِّ',
1778
+ 'ﳵ' => 'طى',
1779
+ 'ﳶ' => 'طي',
1780
+ 'ﳷ' => 'عى',
1781
+ 'ﳸ' => 'عي',
1782
+ 'ﳹ' => 'غى',
1783
+ 'ﳺ' => 'غي',
1784
+ 'ﳻ' => 'سى',
1785
+ 'ﳼ' => 'سي',
1786
+ 'ﳽ' => 'شى',
1787
+ 'ﳾ' => 'شي',
1788
+ 'ﳿ' => 'حى',
1789
+ 'ﴀ' => 'حي',
1790
+ 'ﴁ' => 'جى',
1791
+ 'ﴂ' => 'جي',
1792
+ 'ﴃ' => 'خى',
1793
+ 'ﴄ' => 'خي',
1794
+ 'ﴅ' => 'صى',
1795
+ 'ﴆ' => 'صي',
1796
+ 'ﴇ' => 'ضى',
1797
+ 'ﴈ' => 'ضي',
1798
+ 'ﴉ' => 'شج',
1799
+ 'ﴊ' => 'شح',
1800
+ 'ﴋ' => 'شخ',
1801
+ 'ﴌ' => 'شم',
1802
+ 'ﴍ' => 'شر',
1803
+ 'ﴎ' => 'سر',
1804
+ 'ﴏ' => 'صر',
1805
+ 'ﴐ' => 'ضر',
1806
+ 'ﴑ' => 'طى',
1807
+ 'ﴒ' => 'طي',
1808
+ 'ﴓ' => 'عى',
1809
+ 'ﴔ' => 'عي',
1810
+ 'ﴕ' => 'غى',
1811
+ 'ﴖ' => 'غي',
1812
+ 'ﴗ' => 'سى',
1813
+ 'ﴘ' => 'سي',
1814
+ 'ﴙ' => 'شى',
1815
+ 'ﴚ' => 'شي',
1816
+ 'ﴛ' => 'حى',
1817
+ 'ﴜ' => 'حي',
1818
+ 'ﴝ' => 'جى',
1819
+ 'ﴞ' => 'جي',
1820
+ 'ﴟ' => 'خى',
1821
+ 'ﴠ' => 'خي',
1822
+ 'ﴡ' => 'صى',
1823
+ 'ﴢ' => 'صي',
1824
+ 'ﴣ' => 'ضى',
1825
+ 'ﴤ' => 'ضي',
1826
+ 'ﴥ' => 'شج',
1827
+ 'ﴦ' => 'شح',
1828
+ 'ﴧ' => 'شخ',
1829
+ 'ﴨ' => 'شم',
1830
+ 'ﴩ' => 'شر',
1831
+ 'ﴪ' => 'سر',
1832
+ 'ﴫ' => 'صر',
1833
+ 'ﴬ' => 'ضر',
1834
+ 'ﴭ' => 'شج',
1835
+ 'ﴮ' => 'شح',
1836
+ 'ﴯ' => 'شخ',
1837
+ 'ﴰ' => 'شم',
1838
+ 'ﴱ' => 'سه',
1839
+ 'ﴲ' => 'شه',
1840
+ 'ﴳ' => 'طم',
1841
+ 'ﴴ' => 'سج',
1842
+ 'ﴵ' => 'سح',
1843
+ 'ﴶ' => 'سخ',
1844
+ 'ﴷ' => 'شج',
1845
+ 'ﴸ' => 'شح',
1846
+ 'ﴹ' => 'شخ',
1847
+ 'ﴺ' => 'طم',
1848
+ 'ﴻ' => 'ظم',
1849
+ 'ﴼ' => 'اً',
1850
+ 'ﴽ' => 'اً',
1851
+ 'ﵐ' => 'تجم',
1852
+ 'ﵑ' => 'تحج',
1853
+ 'ﵒ' => 'تحج',
1854
+ 'ﵓ' => 'تحم',
1855
+ 'ﵔ' => 'تخم',
1856
+ 'ﵕ' => 'تمج',
1857
+ 'ﵖ' => 'تمح',
1858
+ 'ﵗ' => 'تمخ',
1859
+ 'ﵘ' => 'جمح',
1860
+ 'ﵙ' => 'جمح',
1861
+ 'ﵚ' => 'حمي',
1862
+ 'ﵛ' => 'حمى',
1863
+ 'ﵜ' => 'سحج',
1864
+ 'ﵝ' => 'سجح',
1865
+ 'ﵞ' => 'سجى',
1866
+ 'ﵟ' => 'سمح',
1867
+ 'ﵠ' => 'سمح',
1868
+ 'ﵡ' => 'سمج',
1869
+ 'ﵢ' => 'سمم',
1870
+ 'ﵣ' => 'سمم',
1871
+ 'ﵤ' => 'صحح',
1872
+ 'ﵥ' => 'صحح',
1873
+ 'ﵦ' => 'صمم',
1874
+ 'ﵧ' => 'شحم',
1875
+ 'ﵨ' => 'شحم',
1876
+ 'ﵩ' => 'شجي',
1877
+ 'ﵪ' => 'شمخ',
1878
+ 'ﵫ' => 'شمخ',
1879
+ 'ﵬ' => 'شمم',
1880
+ 'ﵭ' => 'شمم',
1881
+ 'ﵮ' => 'ضحى',
1882
+ 'ﵯ' => 'ضخم',
1883
+ 'ﵰ' => 'ضخم',
1884
+ 'ﵱ' => 'طمح',
1885
+ 'ﵲ' => 'طمح',
1886
+ 'ﵳ' => 'طمم',
1887
+ 'ﵴ' => 'طمي',
1888
+ 'ﵵ' => 'عجم',
1889
+ 'ﵶ' => 'عمم',
1890
+ 'ﵷ' => 'عمم',
1891
+ 'ﵸ' => 'عمى',
1892
+ 'ﵹ' => 'غمم',
1893
+ 'ﵺ' => 'غمي',
1894
+ 'ﵻ' => 'غمى',
1895
+ 'ﵼ' => 'فخم',
1896
+ 'ﵽ' => 'فخم',
1897
+ 'ﵾ' => 'قمح',
1898
+ 'ﵿ' => 'قمم',
1899
+ 'ﶀ' => 'لحم',
1900
+ 'ﶁ' => 'لحي',
1901
+ 'ﶂ' => 'لحى',
1902
+ 'ﶃ' => 'لجج',
1903
+ 'ﶄ' => 'لجج',
1904
+ 'ﶅ' => 'لخم',
1905
+ 'ﶆ' => 'لخم',
1906
+ 'ﶇ' => 'لمح',
1907
+ 'ﶈ' => 'لمح',
1908
+ 'ﶉ' => 'محج',
1909
+ 'ﶊ' => 'محم',
1910
+ 'ﶋ' => 'محي',
1911
+ 'ﶌ' => 'مجح',
1912
+ 'ﶍ' => 'مجم',
1913
+ 'ﶎ' => 'مخج',
1914
+ 'ﶏ' => 'مخم',
1915
+ 'ﶒ' => 'مجخ',
1916
+ 'ﶓ' => 'همج',
1917
+ 'ﶔ' => 'همم',
1918
+ 'ﶕ' => 'نحم',
1919
+ 'ﶖ' => 'نحى',
1920
+ 'ﶗ' => 'نجم',
1921
+ 'ﶘ' => 'نجم',
1922
+ 'ﶙ' => 'نجى',
1923
+ 'ﶚ' => 'نمي',
1924
+ 'ﶛ' => 'نمى',
1925
+ 'ﶜ' => 'يمم',
1926
+ 'ﶝ' => 'يمم',
1927
+ 'ﶞ' => 'بخي',
1928
+ 'ﶟ' => 'تجي',
1929
+ 'ﶠ' => 'تجى',
1930
+ 'ﶡ' => 'تخي',
1931
+ 'ﶢ' => 'تخى',
1932
+ 'ﶣ' => 'تمي',
1933
+ 'ﶤ' => 'تمى',
1934
+ 'ﶥ' => 'جمي',
1935
+ 'ﶦ' => 'جحى',
1936
+ 'ﶧ' => 'جمى',
1937
+ 'ﶨ' => 'سخى',
1938
+ 'ﶩ' => 'صحي',
1939
+ 'ﶪ' => 'شحي',
1940
+ 'ﶫ' => 'ضحي',
1941
+ 'ﶬ' => 'لجي',
1942
+ 'ﶭ' => 'لمي',
1943
+ 'ﶮ' => 'يحي',
1944
+ 'ﶯ' => 'يجي',
1945
+ 'ﶰ' => 'يمي',
1946
+ 'ﶱ' => 'ممي',
1947
+ 'ﶲ' => 'قمي',
1948
+ 'ﶳ' => 'نحي',
1949
+ 'ﶴ' => 'قمح',
1950
+ 'ﶵ' => 'لحم',
1951
+ 'ﶶ' => 'عمي',
1952
+ 'ﶷ' => 'كمي',
1953
+ 'ﶸ' => 'نجح',
1954
+ 'ﶹ' => 'مخي',
1955
+ 'ﶺ' => 'لجم',
1956
+ 'ﶻ' => 'كمم',
1957
+ 'ﶼ' => 'لجم',
1958
+ 'ﶽ' => 'نجح',
1959
+ 'ﶾ' => 'جحي',
1960
+ 'ﶿ' => 'حجي',
1961
+ 'ﷀ' => 'مجي',
1962
+ 'ﷁ' => 'فمي',
1963
+ 'ﷂ' => 'بحي',
1964
+ 'ﷃ' => 'كمم',
1965
+ 'ﷄ' => 'عجم',
1966
+ 'ﷅ' => 'صمم',
1967
+ 'ﷆ' => 'سخي',
1968
+ 'ﷇ' => 'نجي',
1969
+ 'ﷰ' => 'صلے',
1970
+ 'ﷱ' => 'قلے',
1971
+ 'ﷲ' => 'الله',
1972
+ 'ﷳ' => 'اكبر',
1973
+ 'ﷴ' => 'محمد',
1974
+ 'ﷵ' => 'صلعم',
1975
+ 'ﷶ' => 'رسول',
1976
+ 'ﷷ' => 'عليه',
1977
+ 'ﷸ' => 'وسلم',
1978
+ 'ﷹ' => 'صلى',
1979
+ 'ﷺ' => 'صلى الله عليه وسلم',
1980
+ 'ﷻ' => 'جل جلاله',
1981
+ '﷼' => 'ریال',
1982
+ '︐' => ',',
1983
+ '︑' => '、',
1984
+ '︒' => '。',
1985
+ '︓' => ':',
1986
+ '︔' => ';',
1987
+ '︕' => '!',
1988
+ '︖' => '?',
1989
+ '︗' => '〖',
1990
+ '︘' => '〗',
1991
+ '︙' => '...',
1992
+ '︰' => '..',
1993
+ '︱' => '—',
1994
+ '︲' => '–',
1995
+ '︳' => '_',
1996
+ '︴' => '_',
1997
+ '︵' => '(',
1998
+ '︶' => ')',
1999
+ '︷' => '{',
2000
+ '︸' => '}',
2001
+ '︹' => '〔',
2002
+ '︺' => '〕',
2003
+ '︻' => '【',
2004
+ '︼' => '】',
2005
+ '︽' => '《',
2006
+ '︾' => '》',
2007
+ '︿' => '〈',
2008
+ '﹀' => '〉',
2009
+ '﹁' => '「',
2010
+ '﹂' => '」',
2011
+ '﹃' => '『',
2012
+ '﹄' => '』',
2013
+ '﹇' => '[',
2014
+ '﹈' => ']',
2015
+ '﹉' => ' ̅',
2016
+ '﹊' => ' ̅',
2017
+ '﹋' => ' ̅',
2018
+ '﹌' => ' ̅',
2019
+ '﹍' => '_',
2020
+ '﹎' => '_',
2021
+ '﹏' => '_',
2022
+ '﹐' => ',',
2023
+ '﹑' => '、',
2024
+ '﹒' => '.',
2025
+ '﹔' => ';',
2026
+ '﹕' => ':',
2027
+ '﹖' => '?',
2028
+ '﹗' => '!',
2029
+ '﹘' => '—',
2030
+ '﹙' => '(',
2031
+ '﹚' => ')',
2032
+ '﹛' => '{',
2033
+ '﹜' => '}',
2034
+ '﹝' => '〔',
2035
+ '﹞' => '〕',
2036
+ '﹟' => '#',
2037
+ '﹠' => '&',
2038
+ '﹡' => '*',
2039
+ '﹢' => '+',
2040
+ '﹣' => '-',
2041
+ '﹤' => '<',
2042
+ '﹥' => '>',
2043
+ '﹦' => '=',
2044
+ '﹨' => '\\',
2045
+ '﹩' => '$',
2046
+ '﹪' => '%',
2047
+ '﹫' => '@',
2048
+ 'ﹰ' => ' ً',
2049
+ 'ﹱ' => 'ـً',
2050
+ 'ﹲ' => ' ٌ',
2051
+ 'ﹴ' => ' ٍ',
2052
+ 'ﹶ' => ' َ',
2053
+ 'ﹷ' => 'ـَ',
2054
+ 'ﹸ' => ' ُ',
2055
+ 'ﹹ' => 'ـُ',
2056
+ 'ﹺ' => ' ِ',
2057
+ 'ﹻ' => 'ـِ',
2058
+ 'ﹼ' => ' ّ',
2059
+ 'ﹽ' => 'ـّ',
2060
+ 'ﹾ' => ' ْ',
2061
+ 'ﹿ' => 'ـْ',
2062
+ 'ﺀ' => 'ء',
2063
+ 'ﺁ' => 'آ',
2064
+ 'ﺂ' => 'آ',
2065
+ 'ﺃ' => 'أ',
2066
+ 'ﺄ' => 'أ',
2067
+ 'ﺅ' => 'ؤ',
2068
+ 'ﺆ' => 'ؤ',
2069
+ 'ﺇ' => 'إ',
2070
+ 'ﺈ' => 'إ',
2071
+ 'ﺉ' => 'ئ',
2072
+ 'ﺊ' => 'ئ',
2073
+ 'ﺋ' => 'ئ',
2074
+ 'ﺌ' => 'ئ',
2075
+ 'ﺍ' => 'ا',
2076
+ 'ﺎ' => 'ا',
2077
+ 'ﺏ' => 'ب',
2078
+ 'ﺐ' => 'ب',
2079
+ 'ﺑ' => 'ب',
2080
+ 'ﺒ' => 'ب',
2081
+ 'ﺓ' => 'ة',
2082
+ 'ﺔ' => 'ة',
2083
+ 'ﺕ' => 'ت',
2084
+ 'ﺖ' => 'ت',
2085
+ 'ﺗ' => 'ت',
2086
+ 'ﺘ' => 'ت',
2087
+ 'ﺙ' => 'ث',
2088
+ 'ﺚ' => 'ث',
2089
+ 'ﺛ' => 'ث',
2090
+ 'ﺜ' => 'ث',
2091
+ 'ﺝ' => 'ج',
2092
+ 'ﺞ' => 'ج',
2093
+ 'ﺟ' => 'ج',
2094
+ 'ﺠ' => 'ج',
2095
+ 'ﺡ' => 'ح',
2096
+ 'ﺢ' => 'ح',
2097
+ 'ﺣ' => 'ح',
2098
+ 'ﺤ' => 'ح',
2099
+ 'ﺥ' => 'خ',
2100
+ 'ﺦ' => 'خ',
2101
+ 'ﺧ' => 'خ',
2102
+ 'ﺨ' => 'خ',
2103
+ 'ﺩ' => 'د',
2104
+ 'ﺪ' => 'د',
2105
+ 'ﺫ' => 'ذ',
2106
+ 'ﺬ' => 'ذ',
2107
+ 'ﺭ' => 'ر',
2108
+ 'ﺮ' => 'ر',
2109
+ 'ﺯ' => 'ز',
2110
+ 'ﺰ' => 'ز',
2111
+ 'ﺱ' => 'س',
2112
+ 'ﺲ' => 'س',
2113
+ 'ﺳ' => 'س',
2114
+ 'ﺴ' => 'س',
2115
+ 'ﺵ' => 'ش',
2116
+ 'ﺶ' => 'ش',
2117
+ 'ﺷ' => 'ش',
2118
+ 'ﺸ' => 'ش',
2119
+ 'ﺹ' => 'ص',
2120
+ 'ﺺ' => 'ص',
2121
+ 'ﺻ' => 'ص',
2122
+ 'ﺼ' => 'ص',
2123
+ 'ﺽ' => 'ض',
2124
+ 'ﺾ' => 'ض',
2125
+ 'ﺿ' => 'ض',
2126
+ 'ﻀ' => 'ض',
2127
+ 'ﻁ' => 'ط',
2128
+ 'ﻂ' => 'ط',
2129
+ 'ﻃ' => 'ط',
2130
+ 'ﻄ' => 'ط',
2131
+ 'ﻅ' => 'ظ',
2132
+ 'ﻆ' => 'ظ',
2133
+ 'ﻇ' => 'ظ',
2134
+ 'ﻈ' => 'ظ',
2135
+ 'ﻉ' => 'ع',
2136
+ 'ﻊ' => 'ع',
2137
+ 'ﻋ' => 'ع',
2138
+ 'ﻌ' => 'ع',
2139
+ 'ﻍ' => 'غ',
2140
+ 'ﻎ' => 'غ',
2141
+ 'ﻏ' => 'غ',
2142
+ 'ﻐ' => 'غ',
2143
+ 'ﻑ' => 'ف',
2144
+ 'ﻒ' => 'ف',
2145
+ 'ﻓ' => 'ف',
2146
+ 'ﻔ' => 'ف',
2147
+ 'ﻕ' => 'ق',
2148
+ 'ﻖ' => 'ق',
2149
+ 'ﻗ' => 'ق',
2150
+ 'ﻘ' => 'ق',
2151
+ 'ﻙ' => 'ك',
2152
+ 'ﻚ' => 'ك',
2153
+ 'ﻛ' => 'ك',
2154
+ 'ﻜ' => 'ك',
2155
+ 'ﻝ' => 'ل',
2156
+ 'ﻞ' => 'ل',
2157
+ 'ﻟ' => 'ل',
2158
+ 'ﻠ' => 'ل',
2159
+ 'ﻡ' => 'م',
2160
+ 'ﻢ' => 'م',
2161
+ 'ﻣ' => 'م',
2162
+ 'ﻤ' => 'م',
2163
+ 'ﻥ' => 'ن',
2164
+ 'ﻦ' => 'ن',
2165
+ 'ﻧ' => 'ن',
2166
+ 'ﻨ' => 'ن',
2167
+ 'ﻩ' => 'ه',
2168
+ 'ﻪ' => 'ه',
2169
+ 'ﻫ' => 'ه',
2170
+ 'ﻬ' => 'ه',
2171
+ 'ﻭ' => 'و',
2172
+ 'ﻮ' => 'و',
2173
+ 'ﻯ' => 'ى',
2174
+ 'ﻰ' => 'ى',
2175
+ 'ﻱ' => 'ي',
2176
+ 'ﻲ' => 'ي',
2177
+ 'ﻳ' => 'ي',
2178
+ 'ﻴ' => 'ي',
2179
+ 'ﻵ' => 'لآ',
2180
+ 'ﻶ' => 'لآ',
2181
+ 'ﻷ' => 'لأ',
2182
+ 'ﻸ' => 'لأ',
2183
+ 'ﻹ' => 'لإ',
2184
+ 'ﻺ' => 'لإ',
2185
+ 'ﻻ' => 'لا',
2186
+ 'ﻼ' => 'لا',
2187
+ '!' => '!',
2188
+ '"' => '"',
2189
+ '#' => '#',
2190
+ '$' => '$',
2191
+ '%' => '%',
2192
+ '&' => '&',
2193
+ ''' => '\'',
2194
+ '(' => '(',
2195
+ ')' => ')',
2196
+ '*' => '*',
2197
+ '+' => '+',
2198
+ ',' => ',',
2199
+ '-' => '-',
2200
+ '.' => '.',
2201
+ '/' => '/',
2202
+ '0' => '0',
2203
+ '1' => '1',
2204
+ '2' => '2',
2205
+ '3' => '3',
2206
+ '4' => '4',
2207
+ '5' => '5',
2208
+ '6' => '6',
2209
+ '7' => '7',
2210
+ '8' => '8',
2211
+ '9' => '9',
2212
+ ':' => ':',
2213
+ ';' => ';',
2214
+ '<' => '<',
2215
+ '=' => '=',
2216
+ '>' => '>',
2217
+ '?' => '?',
2218
+ '@' => '@',
2219
+ 'A' => 'A',
2220
+ 'B' => 'B',
2221
+ 'C' => 'C',
2222
+ 'D' => 'D',
2223
+ 'E' => 'E',
2224
+ 'F' => 'F',
2225
+ 'G' => 'G',
2226
+ 'H' => 'H',
2227
+ 'I' => 'I',
2228
+ 'J' => 'J',
2229
+ 'K' => 'K',
2230
+ 'L' => 'L',
2231
+ 'M' => 'M',
2232
+ 'N' => 'N',
2233
+ 'O' => 'O',
2234
+ 'P' => 'P',
2235
+ 'Q' => 'Q',
2236
+ 'R' => 'R',
2237
+ 'S' => 'S',
2238
+ 'T' => 'T',
2239
+ 'U' => 'U',
2240
+ 'V' => 'V',
2241
+ 'W' => 'W',
2242
+ 'X' => 'X',
2243
+ 'Y' => 'Y',
2244
+ 'Z' => 'Z',
2245
+ '[' => '[',
2246
+ '\' => '\\',
2247
+ ']' => ']',
2248
+ '^' => '^',
2249
+ '_' => '_',
2250
+ '`' => '`',
2251
+ 'a' => 'a',
2252
+ 'b' => 'b',
2253
+ 'c' => 'c',
2254
+ 'd' => 'd',
2255
+ 'e' => 'e',
2256
+ 'f' => 'f',
2257
+ 'g' => 'g',
2258
+ 'h' => 'h',
2259
+ 'i' => 'i',
2260
+ 'j' => 'j',
2261
+ 'k' => 'k',
2262
+ 'l' => 'l',
2263
+ 'm' => 'm',
2264
+ 'n' => 'n',
2265
+ 'o' => 'o',
2266
+ 'p' => 'p',
2267
+ 'q' => 'q',
2268
+ 'r' => 'r',
2269
+ 's' => 's',
2270
+ 't' => 't',
2271
+ 'u' => 'u',
2272
+ 'v' => 'v',
2273
+ 'w' => 'w',
2274
+ 'x' => 'x',
2275
+ 'y' => 'y',
2276
+ 'z' => 'z',
2277
+ '{' => '{',
2278
+ '|' => '|',
2279
+ '}' => '}',
2280
+ '~' => '~',
2281
+ '⦅' => '⦅',
2282
+ '⦆' => '⦆',
2283
+ '。' => '。',
2284
+ '「' => '「',
2285
+ '」' => '」',
2286
+ '、' => '、',
2287
+ '・' => '・',
2288
+ 'ヲ' => 'ヲ',
2289
+ 'ァ' => 'ァ',
2290
+ 'ィ' => 'ィ',
2291
+ 'ゥ' => 'ゥ',
2292
+ 'ェ' => 'ェ',
2293
+ 'ォ' => 'ォ',
2294
+ 'ャ' => 'ャ',
2295
+ 'ュ' => 'ュ',
2296
+ 'ョ' => 'ョ',
2297
+ 'ッ' => 'ッ',
2298
+ 'ー' => 'ー',
2299
+ 'ア' => 'ア',
2300
+ 'イ' => 'イ',
2301
+ 'ウ' => 'ウ',
2302
+ 'エ' => 'エ',
2303
+ 'オ' => 'オ',
2304
+ 'カ' => 'カ',
2305
+ 'キ' => 'キ',
2306
+ 'ク' => 'ク',
2307
+ 'ケ' => 'ケ',
2308
+ 'コ' => 'コ',
2309
+ 'サ' => 'サ',
2310
+ 'シ' => 'シ',
2311
+ 'ス' => 'ス',
2312
+ 'セ' => 'セ',
2313
+ 'ソ' => 'ソ',
2314
+ 'タ' => 'タ',
2315
+ 'チ' => 'チ',
2316
+ 'ツ' => 'ツ',
2317
+ 'テ' => 'テ',
2318
+ 'ト' => 'ト',
2319
+ 'ナ' => 'ナ',
2320
+ 'ニ' => 'ニ',
2321
+ 'ヌ' => 'ヌ',
2322
+ 'ネ' => 'ネ',
2323
+ 'ノ' => 'ノ',
2324
+ 'ハ' => 'ハ',
2325
+ 'ヒ' => 'ヒ',
2326
+ 'フ' => 'フ',
2327
+ 'ヘ' => 'ヘ',
2328
+ 'ホ' => 'ホ',
2329
+ 'マ' => 'マ',
2330
+ 'ミ' => 'ミ',
2331
+ 'ム' => 'ム',
2332
+ 'メ' => 'メ',
2333
+ 'モ' => 'モ',
2334
+ 'ヤ' => 'ヤ',
2335
+ 'ユ' => 'ユ',
2336
+ 'ヨ' => 'ヨ',
2337
+ 'ラ' => 'ラ',
2338
+ 'リ' => 'リ',
2339
+ 'ル' => 'ル',
2340
+ 'レ' => 'レ',
2341
+ 'ロ' => 'ロ',
2342
+ 'ワ' => 'ワ',
2343
+ 'ン' => 'ン',
2344
+ '゙' => '゙',
2345
+ '゚' => '゚',
2346
+ 'ᅠ' => 'ᅠ',
2347
+ 'ᄀ' => 'ᄀ',
2348
+ 'ᄁ' => 'ᄁ',
2349
+ 'ᆪ' => 'ᆪ',
2350
+ 'ᄂ' => 'ᄂ',
2351
+ 'ᆬ' => 'ᆬ',
2352
+ 'ᆭ' => 'ᆭ',
2353
+ 'ᄃ' => 'ᄃ',
2354
+ 'ᄄ' => 'ᄄ',
2355
+ 'ᄅ' => 'ᄅ',
2356
+ 'ᆰ' => 'ᆰ',
2357
+ 'ᆱ' => 'ᆱ',
2358
+ 'ᆲ' => 'ᆲ',
2359
+ 'ᆳ' => 'ᆳ',
2360
+ 'ᆴ' => 'ᆴ',
2361
+ 'ᆵ' => 'ᆵ',
2362
+ 'ᄚ' => 'ᄚ',
2363
+ 'ᄆ' => 'ᄆ',
2364
+ 'ᄇ' => 'ᄇ',
2365
+ 'ᄈ' => 'ᄈ',
2366
+ 'ᄡ' => 'ᄡ',
2367
+ 'ᄉ' => 'ᄉ',
2368
+ 'ᄊ' => 'ᄊ',
2369
+ 'ᄋ' => 'ᄋ',
2370
+ 'ᄌ' => 'ᄌ',
2371
+ 'ᄍ' => 'ᄍ',
2372
+ 'ᄎ' => 'ᄎ',
2373
+ 'ᄏ' => 'ᄏ',
2374
+ 'ᄐ' => 'ᄐ',
2375
+ 'ᄑ' => 'ᄑ',
2376
+ 'ᄒ' => 'ᄒ',
2377
+ 'ᅡ' => 'ᅡ',
2378
+ 'ᅢ' => 'ᅢ',
2379
+ 'ᅣ' => 'ᅣ',
2380
+ 'ᅤ' => 'ᅤ',
2381
+ 'ᅥ' => 'ᅥ',
2382
+ 'ᅦ' => 'ᅦ',
2383
+ 'ᅧ' => 'ᅧ',
2384
+ 'ᅨ' => 'ᅨ',
2385
+ 'ᅩ' => 'ᅩ',
2386
+ 'ᅪ' => 'ᅪ',
2387
+ 'ᅫ' => 'ᅫ',
2388
+ 'ᅬ' => 'ᅬ',
2389
+ 'ᅭ' => 'ᅭ',
2390
+ 'ᅮ' => 'ᅮ',
2391
+ 'ᅯ' => 'ᅯ',
2392
+ 'ᅰ' => 'ᅰ',
2393
+ 'ᅱ' => 'ᅱ',
2394
+ 'ᅲ' => 'ᅲ',
2395
+ 'ᅳ' => 'ᅳ',
2396
+ 'ᅴ' => 'ᅴ',
2397
+ 'ᅵ' => 'ᅵ',
2398
+ '¢' => '¢',
2399
+ '£' => '£',
2400
+ '¬' => '¬',
2401
+ ' ̄' => ' ̄',
2402
+ '¦' => '¦',
2403
+ '¥' => '¥',
2404
+ '₩' => '₩',
2405
+ '│' => '│',
2406
+ '←' => '←',
2407
+ '↑' => '↑',
2408
+ '→' => '→',
2409
+ '↓' => '↓',
2410
+ '■' => '■',
2411
+ '○' => '○',
2412
+ '𝐀' => 'A',
2413
+ '𝐁' => 'B',
2414
+ '𝐂' => 'C',
2415
+ '𝐃' => 'D',
2416
+ '𝐄' => 'E',
2417
+ '𝐅' => 'F',
2418
+ '𝐆' => 'G',
2419
+ '𝐇' => 'H',
2420
+ '𝐈' => 'I',
2421
+ '𝐉' => 'J',
2422
+ '𝐊' => 'K',
2423
+ '𝐋' => 'L',
2424
+ '𝐌' => 'M',
2425
+ '𝐍' => 'N',
2426
+ '𝐎' => 'O',
2427
+ '𝐏' => 'P',
2428
+ '𝐐' => 'Q',
2429
+ '𝐑' => 'R',
2430
+ '𝐒' => 'S',
2431
+ '𝐓' => 'T',
2432
+ '𝐔' => 'U',
2433
+ '𝐕' => 'V',
2434
+ '𝐖' => 'W',
2435
+ '𝐗' => 'X',
2436
+ '𝐘' => 'Y',
2437
+ '𝐙' => 'Z',
2438
+ '𝐚' => 'a',
2439
+ '𝐛' => 'b',
2440
+ '𝐜' => 'c',
2441
+ '𝐝' => 'd',
2442
+ '𝐞' => 'e',
2443
+ '𝐟' => 'f',
2444
+ '𝐠' => 'g',
2445
+ '𝐡' => 'h',
2446
+ '𝐢' => 'i',
2447
+ '𝐣' => 'j',
2448
+ '𝐤' => 'k',
2449
+ '𝐥' => 'l',
2450
+ '𝐦' => 'm',
2451
+ '𝐧' => 'n',
2452
+ '𝐨' => 'o',
2453
+ '𝐩' => 'p',
2454
+ '𝐪' => 'q',
2455
+ '𝐫' => 'r',
2456
+ '𝐬' => 's',
2457
+ '𝐭' => 't',
2458
+ '𝐮' => 'u',
2459
+ '𝐯' => 'v',
2460
+ '𝐰' => 'w',
2461
+ '𝐱' => 'x',
2462
+ '𝐲' => 'y',
2463
+ '𝐳' => 'z',
2464
+ '𝐴' => 'A',
2465
+ '𝐵' => 'B',
2466
+ '𝐶' => 'C',
2467
+ '𝐷' => 'D',
2468
+ '𝐸' => 'E',
2469
+ '𝐹' => 'F',
2470
+ '𝐺' => 'G',
2471
+ '𝐻' => 'H',
2472
+ '𝐼' => 'I',
2473
+ '𝐽' => 'J',
2474
+ '𝐾' => 'K',
2475
+ '𝐿' => 'L',
2476
+ '𝑀' => 'M',
2477
+ '𝑁' => 'N',
2478
+ '𝑂' => 'O',
2479
+ '𝑃' => 'P',
2480
+ '𝑄' => 'Q',
2481
+ '𝑅' => 'R',
2482
+ '𝑆' => 'S',
2483
+ '𝑇' => 'T',
2484
+ '𝑈' => 'U',
2485
+ '𝑉' => 'V',
2486
+ '𝑊' => 'W',
2487
+ '𝑋' => 'X',
2488
+ '𝑌' => 'Y',
2489
+ '𝑍' => 'Z',
2490
+ '𝑎' => 'a',
2491
+ '𝑏' => 'b',
2492
+ '𝑐' => 'c',
2493
+ '𝑑' => 'd',
2494
+ '𝑒' => 'e',
2495
+ '𝑓' => 'f',
2496
+ '𝑔' => 'g',
2497
+ '𝑖' => 'i',
2498
+ '𝑗' => 'j',
2499
+ '𝑘' => 'k',
2500
+ '𝑙' => 'l',
2501
+ '𝑚' => 'm',
2502
+ '𝑛' => 'n',
2503
+ '𝑜' => 'o',
2504
+ '𝑝' => 'p',
2505
+ '𝑞' => 'q',
2506
+ '𝑟' => 'r',
2507
+ '𝑠' => 's',
2508
+ '𝑡' => 't',
2509
+ '𝑢' => 'u',
2510
+ '𝑣' => 'v',
2511
+ '𝑤' => 'w',
2512
+ '𝑥' => 'x',
2513
+ '𝑦' => 'y',
2514
+ '𝑧' => 'z',
2515
+ '𝑨' => 'A',
2516
+ '𝑩' => 'B',
2517
+ '𝑪' => 'C',
2518
+ '𝑫' => 'D',
2519
+ '𝑬' => 'E',
2520
+ '𝑭' => 'F',
2521
+ '𝑮' => 'G',
2522
+ '𝑯' => 'H',
2523
+ '𝑰' => 'I',
2524
+ '𝑱' => 'J',
2525
+ '𝑲' => 'K',
2526
+ '𝑳' => 'L',
2527
+ '𝑴' => 'M',
2528
+ '𝑵' => 'N',
2529
+ '𝑶' => 'O',
2530
+ '𝑷' => 'P',
2531
+ '𝑸' => 'Q',
2532
+ '𝑹' => 'R',
2533
+ '𝑺' => 'S',
2534
+ '𝑻' => 'T',
2535
+ '𝑼' => 'U',
2536
+ '𝑽' => 'V',
2537
+ '𝑾' => 'W',
2538
+ '𝑿' => 'X',
2539
+ '𝒀' => 'Y',
2540
+ '𝒁' => 'Z',
2541
+ '𝒂' => 'a',
2542
+ '𝒃' => 'b',
2543
+ '𝒄' => 'c',
2544
+ '𝒅' => 'd',
2545
+ '𝒆' => 'e',
2546
+ '𝒇' => 'f',
2547
+ '𝒈' => 'g',
2548
+ '𝒉' => 'h',
2549
+ '𝒊' => 'i',
2550
+ '𝒋' => 'j',
2551
+ '𝒌' => 'k',
2552
+ '𝒍' => 'l',
2553
+ '𝒎' => 'm',
2554
+ '𝒏' => 'n',
2555
+ '𝒐' => 'o',
2556
+ '𝒑' => 'p',
2557
+ '𝒒' => 'q',
2558
+ '𝒓' => 'r',
2559
+ '𝒔' => 's',
2560
+ '𝒕' => 't',
2561
+ '𝒖' => 'u',
2562
+ '𝒗' => 'v',
2563
+ '𝒘' => 'w',
2564
+ '𝒙' => 'x',
2565
+ '𝒚' => 'y',
2566
+ '𝒛' => 'z',
2567
+ '𝒜' => 'A',
2568
+ '𝒞' => 'C',
2569
+ '𝒟' => 'D',
2570
+ '𝒢' => 'G',
2571
+ '𝒥' => 'J',
2572
+ '𝒦' => 'K',
2573
+ '𝒩' => 'N',
2574
+ '𝒪' => 'O',
2575
+ '𝒫' => 'P',
2576
+ '𝒬' => 'Q',
2577
+ '𝒮' => 'S',
2578
+ '𝒯' => 'T',
2579
+ '𝒰' => 'U',
2580
+ '𝒱' => 'V',
2581
+ '𝒲' => 'W',
2582
+ '𝒳' => 'X',
2583
+ '𝒴' => 'Y',
2584
+ '𝒵' => 'Z',
2585
+ '𝒶' => 'a',
2586
+ '𝒷' => 'b',
2587
+ '𝒸' => 'c',
2588
+ '𝒹' => 'd',
2589
+ '𝒻' => 'f',
2590
+ '𝒽' => 'h',
2591
+ '𝒾' => 'i',
2592
+ '𝒿' => 'j',
2593
+ '𝓀' => 'k',
2594
+ '𝓁' => 'l',
2595
+ '𝓂' => 'm',
2596
+ '𝓃' => 'n',
2597
+ '𝓅' => 'p',
2598
+ '𝓆' => 'q',
2599
+ '𝓇' => 'r',
2600
+ '𝓈' => 's',
2601
+ '𝓉' => 't',
2602
+ '𝓊' => 'u',
2603
+ '𝓋' => 'v',
2604
+ '𝓌' => 'w',
2605
+ '𝓍' => 'x',
2606
+ '𝓎' => 'y',
2607
+ '𝓏' => 'z',
2608
+ '𝓐' => 'A',
2609
+ '𝓑' => 'B',
2610
+ '𝓒' => 'C',
2611
+ '𝓓' => 'D',
2612
+ '𝓔' => 'E',
2613
+ '𝓕' => 'F',
2614
+ '𝓖' => 'G',
2615
+ '𝓗' => 'H',
2616
+ '𝓘' => 'I',
2617
+ '𝓙' => 'J',
2618
+ '𝓚' => 'K',
2619
+ '𝓛' => 'L',
2620
+ '𝓜' => 'M',
2621
+ '𝓝' => 'N',
2622
+ '𝓞' => 'O',
2623
+ '𝓟' => 'P',
2624
+ '𝓠' => 'Q',
2625
+ '𝓡' => 'R',
2626
+ '𝓢' => 'S',
2627
+ '𝓣' => 'T',
2628
+ '𝓤' => 'U',
2629
+ '𝓥' => 'V',
2630
+ '𝓦' => 'W',
2631
+ '𝓧' => 'X',
2632
+ '𝓨' => 'Y',
2633
+ '𝓩' => 'Z',
2634
+ '𝓪' => 'a',
2635
+ '𝓫' => 'b',
2636
+ '𝓬' => 'c',
2637
+ '𝓭' => 'd',
2638
+ '𝓮' => 'e',
2639
+ '𝓯' => 'f',
2640
+ '𝓰' => 'g',
2641
+ '𝓱' => 'h',
2642
+ '𝓲' => 'i',
2643
+ '𝓳' => 'j',
2644
+ '𝓴' => 'k',
2645
+ '𝓵' => 'l',
2646
+ '𝓶' => 'm',
2647
+ '𝓷' => 'n',
2648
+ '𝓸' => 'o',
2649
+ '𝓹' => 'p',
2650
+ '𝓺' => 'q',
2651
+ '𝓻' => 'r',
2652
+ '𝓼' => 's',
2653
+ '𝓽' => 't',
2654
+ '𝓾' => 'u',
2655
+ '𝓿' => 'v',
2656
+ '𝔀' => 'w',
2657
+ '𝔁' => 'x',
2658
+ '𝔂' => 'y',
2659
+ '𝔃' => 'z',
2660
+ '𝔄' => 'A',
2661
+ '𝔅' => 'B',
2662
+ '𝔇' => 'D',
2663
+ '𝔈' => 'E',
2664
+ '𝔉' => 'F',
2665
+ '𝔊' => 'G',
2666
+ '𝔍' => 'J',
2667
+ '𝔎' => 'K',
2668
+ '𝔏' => 'L',
2669
+ '𝔐' => 'M',
2670
+ '𝔑' => 'N',
2671
+ '𝔒' => 'O',
2672
+ '𝔓' => 'P',
2673
+ '𝔔' => 'Q',
2674
+ '𝔖' => 'S',
2675
+ '𝔗' => 'T',
2676
+ '𝔘' => 'U',
2677
+ '𝔙' => 'V',
2678
+ '𝔚' => 'W',
2679
+ '𝔛' => 'X',
2680
+ '𝔜' => 'Y',
2681
+ '𝔞' => 'a',
2682
+ '𝔟' => 'b',
2683
+ '𝔠' => 'c',
2684
+ '𝔡' => 'd',
2685
+ '𝔢' => 'e',
2686
+ '𝔣' => 'f',
2687
+ '𝔤' => 'g',
2688
+ '𝔥' => 'h',
2689
+ '𝔦' => 'i',
2690
+ '𝔧' => 'j',
2691
+ '𝔨' => 'k',
2692
+ '𝔩' => 'l',
2693
+ '𝔪' => 'm',
2694
+ '𝔫' => 'n',
2695
+ '𝔬' => 'o',
2696
+ '𝔭' => 'p',
2697
+ '𝔮' => 'q',
2698
+ '𝔯' => 'r',
2699
+ '𝔰' => 's',
2700
+ '𝔱' => 't',
2701
+ '𝔲' => 'u',
2702
+ '𝔳' => 'v',
2703
+ '𝔴' => 'w',
2704
+ '𝔵' => 'x',
2705
+ '𝔶' => 'y',
2706
+ '𝔷' => 'z',
2707
+ '𝔸' => 'A',
2708
+ '𝔹' => 'B',
2709
+ '𝔻' => 'D',
2710
+ '𝔼' => 'E',
2711
+ '𝔽' => 'F',
2712
+ '𝔾' => 'G',
2713
+ '𝕀' => 'I',
2714
+ '𝕁' => 'J',
2715
+ '𝕂' => 'K',
2716
+ '𝕃' => 'L',
2717
+ '𝕄' => 'M',
2718
+ '𝕆' => 'O',
2719
+ '𝕊' => 'S',
2720
+ '𝕋' => 'T',
2721
+ '𝕌' => 'U',
2722
+ '𝕍' => 'V',
2723
+ '𝕎' => 'W',
2724
+ '𝕏' => 'X',
2725
+ '𝕐' => 'Y',
2726
+ '𝕒' => 'a',
2727
+ '𝕓' => 'b',
2728
+ '𝕔' => 'c',
2729
+ '𝕕' => 'd',
2730
+ '𝕖' => 'e',
2731
+ '𝕗' => 'f',
2732
+ '𝕘' => 'g',
2733
+ '𝕙' => 'h',
2734
+ '𝕚' => 'i',
2735
+ '𝕛' => 'j',
2736
+ '𝕜' => 'k',
2737
+ '𝕝' => 'l',
2738
+ '𝕞' => 'm',
2739
+ '𝕟' => 'n',
2740
+ '𝕠' => 'o',
2741
+ '𝕡' => 'p',
2742
+ '𝕢' => 'q',
2743
+ '𝕣' => 'r',
2744
+ '𝕤' => 's',
2745
+ '𝕥' => 't',
2746
+ '𝕦' => 'u',
2747
+ '𝕧' => 'v',
2748
+ '𝕨' => 'w',
2749
+ '𝕩' => 'x',
2750
+ '𝕪' => 'y',
2751
+ '𝕫' => 'z',
2752
+ '𝕬' => 'A',
2753
+ '𝕭' => 'B',
2754
+ '𝕮' => 'C',
2755
+ '𝕯' => 'D',
2756
+ '𝕰' => 'E',
2757
+ '𝕱' => 'F',
2758
+ '𝕲' => 'G',
2759
+ '𝕳' => 'H',
2760
+ '𝕴' => 'I',
2761
+ '𝕵' => 'J',
2762
+ '𝕶' => 'K',
2763
+ '𝕷' => 'L',
2764
+ '𝕸' => 'M',
2765
+ '𝕹' => 'N',
2766
+ '𝕺' => 'O',
2767
+ '𝕻' => 'P',
2768
+ '𝕼' => 'Q',
2769
+ '𝕽' => 'R',
2770
+ '𝕾' => 'S',
2771
+ '𝕿' => 'T',
2772
+ '𝖀' => 'U',
2773
+ '𝖁' => 'V',
2774
+ '𝖂' => 'W',
2775
+ '𝖃' => 'X',
2776
+ '𝖄' => 'Y',
2777
+ '𝖅' => 'Z',
2778
+ '𝖆' => 'a',
2779
+ '𝖇' => 'b',
2780
+ '𝖈' => 'c',
2781
+ '𝖉' => 'd',
2782
+ '𝖊' => 'e',
2783
+ '𝖋' => 'f',
2784
+ '𝖌' => 'g',
2785
+ '𝖍' => 'h',
2786
+ '𝖎' => 'i',
2787
+ '𝖏' => 'j',
2788
+ '𝖐' => 'k',
2789
+ '𝖑' => 'l',
2790
+ '𝖒' => 'm',
2791
+ '𝖓' => 'n',
2792
+ '𝖔' => 'o',
2793
+ '𝖕' => 'p',
2794
+ '𝖖' => 'q',
2795
+ '𝖗' => 'r',
2796
+ '𝖘' => 's',
2797
+ '𝖙' => 't',
2798
+ '𝖚' => 'u',
2799
+ '𝖛' => 'v',
2800
+ '𝖜' => 'w',
2801
+ '𝖝' => 'x',
2802
+ '𝖞' => 'y',
2803
+ '𝖟' => 'z',
2804
+ '𝖠' => 'A',
2805
+ '𝖡' => 'B',
2806
+ '𝖢' => 'C',
2807
+ '𝖣' => 'D',
2808
+ '𝖤' => 'E',
2809
+ '𝖥' => 'F',
2810
+ '𝖦' => 'G',
2811
+ '𝖧' => 'H',
2812
+ '𝖨' => 'I',
2813
+ '𝖩' => 'J',
2814
+ '𝖪' => 'K',
2815
+ '𝖫' => 'L',
2816
+ '𝖬' => 'M',
2817
+ '𝖭' => 'N',
2818
+ '𝖮' => 'O',
2819
+ '𝖯' => 'P',
2820
+ '𝖰' => 'Q',
2821
+ '𝖱' => 'R',
2822
+ '𝖲' => 'S',
2823
+ '𝖳' => 'T',
2824
+ '𝖴' => 'U',
2825
+ '𝖵' => 'V',
2826
+ '𝖶' => 'W',
2827
+ '𝖷' => 'X',
2828
+ '𝖸' => 'Y',
2829
+ '𝖹' => 'Z',
2830
+ '𝖺' => 'a',
2831
+ '𝖻' => 'b',
2832
+ '𝖼' => 'c',
2833
+ '𝖽' => 'd',
2834
+ '𝖾' => 'e',
2835
+ '𝖿' => 'f',
2836
+ '𝗀' => 'g',
2837
+ '𝗁' => 'h',
2838
+ '𝗂' => 'i',
2839
+ '𝗃' => 'j',
2840
+ '𝗄' => 'k',
2841
+ '𝗅' => 'l',
2842
+ '𝗆' => 'm',
2843
+ '𝗇' => 'n',
2844
+ '𝗈' => 'o',
2845
+ '𝗉' => 'p',
2846
+ '𝗊' => 'q',
2847
+ '𝗋' => 'r',
2848
+ '𝗌' => 's',
2849
+ '𝗍' => 't',
2850
+ '𝗎' => 'u',
2851
+ '𝗏' => 'v',
2852
+ '𝗐' => 'w',
2853
+ '𝗑' => 'x',
2854
+ '𝗒' => 'y',
2855
+ '𝗓' => 'z',
2856
+ '𝗔' => 'A',
2857
+ '𝗕' => 'B',
2858
+ '𝗖' => 'C',
2859
+ '𝗗' => 'D',
2860
+ '𝗘' => 'E',
2861
+ '𝗙' => 'F',
2862
+ '𝗚' => 'G',
2863
+ '𝗛' => 'H',
2864
+ '𝗜' => 'I',
2865
+ '𝗝' => 'J',
2866
+ '𝗞' => 'K',
2867
+ '𝗟' => 'L',
2868
+ '𝗠' => 'M',
2869
+ '𝗡' => 'N',
2870
+ '𝗢' => 'O',
2871
+ '𝗣' => 'P',
2872
+ '𝗤' => 'Q',
2873
+ '𝗥' => 'R',
2874
+ '𝗦' => 'S',
2875
+ '𝗧' => 'T',
2876
+ '𝗨' => 'U',
2877
+ '𝗩' => 'V',
2878
+ '𝗪' => 'W',
2879
+ '𝗫' => 'X',
2880
+ '𝗬' => 'Y',
2881
+ '𝗭' => 'Z',
2882
+ '𝗮' => 'a',
2883
+ '𝗯' => 'b',
2884
+ '𝗰' => 'c',
2885
+ '𝗱' => 'd',
2886
+ '𝗲' => 'e',
2887
+ '𝗳' => 'f',
2888
+ '𝗴' => 'g',
2889
+ '𝗵' => 'h',
2890
+ '𝗶' => 'i',
2891
+ '𝗷' => 'j',
2892
+ '𝗸' => 'k',
2893
+ '𝗹' => 'l',
2894
+ '𝗺' => 'm',
2895
+ '𝗻' => 'n',
2896
+ '𝗼' => 'o',
2897
+ '𝗽' => 'p',
2898
+ '𝗾' => 'q',
2899
+ '𝗿' => 'r',
2900
+ '𝘀' => 's',
2901
+ '𝘁' => 't',
2902
+ '𝘂' => 'u',
2903
+ '𝘃' => 'v',
2904
+ '𝘄' => 'w',
2905
+ '𝘅' => 'x',
2906
+ '𝘆' => 'y',
2907
+ '𝘇' => 'z',
2908
+ '𝘈' => 'A',
2909
+ '𝘉' => 'B',
2910
+ '𝘊' => 'C',
2911
+ '𝘋' => 'D',
2912
+ '𝘌' => 'E',
2913
+ '𝘍' => 'F',
2914
+ '𝘎' => 'G',
2915
+ '𝘏' => 'H',
2916
+ '𝘐' => 'I',
2917
+ '𝘑' => 'J',
2918
+ '𝘒' => 'K',
2919
+ '𝘓' => 'L',
2920
+ '𝘔' => 'M',
2921
+ '𝘕' => 'N',
2922
+ '𝘖' => 'O',
2923
+ '𝘗' => 'P',
2924
+ '𝘘' => 'Q',
2925
+ '𝘙' => 'R',
2926
+ '𝘚' => 'S',
2927
+ '𝘛' => 'T',
2928
+ '𝘜' => 'U',
2929
+ '𝘝' => 'V',
2930
+ '𝘞' => 'W',
2931
+ '𝘟' => 'X',
2932
+ '𝘠' => 'Y',
2933
+ '𝘡' => 'Z',
2934
+ '𝘢' => 'a',
2935
+ '𝘣' => 'b',
2936
+ '𝘤' => 'c',
2937
+ '𝘥' => 'd',
2938
+ '𝘦' => 'e',
2939
+ '𝘧' => 'f',
2940
+ '𝘨' => 'g',
2941
+ '𝘩' => 'h',
2942
+ '𝘪' => 'i',
2943
+ '𝘫' => 'j',
2944
+ '𝘬' => 'k',
2945
+ '𝘭' => 'l',
2946
+ '𝘮' => 'm',
2947
+ '𝘯' => 'n',
2948
+ '𝘰' => 'o',
2949
+ '𝘱' => 'p',
2950
+ '𝘲' => 'q',
2951
+ '𝘳' => 'r',
2952
+ '𝘴' => 's',
2953
+ '𝘵' => 't',
2954
+ '𝘶' => 'u',
2955
+ '𝘷' => 'v',
2956
+ '𝘸' => 'w',
2957
+ '𝘹' => 'x',
2958
+ '𝘺' => 'y',
2959
+ '𝘻' => 'z',
2960
+ '𝘼' => 'A',
2961
+ '𝘽' => 'B',
2962
+ '𝘾' => 'C',
2963
+ '𝘿' => 'D',
2964
+ '𝙀' => 'E',
2965
+ '𝙁' => 'F',
2966
+ '𝙂' => 'G',
2967
+ '𝙃' => 'H',
2968
+ '𝙄' => 'I',
2969
+ '𝙅' => 'J',
2970
+ '𝙆' => 'K',
2971
+ '𝙇' => 'L',
2972
+ '𝙈' => 'M',
2973
+ '𝙉' => 'N',
2974
+ '𝙊' => 'O',
2975
+ '𝙋' => 'P',
2976
+ '𝙌' => 'Q',
2977
+ '𝙍' => 'R',
2978
+ '𝙎' => 'S',
2979
+ '𝙏' => 'T',
2980
+ '𝙐' => 'U',
2981
+ '𝙑' => 'V',
2982
+ '𝙒' => 'W',
2983
+ '𝙓' => 'X',
2984
+ '𝙔' => 'Y',
2985
+ '𝙕' => 'Z',
2986
+ '𝙖' => 'a',
2987
+ '𝙗' => 'b',
2988
+ '𝙘' => 'c',
2989
+ '𝙙' => 'd',
2990
+ '𝙚' => 'e',
2991
+ '𝙛' => 'f',
2992
+ '𝙜' => 'g',
2993
+ '𝙝' => 'h',
2994
+ '𝙞' => 'i',
2995
+ '𝙟' => 'j',
2996
+ '𝙠' => 'k',
2997
+ '𝙡' => 'l',
2998
+ '𝙢' => 'm',
2999
+ '𝙣' => 'n',
3000
+ '𝙤' => 'o',
3001
+ '𝙥' => 'p',
3002
+ '𝙦' => 'q',
3003
+ '𝙧' => 'r',
3004
+ '𝙨' => 's',
3005
+ '𝙩' => 't',
3006
+ '𝙪' => 'u',
3007
+ '𝙫' => 'v',
3008
+ '𝙬' => 'w',
3009
+ '𝙭' => 'x',
3010
+ '𝙮' => 'y',
3011
+ '𝙯' => 'z',
3012
+ '𝙰' => 'A',
3013
+ '𝙱' => 'B',
3014
+ '𝙲' => 'C',
3015
+ '𝙳' => 'D',
3016
+ '𝙴' => 'E',
3017
+ '𝙵' => 'F',
3018
+ '𝙶' => 'G',
3019
+ '𝙷' => 'H',
3020
+ '𝙸' => 'I',
3021
+ '𝙹' => 'J',
3022
+ '𝙺' => 'K',
3023
+ '𝙻' => 'L',
3024
+ '𝙼' => 'M',
3025
+ '𝙽' => 'N',
3026
+ '𝙾' => 'O',
3027
+ '𝙿' => 'P',
3028
+ '𝚀' => 'Q',
3029
+ '𝚁' => 'R',
3030
+ '𝚂' => 'S',
3031
+ '𝚃' => 'T',
3032
+ '𝚄' => 'U',
3033
+ '𝚅' => 'V',
3034
+ '𝚆' => 'W',
3035
+ '𝚇' => 'X',
3036
+ '𝚈' => 'Y',
3037
+ '𝚉' => 'Z',
3038
+ '𝚊' => 'a',
3039
+ '𝚋' => 'b',
3040
+ '𝚌' => 'c',
3041
+ '𝚍' => 'd',
3042
+ '𝚎' => 'e',
3043
+ '𝚏' => 'f',
3044
+ '𝚐' => 'g',
3045
+ '𝚑' => 'h',
3046
+ '𝚒' => 'i',
3047
+ '𝚓' => 'j',
3048
+ '𝚔' => 'k',
3049
+ '𝚕' => 'l',
3050
+ '𝚖' => 'm',
3051
+ '𝚗' => 'n',
3052
+ '𝚘' => 'o',
3053
+ '𝚙' => 'p',
3054
+ '𝚚' => 'q',
3055
+ '𝚛' => 'r',
3056
+ '𝚜' => 's',
3057
+ '𝚝' => 't',
3058
+ '𝚞' => 'u',
3059
+ '𝚟' => 'v',
3060
+ '𝚠' => 'w',
3061
+ '𝚡' => 'x',
3062
+ '𝚢' => 'y',
3063
+ '𝚣' => 'z',
3064
+ '𝚤' => 'ı',
3065
+ '𝚥' => 'ȷ',
3066
+ '𝚨' => 'Α',
3067
+ '𝚩' => 'Β',
3068
+ '𝚪' => 'Γ',
3069
+ '𝚫' => 'Δ',
3070
+ '𝚬' => 'Ε',
3071
+ '𝚭' => 'Ζ',
3072
+ '𝚮' => 'Η',
3073
+ '𝚯' => 'Θ',
3074
+ '𝚰' => 'Ι',
3075
+ '𝚱' => 'Κ',
3076
+ '𝚲' => 'Λ',
3077
+ '𝚳' => 'Μ',
3078
+ '𝚴' => 'Ν',
3079
+ '𝚵' => 'Ξ',
3080
+ '𝚶' => 'Ο',
3081
+ '𝚷' => 'Π',
3082
+ '𝚸' => 'Ρ',
3083
+ '𝚹' => 'Θ',
3084
+ '𝚺' => 'Σ',
3085
+ '𝚻' => 'Τ',
3086
+ '𝚼' => 'Υ',
3087
+ '𝚽' => 'Φ',
3088
+ '𝚾' => 'Χ',
3089
+ '𝚿' => 'Ψ',
3090
+ '𝛀' => 'Ω',
3091
+ '𝛁' => '∇',
3092
+ '𝛂' => 'α',
3093
+ '𝛃' => 'β',
3094
+ '𝛄' => 'γ',
3095
+ '𝛅' => 'δ',
3096
+ '𝛆' => 'ε',
3097
+ '𝛇' => 'ζ',
3098
+ '𝛈' => 'η',
3099
+ '𝛉' => 'θ',
3100
+ '𝛊' => 'ι',
3101
+ '𝛋' => 'κ',
3102
+ '𝛌' => 'λ',
3103
+ '𝛍' => 'μ',
3104
+ '𝛎' => 'ν',
3105
+ '𝛏' => 'ξ',
3106
+ '𝛐' => 'ο',
3107
+ '𝛑' => 'π',
3108
+ '𝛒' => 'ρ',
3109
+ '𝛓' => 'ς',
3110
+ '𝛔' => 'σ',
3111
+ '𝛕' => 'τ',
3112
+ '𝛖' => 'υ',
3113
+ '𝛗' => 'φ',
3114
+ '𝛘' => 'χ',
3115
+ '𝛙' => 'ψ',
3116
+ '𝛚' => 'ω',
3117
+ '𝛛' => '∂',
3118
+ '𝛜' => 'ε',
3119
+ '𝛝' => 'θ',
3120
+ '𝛞' => 'κ',
3121
+ '𝛟' => 'φ',
3122
+ '𝛠' => 'ρ',
3123
+ '𝛡' => 'π',
3124
+ '𝛢' => 'Α',
3125
+ '𝛣' => 'Β',
3126
+ '𝛤' => 'Γ',
3127
+ '𝛥' => 'Δ',
3128
+ '𝛦' => 'Ε',
3129
+ '𝛧' => 'Ζ',
3130
+ '𝛨' => 'Η',
3131
+ '𝛩' => 'Θ',
3132
+ '𝛪' => 'Ι',
3133
+ '𝛫' => 'Κ',
3134
+ '𝛬' => 'Λ',
3135
+ '𝛭' => 'Μ',
3136
+ '𝛮' => 'Ν',
3137
+ '𝛯' => 'Ξ',
3138
+ '𝛰' => 'Ο',
3139
+ '𝛱' => 'Π',
3140
+ '𝛲' => 'Ρ',
3141
+ '𝛳' => 'Θ',
3142
+ '𝛴' => 'Σ',
3143
+ '𝛵' => 'Τ',
3144
+ '𝛶' => 'Υ',
3145
+ '𝛷' => 'Φ',
3146
+ '𝛸' => 'Χ',
3147
+ '𝛹' => 'Ψ',
3148
+ '𝛺' => 'Ω',
3149
+ '𝛻' => '∇',
3150
+ '𝛼' => 'α',
3151
+ '𝛽' => 'β',
3152
+ '𝛾' => 'γ',
3153
+ '𝛿' => 'δ',
3154
+ '𝜀' => 'ε',
3155
+ '𝜁' => 'ζ',
3156
+ '𝜂' => 'η',
3157
+ '𝜃' => 'θ',
3158
+ '𝜄' => 'ι',
3159
+ '𝜅' => 'κ',
3160
+ '𝜆' => 'λ',
3161
+ '𝜇' => 'μ',
3162
+ '𝜈' => 'ν',
3163
+ '𝜉' => 'ξ',
3164
+ '𝜊' => 'ο',
3165
+ '𝜋' => 'π',
3166
+ '𝜌' => 'ρ',
3167
+ '𝜍' => 'ς',
3168
+ '𝜎' => 'σ',
3169
+ '𝜏' => 'τ',
3170
+ '𝜐' => 'υ',
3171
+ '𝜑' => 'φ',
3172
+ '𝜒' => 'χ',
3173
+ '𝜓' => 'ψ',
3174
+ '𝜔' => 'ω',
3175
+ '𝜕' => '∂',
3176
+ '𝜖' => 'ε',
3177
+ '𝜗' => 'θ',
3178
+ '𝜘' => 'κ',
3179
+ '𝜙' => 'φ',
3180
+ '𝜚' => 'ρ',
3181
+ '𝜛' => 'π',
3182
+ '𝜜' => 'Α',
3183
+ '𝜝' => 'Β',
3184
+ '𝜞' => 'Γ',
3185
+ '𝜟' => 'Δ',
3186
+ '𝜠' => 'Ε',
3187
+ '𝜡' => 'Ζ',
3188
+ '𝜢' => 'Η',
3189
+ '𝜣' => 'Θ',
3190
+ '𝜤' => 'Ι',
3191
+ '𝜥' => 'Κ',
3192
+ '𝜦' => 'Λ',
3193
+ '𝜧' => 'Μ',
3194
+ '𝜨' => 'Ν',
3195
+ '𝜩' => 'Ξ',
3196
+ '𝜪' => 'Ο',
3197
+ '𝜫' => 'Π',
3198
+ '𝜬' => 'Ρ',
3199
+ '𝜭' => 'Θ',
3200
+ '𝜮' => 'Σ',
3201
+ '𝜯' => 'Τ',
3202
+ '𝜰' => 'Υ',
3203
+ '𝜱' => 'Φ',
3204
+ '𝜲' => 'Χ',
3205
+ '𝜳' => 'Ψ',
3206
+ '𝜴' => 'Ω',
3207
+ '𝜵' => '∇',
3208
+ '𝜶' => 'α',
3209
+ '𝜷' => 'β',
3210
+ '𝜸' => 'γ',
3211
+ '𝜹' => 'δ',
3212
+ '𝜺' => 'ε',
3213
+ '𝜻' => 'ζ',
3214
+ '𝜼' => 'η',
3215
+ '𝜽' => 'θ',
3216
+ '𝜾' => 'ι',
3217
+ '𝜿' => 'κ',
3218
+ '𝝀' => 'λ',
3219
+ '𝝁' => 'μ',
3220
+ '𝝂' => 'ν',
3221
+ '𝝃' => 'ξ',
3222
+ '𝝄' => 'ο',
3223
+ '𝝅' => 'π',
3224
+ '𝝆' => 'ρ',
3225
+ '𝝇' => 'ς',
3226
+ '𝝈' => 'σ',
3227
+ '𝝉' => 'τ',
3228
+ '𝝊' => 'υ',
3229
+ '𝝋' => 'φ',
3230
+ '𝝌' => 'χ',
3231
+ '𝝍' => 'ψ',
3232
+ '𝝎' => 'ω',
3233
+ '𝝏' => '∂',
3234
+ '𝝐' => 'ε',
3235
+ '𝝑' => 'θ',
3236
+ '𝝒' => 'κ',
3237
+ '𝝓' => 'φ',
3238
+ '𝝔' => 'ρ',
3239
+ '𝝕' => 'π',
3240
+ '𝝖' => 'Α',
3241
+ '𝝗' => 'Β',
3242
+ '𝝘' => 'Γ',
3243
+ '𝝙' => 'Δ',
3244
+ '𝝚' => 'Ε',
3245
+ '𝝛' => 'Ζ',
3246
+ '𝝜' => 'Η',
3247
+ '𝝝' => 'Θ',
3248
+ '𝝞' => 'Ι',
3249
+ '𝝟' => 'Κ',
3250
+ '𝝠' => 'Λ',
3251
+ '𝝡' => 'Μ',
3252
+ '𝝢' => 'Ν',
3253
+ '𝝣' => 'Ξ',
3254
+ '𝝤' => 'Ο',
3255
+ '𝝥' => 'Π',
3256
+ '𝝦' => 'Ρ',
3257
+ '𝝧' => 'Θ',
3258
+ '𝝨' => 'Σ',
3259
+ '𝝩' => 'Τ',
3260
+ '𝝪' => 'Υ',
3261
+ '𝝫' => 'Φ',
3262
+ '𝝬' => 'Χ',
3263
+ '𝝭' => 'Ψ',
3264
+ '𝝮' => 'Ω',
3265
+ '𝝯' => '∇',
3266
+ '𝝰' => 'α',
3267
+ '𝝱' => 'β',
3268
+ '𝝲' => 'γ',
3269
+ '𝝳' => 'δ',
3270
+ '𝝴' => 'ε',
3271
+ '𝝵' => 'ζ',
3272
+ '𝝶' => 'η',
3273
+ '𝝷' => 'θ',
3274
+ '𝝸' => 'ι',
3275
+ '𝝹' => 'κ',
3276
+ '𝝺' => 'λ',
3277
+ '𝝻' => 'μ',
3278
+ '𝝼' => 'ν',
3279
+ '𝝽' => 'ξ',
3280
+ '𝝾' => 'ο',
3281
+ '𝝿' => 'π',
3282
+ '𝞀' => 'ρ',
3283
+ '𝞁' => 'ς',
3284
+ '𝞂' => 'σ',
3285
+ '𝞃' => 'τ',
3286
+ '𝞄' => 'υ',
3287
+ '𝞅' => 'φ',
3288
+ '𝞆' => 'χ',
3289
+ '𝞇' => 'ψ',
3290
+ '𝞈' => 'ω',
3291
+ '𝞉' => '∂',
3292
+ '𝞊' => 'ε',
3293
+ '𝞋' => 'θ',
3294
+ '𝞌' => 'κ',
3295
+ '𝞍' => 'φ',
3296
+ '𝞎' => 'ρ',
3297
+ '𝞏' => 'π',
3298
+ '𝞐' => 'Α',
3299
+ '𝞑' => 'Β',
3300
+ '𝞒' => 'Γ',
3301
+ '𝞓' => 'Δ',
3302
+ '𝞔' => 'Ε',
3303
+ '𝞕' => 'Ζ',
3304
+ '𝞖' => 'Η',
3305
+ '𝞗' => 'Θ',
3306
+ '𝞘' => 'Ι',
3307
+ '𝞙' => 'Κ',
3308
+ '𝞚' => 'Λ',
3309
+ '𝞛' => 'Μ',
3310
+ '𝞜' => 'Ν',
3311
+ '𝞝' => 'Ξ',
3312
+ '𝞞' => 'Ο',
3313
+ '𝞟' => 'Π',
3314
+ '𝞠' => 'Ρ',
3315
+ '𝞡' => 'Θ',
3316
+ '𝞢' => 'Σ',
3317
+ '𝞣' => 'Τ',
3318
+ '𝞤' => 'Υ',
3319
+ '𝞥' => 'Φ',
3320
+ '𝞦' => 'Χ',
3321
+ '𝞧' => 'Ψ',
3322
+ '𝞨' => 'Ω',
3323
+ '𝞩' => '∇',
3324
+ '𝞪' => 'α',
3325
+ '𝞫' => 'β',
3326
+ '𝞬' => 'γ',
3327
+ '𝞭' => 'δ',
3328
+ '𝞮' => 'ε',
3329
+ '𝞯' => 'ζ',
3330
+ '𝞰' => 'η',
3331
+ '𝞱' => 'θ',
3332
+ '𝞲' => 'ι',
3333
+ '𝞳' => 'κ',
3334
+ '𝞴' => 'λ',
3335
+ '𝞵' => 'μ',
3336
+ '𝞶' => 'ν',
3337
+ '𝞷' => 'ξ',
3338
+ '𝞸' => 'ο',
3339
+ '𝞹' => 'π',
3340
+ '𝞺' => 'ρ',
3341
+ '𝞻' => 'ς',
3342
+ '𝞼' => 'σ',
3343
+ '𝞽' => 'τ',
3344
+ '𝞾' => 'υ',
3345
+ '𝞿' => 'φ',
3346
+ '𝟀' => 'χ',
3347
+ '𝟁' => 'ψ',
3348
+ '𝟂' => 'ω',
3349
+ '𝟃' => '∂',
3350
+ '𝟄' => 'ε',
3351
+ '𝟅' => 'θ',
3352
+ '𝟆' => 'κ',
3353
+ '𝟇' => 'φ',
3354
+ '𝟈' => 'ρ',
3355
+ '𝟉' => 'π',
3356
+ '𝟊' => 'Ϝ',
3357
+ '𝟋' => 'ϝ',
3358
+ '𝟎' => '0',
3359
+ '𝟏' => '1',
3360
+ '𝟐' => '2',
3361
+ '𝟑' => '3',
3362
+ '𝟒' => '4',
3363
+ '𝟓' => '5',
3364
+ '𝟔' => '6',
3365
+ '𝟕' => '7',
3366
+ '𝟖' => '8',
3367
+ '𝟗' => '9',
3368
+ '𝟘' => '0',
3369
+ '𝟙' => '1',
3370
+ '𝟚' => '2',
3371
+ '𝟛' => '3',
3372
+ '𝟜' => '4',
3373
+ '𝟝' => '5',
3374
+ '𝟞' => '6',
3375
+ '𝟟' => '7',
3376
+ '𝟠' => '8',
3377
+ '𝟡' => '9',
3378
+ '𝟢' => '0',
3379
+ '𝟣' => '1',
3380
+ '𝟤' => '2',
3381
+ '𝟥' => '3',
3382
+ '𝟦' => '4',
3383
+ '𝟧' => '5',
3384
+ '𝟨' => '6',
3385
+ '𝟩' => '7',
3386
+ '𝟪' => '8',
3387
+ '𝟫' => '9',
3388
+ '𝟬' => '0',
3389
+ '𝟭' => '1',
3390
+ '𝟮' => '2',
3391
+ '𝟯' => '3',
3392
+ '𝟰' => '4',
3393
+ '𝟱' => '5',
3394
+ '𝟲' => '6',
3395
+ '𝟳' => '7',
3396
+ '𝟴' => '8',
3397
+ '𝟵' => '9',
3398
+ '𝟶' => '0',
3399
+ '𝟷' => '1',
3400
+ '𝟸' => '2',
3401
+ '𝟹' => '3',
3402
+ '𝟺' => '4',
3403
+ '𝟻' => '5',
3404
+ '𝟼' => '6',
3405
+ '𝟽' => '7',
3406
+ '𝟾' => '8',
3407
+ '𝟿' => '9',
3408
+ '𞸀' => 'ا',
3409
+ '𞸁' => 'ب',
3410
+ '𞸂' => 'ج',
3411
+ '𞸃' => 'د',
3412
+ '𞸅' => 'و',
3413
+ '𞸆' => 'ز',
3414
+ '𞸇' => 'ح',
3415
+ '𞸈' => 'ط',
3416
+ '𞸉' => 'ي',
3417
+ '𞸊' => 'ك',
3418
+ '𞸋' => 'ل',
3419
+ '𞸌' => 'م',
3420
+ '𞸍' => 'ن',
3421
+ '𞸎' => 'س',
3422
+ '𞸏' => 'ع',
3423
+ '𞸐' => 'ف',
3424
+ '𞸑' => 'ص',
3425
+ '𞸒' => 'ق',
3426
+ '𞸓' => 'ر',
3427
+ '𞸔' => 'ش',
3428
+ '𞸕' => 'ت',
3429
+ '𞸖' => 'ث',
3430
+ '𞸗' => 'خ',
3431
+ '𞸘' => 'ذ',
3432
+ '𞸙' => 'ض',
3433
+ '𞸚' => 'ظ',
3434
+ '𞸛' => 'غ',
3435
+ '𞸜' => 'ٮ',
3436
+ '𞸝' => 'ں',
3437
+ '𞸞' => 'ڡ',
3438
+ '𞸟' => 'ٯ',
3439
+ '𞸡' => 'ب',
3440
+ '𞸢' => 'ج',
3441
+ '𞸤' => 'ه',
3442
+ '𞸧' => 'ح',
3443
+ '𞸩' => 'ي',
3444
+ '𞸪' => 'ك',
3445
+ '𞸫' => 'ل',
3446
+ '𞸬' => 'م',
3447
+ '𞸭' => 'ن',
3448
+ '𞸮' => 'س',
3449
+ '𞸯' => 'ع',
3450
+ '𞸰' => 'ف',
3451
+ '𞸱' => 'ص',
3452
+ '𞸲' => 'ق',
3453
+ '𞸴' => 'ش',
3454
+ '𞸵' => 'ت',
3455
+ '𞸶' => 'ث',
3456
+ '𞸷' => 'خ',
3457
+ '𞸹' => 'ض',
3458
+ '𞸻' => 'غ',
3459
+ '𞹂' => 'ج',
3460
+ '𞹇' => 'ح',
3461
+ '𞹉' => 'ي',
3462
+ '𞹋' => 'ل',
3463
+ '𞹍' => 'ن',
3464
+ '𞹎' => 'س',
3465
+ '𞹏' => 'ع',
3466
+ '𞹑' => 'ص',
3467
+ '𞹒' => 'ق',
3468
+ '𞹔' => 'ش',
3469
+ '𞹗' => 'خ',
3470
+ '𞹙' => 'ض',
3471
+ '𞹛' => 'غ',
3472
+ '𞹝' => 'ں',
3473
+ '𞹟' => 'ٯ',
3474
+ '𞹡' => 'ب',
3475
+ '𞹢' => 'ج',
3476
+ '𞹤' => 'ه',
3477
+ '𞹧' => 'ح',
3478
+ '𞹨' => 'ط',
3479
+ '𞹩' => 'ي',
3480
+ '𞹪' => 'ك',
3481
+ '𞹬' => 'م',
3482
+ '𞹭' => 'ن',
3483
+ '𞹮' => 'س',
3484
+ '𞹯' => 'ع',
3485
+ '𞹰' => 'ف',
3486
+ '𞹱' => 'ص',
3487
+ '𞹲' => 'ق',
3488
+ '𞹴' => 'ش',
3489
+ '𞹵' => 'ت',
3490
+ '𞹶' => 'ث',
3491
+ '𞹷' => 'خ',
3492
+ '𞹹' => 'ض',
3493
+ '𞹺' => 'ظ',
3494
+ '𞹻' => 'غ',
3495
+ '𞹼' => 'ٮ',
3496
+ '𞹾' => 'ڡ',
3497
+ '𞺀' => 'ا',
3498
+ '𞺁' => 'ب',
3499
+ '𞺂' => 'ج',
3500
+ '𞺃' => 'د',
3501
+ '𞺄' => 'ه',
3502
+ '𞺅' => 'و',
3503
+ '𞺆' => 'ز',
3504
+ '𞺇' => 'ح',
3505
+ '𞺈' => 'ط',
3506
+ '𞺉' => 'ي',
3507
+ '𞺋' => 'ل',
3508
+ '𞺌' => 'م',
3509
+ '𞺍' => 'ن',
3510
+ '𞺎' => 'س',
3511
+ '𞺏' => 'ع',
3512
+ '𞺐' => 'ف',
3513
+ '𞺑' => 'ص',
3514
+ '𞺒' => 'ق',
3515
+ '𞺓' => 'ر',
3516
+ '𞺔' => 'ش',
3517
+ '𞺕' => 'ت',
3518
+ '𞺖' => 'ث',
3519
+ '𞺗' => 'خ',
3520
+ '𞺘' => 'ذ',
3521
+ '𞺙' => 'ض',
3522
+ '𞺚' => 'ظ',
3523
+ '𞺛' => 'غ',
3524
+ '𞺡' => 'ب',
3525
+ '𞺢' => 'ج',
3526
+ '𞺣' => 'د',
3527
+ '𞺥' => 'و',
3528
+ '𞺦' => 'ز',
3529
+ '𞺧' => 'ح',
3530
+ '𞺨' => 'ط',
3531
+ '𞺩' => 'ي',
3532
+ '𞺫' => 'ل',
3533
+ '𞺬' => 'م',
3534
+ '𞺭' => 'ن',
3535
+ '𞺮' => 'س',
3536
+ '𞺯' => 'ع',
3537
+ '𞺰' => 'ف',
3538
+ '𞺱' => 'ص',
3539
+ '𞺲' => 'ق',
3540
+ '𞺳' => 'ر',
3541
+ '𞺴' => 'ش',
3542
+ '𞺵' => 'ت',
3543
+ '𞺶' => 'ث',
3544
+ '𞺷' => 'خ',
3545
+ '𞺸' => 'ذ',
3546
+ '𞺹' => 'ض',
3547
+ '𞺺' => 'ظ',
3548
+ '𞺻' => 'غ',
3549
+ '🄀' => '0.',
3550
+ '🄁' => '0,',
3551
+ '🄂' => '1,',
3552
+ '🄃' => '2,',
3553
+ '🄄' => '3,',
3554
+ '🄅' => '4,',
3555
+ '🄆' => '5,',
3556
+ '🄇' => '6,',
3557
+ '🄈' => '7,',
3558
+ '🄉' => '8,',
3559
+ '🄊' => '9,',
3560
+ '🄐' => '(A)',
3561
+ '🄑' => '(B)',
3562
+ '🄒' => '(C)',
3563
+ '🄓' => '(D)',
3564
+ '🄔' => '(E)',
3565
+ '🄕' => '(F)',
3566
+ '🄖' => '(G)',
3567
+ '🄗' => '(H)',
3568
+ '🄘' => '(I)',
3569
+ '🄙' => '(J)',
3570
+ '🄚' => '(K)',
3571
+ '🄛' => '(L)',
3572
+ '🄜' => '(M)',
3573
+ '🄝' => '(N)',
3574
+ '🄞' => '(O)',
3575
+ '🄟' => '(P)',
3576
+ '🄠' => '(Q)',
3577
+ '🄡' => '(R)',
3578
+ '🄢' => '(S)',
3579
+ '🄣' => '(T)',
3580
+ '🄤' => '(U)',
3581
+ '🄥' => '(V)',
3582
+ '🄦' => '(W)',
3583
+ '🄧' => '(X)',
3584
+ '🄨' => '(Y)',
3585
+ '🄩' => '(Z)',
3586
+ '🄪' => '〔S〕',
3587
+ '🄫' => 'C',
3588
+ '🄬' => 'R',
3589
+ '🄭' => 'CD',
3590
+ '🄮' => 'WZ',
3591
+ '🄰' => 'A',
3592
+ '🄱' => 'B',
3593
+ '🄲' => 'C',
3594
+ '🄳' => 'D',
3595
+ '🄴' => 'E',
3596
+ '🄵' => 'F',
3597
+ '🄶' => 'G',
3598
+ '🄷' => 'H',
3599
+ '🄸' => 'I',
3600
+ '🄹' => 'J',
3601
+ '🄺' => 'K',
3602
+ '🄻' => 'L',
3603
+ '🄼' => 'M',
3604
+ '🄽' => 'N',
3605
+ '🄾' => 'O',
3606
+ '🄿' => 'P',
3607
+ '🅀' => 'Q',
3608
+ '🅁' => 'R',
3609
+ '🅂' => 'S',
3610
+ '🅃' => 'T',
3611
+ '🅄' => 'U',
3612
+ '🅅' => 'V',
3613
+ '🅆' => 'W',
3614
+ '🅇' => 'X',
3615
+ '🅈' => 'Y',
3616
+ '🅉' => 'Z',
3617
+ '🅊' => 'HV',
3618
+ '🅋' => 'MV',
3619
+ '🅌' => 'SD',
3620
+ '🅍' => 'SS',
3621
+ '🅎' => 'PPV',
3622
+ '🅏' => 'WC',
3623
+ '🅪' => 'MC',
3624
+ '🅫' => 'MD',
3625
+ '🅬' => 'MR',
3626
+ '🆐' => 'DJ',
3627
+ '🈀' => 'ほか',
3628
+ '🈁' => 'ココ',
3629
+ '🈂' => 'サ',
3630
+ '🈐' => '手',
3631
+ '🈑' => '字',
3632
+ '🈒' => '双',
3633
+ '🈓' => 'デ',
3634
+ '🈔' => '二',
3635
+ '🈕' => '多',
3636
+ '🈖' => '解',
3637
+ '🈗' => '天',
3638
+ '🈘' => '交',
3639
+ '🈙' => '映',
3640
+ '🈚' => '無',
3641
+ '🈛' => '料',
3642
+ '🈜' => '前',
3643
+ '🈝' => '後',
3644
+ '🈞' => '再',
3645
+ '🈟' => '新',
3646
+ '🈠' => '初',
3647
+ '🈡' => '終',
3648
+