gitextract_1npkxmtb/ ├── Block/ │ ├── Adminhtml/ │ │ ├── Customer/ │ │ │ └── Edit/ │ │ │ └── Tabs/ │ │ │ ├── Mailchimp.php │ │ │ └── View/ │ │ │ └── Customer.php │ │ ├── Stores/ │ │ │ ├── Edit/ │ │ │ │ ├── Form.php │ │ │ │ ├── Tab/ │ │ │ │ │ ├── Address.php │ │ │ │ │ └── Info.php │ │ │ │ └── Tabs.php │ │ │ └── Edit.php │ │ └── System/ │ │ └── Config/ │ │ ├── Account.php │ │ ├── CreateAbandonedCart.php │ │ ├── CreateWebhook.php │ │ ├── Date.php │ │ ├── DeleteStore.php │ │ ├── Fieldset/ │ │ │ └── Hint.php │ │ ├── FixMailchimpJS.php │ │ ├── Form/ │ │ │ └── Field/ │ │ │ ├── CustomerMap.php │ │ │ ├── MailchimpMap.php │ │ │ └── VarsMap.php │ │ ├── OauthWizard.php │ │ ├── ResetErrors.php │ │ ├── ResetErrorsNoRetry.php │ │ ├── ResetStore.php │ │ ├── ResyncProducts.php │ │ └── ResyncSubscriber.php │ ├── Catcher.php │ ├── Checkout/ │ │ └── Success.php │ ├── Loadquote.php │ ├── Mailchimpjs.php │ ├── Newsletter.php │ └── Subscribe.php ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Controller/ │ ├── Adminhtml/ │ │ ├── Batch/ │ │ │ ├── GetResponse.php │ │ │ └── Index.php │ │ ├── Carts/ │ │ │ └── Index.php │ │ ├── Cron/ │ │ │ └── Index.php │ │ ├── Ecommerce/ │ │ │ ├── CreateWebhook.php │ │ │ ├── DeleteStore.php │ │ │ ├── FixMailchimpJS.php │ │ │ ├── GetInterest.php │ │ │ ├── Getaccountdetails.php │ │ │ ├── Register.php │ │ │ ├── ResetLocalErrors.php │ │ │ ├── ResetLocalErrorsNoRetry.php │ │ │ ├── ResetStore.php │ │ │ ├── ResyncProducts.php │ │ │ ├── ResyncSubscribers.php │ │ │ └── SyncLog.php │ │ ├── Errors/ │ │ │ ├── Getresponse.php │ │ │ └── Index.php │ │ ├── Lists/ │ │ │ └── Get.php │ │ ├── Orders/ │ │ │ ├── Campaign.php │ │ │ └── Member.php │ │ ├── Stores/ │ │ │ ├── Delete.php │ │ │ ├── Edit.php │ │ │ ├── Get.php │ │ │ ├── Index.php │ │ │ └── Save.php │ │ └── Stores.php │ ├── Campaign/ │ │ └── Check.php │ ├── Cart/ │ │ └── Loadquote.php │ ├── Checkout/ │ │ └── Success.php │ └── WebHook/ │ └── Index.php ├── Cron/ │ ├── BatchesClean.php │ ├── Ecommerce.php │ ├── ErrorsClean.php │ ├── GenerateStatistics.php │ ├── SyncStatistics.php │ ├── Webhook.php │ └── WebhookClean.php ├── Helper/ │ ├── Data.php │ ├── Http.php │ ├── Sync.php │ └── VarsMap.php ├── ISSUE_TEMPLATE.md ├── LICENSE.txt ├── Model/ │ ├── Api/ │ │ ├── Cart.php │ │ ├── Customer.php │ │ ├── Order.php │ │ ├── Product.php │ │ ├── PromoCodes.php │ │ ├── PromoRules.php │ │ ├── Result.php │ │ └── Subscriber.php │ ├── Config/ │ │ ├── Backend/ │ │ │ ├── ApiKey.php │ │ │ ├── MonkeyList.php │ │ │ ├── MonkeyStore.php │ │ │ └── VarsMap.php │ │ ├── ModuleVersion.php │ │ └── Source/ │ │ ├── ApiKey.php │ │ ├── CampaignAction.php │ │ ├── CleanPeriod.php │ │ ├── Cmspage.php │ │ ├── Details.php │ │ ├── Interest.php │ │ ├── MonkeyList.php │ │ ├── MonkeyStore.php │ │ ├── Months.php │ │ ├── Timeout.php │ │ └── WebhookDelete.php │ ├── HTTP/ │ │ └── Client/ │ │ └── Curl.php │ ├── Logger/ │ │ ├── Handler.php │ │ └── Logger.php │ ├── MailChimpErrors.php │ ├── MailChimpInterestGroup.php │ ├── MailChimpStores.php │ ├── MailChimpSyncBatches.php │ ├── MailChimpSyncEcommerce.php │ ├── MailChimpSyncEcommerceFactory.php │ ├── MailChimpWebhookRequest.php │ ├── MailchimpNotification.php │ ├── Plugin/ │ │ ├── AccountManagement.php │ │ ├── Coupon.php │ │ ├── Creditmemo.php │ │ ├── Invoice.php │ │ ├── Newsletter/ │ │ │ └── Save.php │ │ ├── Quote.php │ │ ├── Ship.php │ │ └── Subscriber.php │ └── ResourceModel/ │ ├── Carts/ │ │ └── Collection.php │ ├── MailChimpErrors.php │ ├── MailChimpInterestGroup/ │ │ └── Collection.php │ ├── MailChimpInterestGroup.php │ ├── MailChimpStores/ │ │ ├── Collection.php │ │ └── Grid/ │ │ └── Collection.php │ ├── MailChimpStores.php │ ├── MailChimpSyncBatches/ │ │ └── Collection.php │ ├── MailChimpSyncBatches.php │ ├── MailChimpSyncEcommerce/ │ │ └── Collection.php │ ├── MailChimpSyncEcommerce.php │ ├── MailChimpWebhookRequest/ │ │ └── Collection.php │ ├── MailChimpWebhookRequest.php │ ├── MailchimpNotification/ │ │ └── Collection.php │ ├── MailchimpNotification.php │ └── Schedule/ │ └── Collection.php ├── Observer/ │ ├── Adminhtml/ │ │ ├── Customer/ │ │ │ └── SaveAfter.php │ │ └── Product/ │ │ ├── DeleteAfter.php │ │ ├── ImportAfter.php │ │ └── SaveAfter.php │ ├── ConfigObserver.php │ ├── Customer/ │ │ └── SaveBefore.php │ ├── Sales/ │ │ └── Order/ │ │ ├── SaveAfter.php │ │ ├── SubmitAfter.php │ │ └── SubmitBefore.php │ ├── SalesRule/ │ │ └── Rule/ │ │ ├── DeleteAfter.php │ │ └── SaveAfter.php │ └── Subscriber/ │ └── SaveAfter.php ├── README.md ├── Setup/ │ ├── InstallData.php │ ├── InstallSchema.php │ ├── Uninstall.php │ ├── UpgradeData.php │ └── UpgradeSchema.php ├── Ui/ │ └── Component/ │ ├── Batch/ │ │ └── Grid/ │ │ └── Column/ │ │ └── Batches.php │ ├── Carts/ │ │ └── Grid/ │ │ └── Column/ │ │ ├── Actions.php │ │ ├── Customer.php │ │ └── Mailchimp.php │ ├── Errors/ │ │ └── Grid/ │ │ └── Column/ │ │ └── Batch.php │ ├── Listing/ │ │ └── Column/ │ │ ├── Customers.php │ │ ├── Monkey.php │ │ └── Products.php │ └── Stores/ │ └── Grid/ │ └── Column/ │ └── Actions.php ├── composer.json ├── etc/ │ ├── acl.xml │ ├── adminhtml/ │ │ ├── events.xml │ │ ├── menu.xml │ │ ├── routes.xml │ │ └── system.xml │ ├── config.xml │ ├── cron_groups.xml │ ├── crontab.xml │ ├── di.xml │ ├── events.xml │ ├── fieldset.xml │ ├── frontend/ │ │ ├── di.xml │ │ ├── events.xml │ │ └── routes.xml │ └── module.xml ├── i18n/ │ ├── es_ES.csv │ ├── fr_FR.csv │ └── it_IT.csv ├── modman ├── registration.php └── view/ ├── adminhtml/ │ ├── layout/ │ │ ├── customer_index_edit.xml │ │ ├── default.xml │ │ ├── mailchimp_batch_index.xml │ │ ├── mailchimp_carts_index.xml │ │ ├── mailchimp_cron_index.xml │ │ ├── mailchimp_errors_index.xml │ │ ├── mailchimp_stores_edit.xml │ │ ├── mailchimp_stores_grid.xml │ │ └── mailchimp_stores_index.xml │ ├── requirejs-config.js │ ├── templates/ │ │ ├── customer/ │ │ │ └── edit/ │ │ │ └── tabs/ │ │ │ └── mailchimp.phtml │ │ ├── system/ │ │ │ └── config/ │ │ │ ├── create_abandonedcart_automation.phtml │ │ │ ├── createwebhook.phtml │ │ │ ├── deletestore.phtml │ │ │ ├── fieldset/ │ │ │ │ └── hint.phtml │ │ │ ├── fixmailchimpjs.phtml │ │ │ ├── js.phtml │ │ │ ├── oauth_wizard.phtml │ │ │ ├── reseterrors.phtml │ │ │ ├── reseterrorsnoretry.phtml │ │ │ ├── resetstore.phtml │ │ │ ├── resyncproducts.phtml │ │ │ └── resyncsubscriber.phtml │ │ └── tab/ │ │ └── view.phtml │ ├── ui_component/ │ │ ├── customer_listing.xml │ │ ├── mailchimp_batch_grid.xml │ │ ├── mailchimp_carts_grid.xml │ │ ├── mailchimp_cron_grid.xml │ │ ├── mailchimp_errors_grid.xml │ │ ├── mailchimp_stores_grid.xml │ │ ├── product_listing.xml │ │ └── sales_order_grid.xml │ └── web/ │ ├── css/ │ │ └── styles.css │ └── js/ │ ├── apikey.js │ ├── configapikey.js │ └── mailchimpconfirmation.js └── frontend/ ├── layout/ │ ├── checkout_onepage_success.xml │ ├── default.xml │ ├── mailchimp_cart_loadquote.xml │ └── newsletter_manage_index.xml ├── requirejs-config.js ├── templates/ │ ├── catcher.phtml │ ├── checkout/ │ │ └── order/ │ │ └── success.phtml │ ├── footer.phtml │ ├── form/ │ │ └── newsletter.phtml │ ├── loadquote.phtml │ └── mailchimpjs.phtml └── web/ └── js/ └── campaigncatcher.js