-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
452 lines (452 loc) · 22.4 KB
/
composer.json
File metadata and controls
452 lines (452 loc) · 22.4 KB
1
2
3
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
{
"name": "magento/project-community-edition",
"description": "eCommerce Platform for Growth (Community Edition)",
"type": "project",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"laminas/laminas-dependency-plugin": true,
"magento/*": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"yireo/magento2-replace-tools": true,
"cweagans/composer-patches": true
},
"preferred-install": "dist",
"sort-packages": true
},
"version": "2.4.7-p3",
"require": {
"avstudnitz/scopehint2": "^1.3",
"controlaltdelete/magento2-fathom-analytics": "^1.0",
"cweagans/composer-patches": "^2.0",
"deployer/deployer": "^7.4",
"hyva-themes/magento2-default-theme": "^1.4",
"hyva-themes/magento2-luma-checkout": "^1.1",
"magento/composer-dependency-version-audit-plugin": "~0.1",
"magento/composer-root-update-plugin": "^2.0.4",
"magento/product-community-edition": "2.4.8-p4",
"mollie/magento2": "^2.41"
},
"autoload": {
"exclude-from-classmap": [
"**/dev/**",
"**/update/**",
"**/Test/**"
],
"files": [
"app/etc/NonComposerComponentRegistration.php",
"stores.php"
],
"psr-0": {
"": [
"app/code/",
"generated/code/"
]
},
"psr-4": {
"Magento\\Setup\\": "setup/src/Magento/Setup/"
}
},
"require-dev": {
"allure-framework/allure-phpunit": "^2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0",
"dg/bypass-finals": "^1.4",
"friendsofphp/php-cs-fixer": "^3.22",
"lusitanian/oauth": "^0.8",
"mage2tv/magento-cache-clean": "^1.0",
"magento/magento-coding-standard": "*",
"pdepend/pdepend": "^2.10",
"phpmd/phpmd": "^2.12",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9.5",
"reach-digital/magento2-test-framework": "^1.7",
"sebastian/phpcpd": "^6.0",
"symfony/finder": "^6.4",
"bitexpert/phpstan-magento": "^0.42.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"yireo/magento2-replace-tools": "^1.0"
},
"conflict": {
"gene/bluefoot": "*"
},
"autoload-dev": {
"psr-4": {
"Magento\\PhpStan\\": "dev/tests/static/framework/Magento/PhpStan/",
"Magento\\Sniffs\\": "dev/tests/static/framework/Magento/Sniffs/",
"Magento\\TestFramework\\Inspection\\": "dev/tests/static/framework/Magento/TestFramework/Inspection/",
"Magento\\TestFramework\\Utility\\": "dev/tests/static/framework/Magento/TestFramework/Utility/",
"Magento\\Tools\\": "dev/tools/Magento/Tools/",
"Magento\\Tools\\Sanity\\": "dev/build/publication/sanity/Magento/Tools/Sanity/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": {
"packagist.org": false,
"private-packagist": {
"type": "composer",
"url": "https://repo.packagist.com/controlaltdelete-nl/shop-magedispatch/"
}
},
"extra": {
"magento-force": "override",
"replace": {
"bulk": [
"yireo/magento2-replace-bundled",
"yireo/magento2-replace-inventory",
"yireo/magento2-replace-graphql",
"yireo/magento2-replace-sample-data"
]
}
},
"replace": {
"amzn/amazon-pay-and-login-magento-2-module": "*",
"amzn/amazon-pay-and-login-with-amazon-core-module": "*",
"amzn/amazon-pay-module": "*",
"amzn/amazon-pay-sdk-php": "*",
"amzn/login-with-amazon-module": "*",
"braintree/braintree": "*",
"braintree/braintree_php": "*",
"dotmailer/dotmailer-magento2-extension": "*",
"dotmailer/dotmailer-magento2-extension-b2b": "*",
"dotmailer/dotmailer-magento2-extension-chat": "*",
"dotmailer/dotmailer-magento2-extension-enterprise": "*",
"dotmailer/dotmailer-magento2-extension-enterprise-package": "*",
"dotmailer/dotmailer-magento2-extension-package": "*",
"dotmailer/dotmailer-magento2-extension-sms": "*",
"klarna/m2-payments": "*",
"klarna/module-core": "*",
"klarna/module-kp": "*",
"klarna/module-kp-graph-ql": "*",
"klarna/module-onsitemessaging": "*",
"klarna/module-ordermanagement": "*",
"mage-os/inventory-composer-installer": "*",
"mage-os/inventory-composer-metapackage": "*",
"mage-os/module-async-order-graph-ql": "*",
"mage-os/module-authorizenet-graph-ql": "*",
"mage-os/module-braintree": "*",
"mage-os/module-braintree-graph-ql": "*",
"mage-os/module-bundle-graph-ql": "*",
"mage-os/module-bundle-sample-data": "*",
"mage-os/module-catalog-cms-graph-ql": "*",
"mage-os/module-catalog-customer-ql": "*",
"mage-os/module-catalog-inventory-graph-ql": "*",
"mage-os/module-catalog-permissions-graph-ql": "*",
"mage-os/module-catalog-rule-graph-ql": "*",
"mage-os/module-catalog-rule-sample-data": "*",
"mage-os/module-catalog-sample-data": "*",
"mage-os/module-catalog-staging-graph-ql": "*",
"mage-os/module-catalog-url-rewrite-graph-ql": "*",
"mage-os/module-checkout-agreements-graph-ql": "*",
"mage-os/module-cms-graph-ql": "*",
"mage-os/module-cms-sample-data": "*",
"mage-os/module-cms-url-rewrite-graph-ql": "*",
"mage-os/module-compare-list-graph-ql": "*",
"mage-os/module-configurable-product-graph-ql": "*",
"mage-os/module-configurable-sample-data": "*",
"mage-os/module-contact-graph-ql": "*",
"mage-os/module-customer-balance-graph-ql": "*",
"mage-os/module-customer-downloadable-graph-ql": "*",
"mage-os/module-customer-sample-data": "*",
"mage-os/module-directory-graph-ql": "*",
"mage-os/module-downloadable-graph-ql": "*",
"mage-os/module-downloadable-sample-data": "*",
"mage-os/module-elasticsearch-catalog-permissions-graph-ql": "*",
"mage-os/module-gift-card-account-graph-ql": "*",
"mage-os/module-gift-card-graph-ql": "*",
"mage-os/module-gift-registry-graph-ql": "*",
"mage-os/module-gift-wrapping-graph-ql": "*",
"mage-os/module-graph-ql": "*",
"mage-os/module-grouped-product-graph-ql": "*",
"mage-os/module-grouped-product-sample-data": "*",
"mage-os/module-inventory": "*",
"mage-os/module-inventory-admin-ui": "*",
"mage-os/module-inventory-advanced-checkout": "*",
"mage-os/module-inventory-api": "*",
"mage-os/module-inventory-bundle-import-export": "*",
"mage-os/module-inventory-bundle-product": "*",
"mage-os/module-inventory-bundle-product-admin-ui": "*",
"mage-os/module-inventory-bundle-product-indexer": "*",
"mage-os/module-inventory-cache": "*",
"mage-os/module-inventory-catalog": "*",
"mage-os/module-inventory-catalog-admin-ui": "*",
"mage-os/module-inventory-catalog-api": "*",
"mage-os/module-inventory-catalog-frontend-ui": "*",
"mage-os/module-inventory-catalog-search": "*",
"mage-os/module-inventory-catalog-search-bundle-product": "*",
"mage-os/module-inventory-catalog-search-configurable-product": "*",
"mage-os/module-inventory-configurable-product": "*",
"mage-os/module-inventory-configurable-product-admin-ui": "*",
"mage-os/module-inventory-configurable-product-frontend-ui": "*",
"mage-os/module-inventory-configurable-product-indexer": "*",
"mage-os/module-inventory-configuration": "*",
"mage-os/module-inventory-configuration-api": "*",
"mage-os/module-inventory-distance-based-source-selection": "*",
"mage-os/module-inventory-distance-based-source-selection-admin-ui": "*",
"mage-os/module-inventory-distance-based-source-selection-api": "*",
"mage-os/module-inventory-elasticsearch": "*",
"mage-os/module-inventory-export-stock": "*",
"mage-os/module-inventory-export-stock-api": "*",
"mage-os/module-inventory-graph-ql": "*",
"mage-os/module-inventory-grouped-product": "*",
"mage-os/module-inventory-grouped-product-admin-ui": "*",
"mage-os/module-inventory-grouped-product-indexer": "*",
"mage-os/module-inventory-import-export": "*",
"mage-os/module-inventory-in-store-pickup": "*",
"mage-os/module-inventory-in-store-pickup-admin-ui": "*",
"mage-os/module-inventory-in-store-pickup-api": "*",
"mage-os/module-inventory-in-store-pickup-frontend": "*",
"mage-os/module-inventory-in-store-pickup-graph-ql": "*",
"mage-os/module-inventory-in-store-pickup-multishipping": "*",
"mage-os/module-inventory-in-store-pickup-quote": "*",
"mage-os/module-inventory-in-store-pickup-quote-graph-ql": "*",
"mage-os/module-inventory-in-store-pickup-sales": "*",
"mage-os/module-inventory-in-store-pickup-sales-admin-ui": "*",
"mage-os/module-inventory-in-store-pickup-sales-api": "*",
"mage-os/module-inventory-in-store-pickup-shipping": "*",
"mage-os/module-inventory-in-store-pickup-shipping-admin-ui": "*",
"mage-os/module-inventory-in-store-pickup-shipping-api": "*",
"mage-os/module-inventory-in-store-pickup-webapi-extension": "*",
"mage-os/module-inventory-indexer": "*",
"mage-os/module-inventory-low-quantity-notification": "*",
"mage-os/module-inventory-low-quantity-notification-admin-ui": "*",
"mage-os/module-inventory-low-quantity-notification-api": "*",
"mage-os/module-inventory-multi-dimensional-indexer-api": "*",
"mage-os/module-inventory-product-alert": "*",
"mage-os/module-inventory-quote-graph-ql": "*",
"mage-os/module-inventory-requisition-list": "*",
"mage-os/module-inventory-reservation-cli": "*",
"mage-os/module-inventory-reservations": "*",
"mage-os/module-inventory-reservations-api": "*",
"mage-os/module-inventory-sales": "*",
"mage-os/module-inventory-sales-admin-ui": "*",
"mage-os/module-inventory-sales-api": "*",
"mage-os/module-inventory-sales-async-order": "*",
"mage-os/module-inventory-sales-frontend-ui": "*",
"mage-os/module-inventory-setup-fixture-generator": "*",
"mage-os/module-inventory-shipping": "*",
"mage-os/module-inventory-shipping-admin-ui": "*",
"mage-os/module-inventory-source-deduction-api": "*",
"mage-os/module-inventory-source-selection": "*",
"mage-os/module-inventory-source-selection-api": "*",
"mage-os/module-inventory-swatches-frontend-ui": "*",
"mage-os/module-inventory-visual-merchandiser": "*",
"mage-os/module-inventory-wishlist": "*",
"mage-os/module-login-as-customer-graph-ql": "*",
"mage-os/module-msrp-sample-data": "*",
"mage-os/module-multiple-wishlist-graph-ql": "*",
"mage-os/module-newsletter-graph-ql": "*",
"mage-os/module-offline-shipping-sample-data": "*",
"mage-os/module-order-cancellation-graph-ql": "*",
"mage-os/module-payment-graph-ql": "*",
"mage-os/module-paypal-graph-ql": "*",
"mage-os/module-product-links-sample-data": "*",
"mage-os/module-re-captcha-webapi-graph-ql": "*",
"mage-os/module-related-product-graph-ql": "*",
"mage-os/module-review-graph-ql": "*",
"mage-os/module-review-sample-data": "*",
"mage-os/module-reward-graph-ql": "*",
"mage-os/module-rma-graph-ql": "*",
"mage-os/module-sales-rule-sample-data": "*",
"mage-os/module-sales-sample-data": "*",
"mage-os/module-sample-data": "*",
"mage-os/module-send-friend-graph-ql": "*",
"mage-os/module-staging-graph-ql": "*",
"mage-os/module-store-graph-ql": "*",
"mage-os/module-swatches-graph-ql": "*",
"mage-os/module-swatches-sample-data": "*",
"mage-os/module-target-rule-graph-ql": "*",
"mage-os/module-tax-graph-ql": "*",
"mage-os/module-tax-sample-data": "*",
"mage-os/module-theme-graph-ql": "*",
"mage-os/module-theme-sample-data": "*",
"mage-os/module-url-rewrite-graph-ql": "*",
"mage-os/module-vault-graph-ql": "*",
"mage-os/module-versions-cms-url-rewrite-graph-ql": "*",
"mage-os/module-weee-graph-ql": "*",
"mage-os/module-widget-sample-data": "*",
"mage-os/module-wishlist-gift-card-graph-ql": "*",
"mage-os/module-wishlist-graph-ql": "*",
"mage-os/module-wishlist-sample-data": "*",
"mage-os/sample-data-media": "*",
"magento/inventory-composer-installer": "*",
"magento/inventory-composer-metapackage": "*",
"magento/module-async-order-graph-ql": "*",
"magento/module-authorizenet-graph-ql": "*",
"magento/module-aws-s3-page-builder": "*",
"magento/module-braintree": "*",
"magento/module-braintree-graph-ql": "*",
"magento/module-bundle-graph-ql": "*",
"magento/module-bundle-sample-data": "*",
"magento/module-catalog-cms-graph-ql": "*",
"magento/module-catalog-customer-ql": "*",
"magento/module-catalog-inventory-graph-ql": "*",
"magento/module-catalog-page-builder-analytics": "*",
"magento/module-catalog-permissions-graph-ql": "*",
"magento/module-catalog-rule-graph-ql": "*",
"magento/module-catalog-rule-sample-data": "*",
"magento/module-catalog-sample-data": "*",
"magento/module-catalog-staging-graph-ql": "*",
"magento/module-catalog-url-rewrite-graph-ql": "*",
"magento/module-checkout-agreements-graph-ql": "*",
"magento/module-cms-graph-ql": "*",
"magento/module-cms-page-builder-analytics": "*",
"magento/module-cms-sample-data": "*",
"magento/module-cms-url-rewrite-graph-ql": "*",
"magento/module-compare-list-graph-ql": "*",
"magento/module-configurable-product-graph-ql": "*",
"magento/module-configurable-sample-data": "*",
"magento/module-contact-graph-ql": "*",
"magento/module-customer-balance-graph-ql": "*",
"magento/module-customer-downloadable-graph-ql": "*",
"magento/module-customer-sample-data": "*",
"magento/module-directory-graph-ql": "*",
"magento/module-downloadable-graph-ql": "*",
"magento/module-downloadable-sample-data": "*",
"magento/module-elasticsearch-catalog-permissions-graph-ql": "*",
"magento/module-gift-card-account-graph-ql": "*",
"magento/module-gift-card-graph-ql": "*",
"magento/module-gift-registry-graph-ql": "*",
"magento/module-gift-wrapping-graph-ql": "*",
"magento/module-grouped-product-graph-ql": "*",
"magento/module-grouped-product-sample-data": "*",
"magento/module-graph-ql-new-relic": "*",
"magento/module-inventory": "*",
"magento/module-inventory-admin-ui": "*",
"magento/module-inventory-advanced-checkout": "*",
"magento/module-inventory-api": "*",
"magento/module-inventory-bundle-import-export": "*",
"magento/module-inventory-bundle-product": "*",
"magento/module-inventory-bundle-product-admin-ui": "*",
"magento/module-inventory-bundle-product-indexer": "*",
"magento/module-inventory-cache": "*",
"magento/module-inventory-catalog": "*",
"magento/module-inventory-catalog-admin-ui": "*",
"magento/module-inventory-catalog-api": "*",
"magento/module-inventory-catalog-frontend-ui": "*",
"magento/module-inventory-catalog-rule": "*",
"magento/module-inventory-catalog-search": "*",
"magento/module-inventory-catalog-search-bundle-product": "*",
"magento/module-inventory-catalog-search-configurable-product": "*",
"magento/module-inventory-configurable-product": "*",
"magento/module-inventory-configurable-product-admin-ui": "*",
"magento/module-inventory-configurable-product-frontend-ui": "*",
"magento/module-inventory-configurable-product-indexer": "*",
"magento/module-inventory-configuration": "*",
"magento/module-inventory-configuration-api": "*",
"magento/module-inventory-distance-based-source-selection": "*",
"magento/module-inventory-distance-based-source-selection-admin-ui": "*",
"magento/module-inventory-distance-based-source-selection-api": "*",
"magento/module-inventory-elasticsearch": "*",
"magento/module-inventory-export-stock": "*",
"magento/module-inventory-export-stock-api": "*",
"magento/module-inventory-graph-ql": "*",
"magento/module-inventory-grouped-product": "*",
"magento/module-inventory-grouped-product-admin-ui": "*",
"magento/module-inventory-grouped-product-indexer": "*",
"magento/module-inventory-import-export": "*",
"magento/module-inventory-in-store-pickup": "*",
"magento/module-inventory-in-store-pickup-admin-ui": "*",
"magento/module-inventory-in-store-pickup-api": "*",
"magento/module-inventory-in-store-pickup-frontend": "*",
"magento/module-inventory-in-store-pickup-graph-ql": "*",
"magento/module-inventory-in-store-pickup-multishipping": "*",
"magento/module-inventory-in-store-pickup-quote": "*",
"magento/module-inventory-in-store-pickup-quote-graph-ql": "*",
"magento/module-inventory-in-store-pickup-sales": "*",
"magento/module-inventory-in-store-pickup-sales-admin-ui": "*",
"magento/module-inventory-in-store-pickup-sales-api": "*",
"magento/module-inventory-in-store-pickup-shipping": "*",
"magento/module-inventory-in-store-pickup-shipping-admin-ui": "*",
"magento/module-inventory-in-store-pickup-shipping-api": "*",
"magento/module-inventory-in-store-pickup-webapi-extension": "*",
"magento/module-inventory-indexer": "*",
"magento/module-inventory-low-quantity-notification": "*",
"magento/module-inventory-low-quantity-notification-admin-ui": "*",
"magento/module-inventory-low-quantity-notification-api": "*",
"magento/module-inventory-multi-dimensional-indexer-api": "*",
"magento/module-inventory-product-alert": "*",
"magento/module-inventory-quote-graph-ql": "*",
"magento/module-inventory-requisition-list": "*",
"magento/module-inventory-reservation-cli": "*",
"magento/module-inventory-reservations": "*",
"magento/module-inventory-reservations-api": "*",
"magento/module-inventory-sales": "*",
"magento/module-inventory-sales-admin-ui": "*",
"magento/module-inventory-sales-api": "*",
"magento/module-inventory-sales-async-order": "*",
"magento/module-inventory-sales-frontend-ui": "*",
"magento/module-inventory-setup-fixture-generator": "*",
"magento/module-inventory-shipping": "*",
"magento/module-inventory-shipping-admin-ui": "*",
"magento/module-inventory-source-deduction-api": "*",
"magento/module-inventory-source-selection": "*",
"magento/module-inventory-source-selection-api": "*",
"magento/module-inventory-swatches-frontend-ui": "*",
"magento/module-inventory-visual-merchandiser": "*",
"magento/module-inventory-wishlist": "*",
"magento/module-login-as-customer-graph-ql": "*",
"magento/module-msrp-sample-data": "*",
"magento/module-multiple-wishlist-graph-ql": "*",
"magento/module-newsletter-graph-ql": "*",
"magento/module-offline-shipping-sample-data": "*",
"magento/module-order-cancellation-graph-ql": "*",
"magento/module-page-builder-admin-analytics": "*",
"magento/module-page-builder-analytics": "*",
"magento/module-payment-graph-ql": "*",
"magento/module-paypal-graph-ql": "*",
"magento/module-product-links-sample-data": "*",
"magento/module-re-captcha-version-2-checkbox": "*",
"magento/module-re-captcha-version-2-invisible": "*",
"magento/module-related-product-graph-ql": "*",
"magento/module-review-graph-ql": "*",
"magento/module-review-sample-data": "*",
"magento/module-reward-graph-ql": "*",
"magento/module-rma-graph-ql": "*",
"magento/module-sales-rule-sample-data": "*",
"magento/module-sales-sample-data": "*",
"magento/module-sample-data": "*",
"magento/module-send-friend-graph-ql": "*",
"magento/module-staging-graph-ql": "*",
"magento/module-store-graph-ql": "*",
"magento/module-swatches-graph-ql": "*",
"magento/module-swatches-sample-data": "*",
"magento/module-target-rule-graph-ql": "*",
"magento/module-tax-graph-ql": "*",
"magento/module-tax-sample-data": "*",
"magento/module-theme-graph-ql": "*",
"magento/module-theme-sample-data": "*",
"magento/module-url-rewrite-graph-ql": "*",
"magento/module-vault-graph-ql": "*",
"magento/module-versions-cms-url-rewrite-graph-ql": "*",
"magento/module-weee-graph-ql": "*",
"magento/module-widget-sample-data": "*",
"magento/module-wishlist-gift-card-graph-ql": "*",
"magento/module-wishlist-graph-ql": "*",
"magento/module-wishlist-sample-data": "*",
"magento/sample-data-media": "*",
"paypal/module-braintree": "*",
"paypal/module-braintree-core": "*",
"paypal/module-braintree-customer-balance": "*",
"paypal/module-braintree-gift-card-account": "*",
"paypal/module-braintree-gift-wrapping": "*",
"paypal/module-braintree-graph-ql": "*",
"temando/module-shipping": "*",
"temando/module-shipping-m2": "*",
"vertex/module-address-validation": "*",
"vertex/module-tax": "*",
"vertex/module-tax-staging": "*",
"vertex/product-magento-module": "*",
"vertex/sdk": "*",
"vertexinc/module-tax-staging": "*",
"vertexinc/product-magento-module": "*",
"vertexinc/product-magento-module-commerce": "*",
"yotpo/magento2-module-yotpo-reviews": "*",
"yotpo/magento2-module-yotpo-reviews-bundle": "*"
}
}